Full Site Editing - Version 2.8.7

Version Description

  • Launch: open launch modal in editor only for free sites created in New Onboarding (https://github.com/Automattic/wp-calypso/pull/47514)
  • Focused Launch: add launch success view (https://github.com/Automattic/wp-calypso/pull/47404)
  • Premium Content: Use snackbar for error and success messages (https://github.com/Automattic/wp-calypso/pull/47477)
  • Coming soon: only show the coming soon page for singular, archive and search posts (https://github.com/Automattic/wp-calypso/pull/47563)
  • Patterns: Support skipping registering patterns with a requires-align-wide tag (https://github.com/Automattic/wp-calypso/pull/47571)
Download this release

Release Info

Developer andrewserong
Plugin Icon wp plugin Full Site Editing
Version 2.8.7
Comparing to
See all releases

Code changes from version 2.8.6 to 2.8.7

Files changed (66) hide show
  1. block-patterns/class-block-patterns-from-api.php +44 -12
  2. block-patterns/class-block-patterns.php +0 -156
  3. block-patterns/patterns/audio-player.php +0 -29
  4. block-patterns/patterns/call-to-action-02.php +0 -44
  5. block-patterns/patterns/call-to-action-03.php +0 -65
  6. block-patterns/patterns/call-to-action-04.php +0 -63
  7. block-patterns/patterns/collage-gallery.php +0 -19
  8. block-patterns/patterns/coming-soon.php +0 -45
  9. block-patterns/patterns/contact-02.php +0 -57
  10. block-patterns/patterns/contact-03.php +0 -63
  11. block-patterns/patterns/contact-04.php +0 -81
  12. block-patterns/patterns/contact-05.php +0 -54
  13. block-patterns/patterns/contact.php +0 -63
  14. block-patterns/patterns/description-and-image.php +0 -41
  15. block-patterns/patterns/food-menu.php +0 -74
  16. block-patterns/patterns/heading-and-paragraph.php +0 -36
  17. block-patterns/patterns/heading-and-text-in-two-columns.php +0 -34
  18. block-patterns/patterns/headline-02.php +0 -35
  19. block-patterns/patterns/headline.php +0 -53
  20. block-patterns/patterns/hero-with-heading-subtitle-and-two-buttons.php +0 -42
  21. block-patterns/patterns/image-and-description.php +0 -41
  22. block-patterns/patterns/image-and-text-mosaic.php +0 -70
  23. block-patterns/patterns/image-and-text.php +0 -42
  24. block-patterns/patterns/images-02.php +0 -100
  25. block-patterns/patterns/images-with-titles.php +0 -74
  26. block-patterns/patterns/images.php +0 -72
  27. block-patterns/patterns/list-02.php +0 -45
  28. block-patterns/patterns/list.php +0 -47
  29. block-patterns/patterns/masonry-gallery.php +0 -19
  30. block-patterns/patterns/multi-column-text-with-headline.php +0 -110
  31. block-patterns/patterns/numbered-list.php +0 -104
  32. block-patterns/patterns/numbers.php +0 -55
  33. block-patterns/patterns/podcast-subscription.php +0 -66
  34. block-patterns/patterns/portraits-and-text.php +0 -92
  35. block-patterns/patterns/quote-02.php +0 -42
  36. block-patterns/patterns/quote-03.php +0 -67
  37. block-patterns/patterns/quote-04.php +0 -40
  38. block-patterns/patterns/quote.php +0 -42
  39. block-patterns/patterns/quotes-02.php +0 -94
  40. block-patterns/patterns/quotes.php +0 -89
  41. block-patterns/patterns/recent-posts-02.php +0 -30
  42. block-patterns/patterns/recent-posts.php +0 -21
  43. block-patterns/patterns/registration-form.php +0 -79
  44. block-patterns/patterns/subscription-02.php +0 -83
  45. block-patterns/patterns/subscription.php +0 -60
  46. block-patterns/patterns/three-columns-and-image.php +0 -80
  47. block-patterns/patterns/three-images-side-by-side.php +0 -49
  48. block-patterns/patterns/three-quotes.php +0 -93
  49. block-patterns/patterns/tiled-mosaic-gallery.php +0 -20
  50. block-patterns/patterns/two-column-text-and-image.php +0 -54
  51. block-patterns/patterns/two-images-and-quote.php +0 -52
  52. block-patterns/patterns/two-images-side-by-side.php +0 -39
  53. block-patterns/patterns/youtube-embed.php +0 -46
  54. block-patterns/test/class-block-patterns-test.php +0 -89
  55. coming-soon/coming-soon.php +13 -23
  56. coming-soon/fallback-coming-soon-page.php +1 -0
  57. common/dist/common.asset.php +1 -1
  58. common/dist/common.js +1 -1
  59. common/dist/data-stores.asset.php +1 -1
  60. common/dist/data-stores.js +10 -10
  61. editor-gutenboarding-launch/dist/editor-gutenboarding-launch.asset.php +1 -1
  62. editor-gutenboarding-launch/dist/editor-gutenboarding-launch.js +2 -2
  63. editor-gutenboarding-launch/index.ts +15 -2
  64. editor-site-launch/dist/editor-site-launch.asset.php +1 -1
  65. editor-site-launch/dist/editor-site-launch.css +1 -1
  66. editor-site-launch/dist/editor-site-launch.js +12 -28
block-patterns/class-block-patterns-from-api.php CHANGED
@@ -88,18 +88,20 @@ class Block_Patterns_From_API {
88
  }
89
 
90
  foreach ( (array) $this->get_patterns() as $pattern ) {
91
- register_block_pattern(
92
- Block_Patterns_From_API::PATTERN_NAMESPACE . $pattern['name'],
93
- array(
94
- 'title' => $pattern['title'],
95
- 'description' => $pattern['title'],
96
- 'content' => $pattern['html'],
97
- 'viewportWidth' => 1280,
98
- 'categories' => array_keys(
99
- $pattern['categories']
100
- ),
101
- )
102
- );
 
 
103
  }
104
  }
105
 
@@ -148,4 +150,34 @@ class Block_Patterns_From_API {
148
  $language = function_exists( 'get_blog_lang_code' ) ? get_blog_lang_code() : get_locale();
149
  return \A8C\FSE\Common\get_iso_639_locale( $language );
150
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  }
88
  }
89
 
90
  foreach ( (array) $this->get_patterns() as $pattern ) {
91
+ if ( $this->can_register_pattern( $pattern ) ) {
92
+ register_block_pattern(
93
+ Block_Patterns_From_API::PATTERN_NAMESPACE . $pattern['name'],
94
+ array(
95
+ 'title' => $pattern['title'],
96
+ 'description' => $pattern['title'],
97
+ 'content' => $pattern['html'],
98
+ 'viewportWidth' => 1280,
99
+ 'categories' => array_keys(
100
+ $pattern['categories']
101
+ ),
102
+ )
103
+ );
104
+ }
105
  }
106
  }
107
 
150
  $language = function_exists( 'get_blog_lang_code' ) ? get_blog_lang_code() : get_locale();
151
  return \A8C\FSE\Common\get_iso_639_locale( $language );
152
  }
153
+
154
+ /**
155
+ * Check that the pattern is allowed to be registered.
156
+ *
157
+ * Checks for tags with a prefix of `requires-` in the slug, and then attempts to match
158
+ * the remainder of the slug to a theme feature.
159
+ *
160
+ * For example, to prevent patterns that depend on wide or full-width block alignment support
161
+ * from being registered in sites where the active theme does not have `align-wide` support,
162
+ * we can add the `requires-align-wide` tag to the pattern. This function will then match
163
+ * against that tag slug, and then return `false`.
164
+ *
165
+ * @param array $pattern A pattern with a 'tags' array where the key is the tag slug in English.
166
+ *
167
+ * @return bool
168
+ */
169
+ private function can_register_pattern( $pattern ) {
170
+
171
+ foreach ( $pattern['tags'] as $tag_slug => $value ) {
172
+ // Match against tags with a non-translated slug beginning with `requires-`.
173
+ $split_slug = preg_split( '/^requires-/', $tag_slug );
174
+
175
+ // If the theme does not support the matched feature, then skip registering the pattern.
176
+ if ( $split_slug[1] && false === get_theme_support( $split_slug[1] ) ) {
177
+ return false;
178
+ }
179
+ }
180
+
181
+ return true;
182
+ }
183
  }
block-patterns/class-block-patterns.php DELETED
@@ -1,156 +0,0 @@
1
- <?php
2
- /**
3
- * Block Patterns file.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- namespace A8C\FSE;
9
-
10
- /**
11
- * Class Block_Patterns
12
- */
13
- class Block_Patterns {
14
-
15
- const PATTERN_NAMESPACE = 'a8c/';
16
-
17
- /**
18
- * Class instance.
19
- *
20
- * @var Block_Patterns
21
- */
22
- private static $instance = null;
23
-
24
-
25
- /**
26
- * Block_Patterns constructor.
27
- */
28
- private function __construct() {
29
- $this->register_patterns();
30
- }
31
-
32
- /**
33
- * Creates instance.
34
- *
35
- * @return \A8C\FSE\Block_Patterns
36
- */
37
- public static function get_instance() {
38
- if ( null === self::$instance ) {
39
- self::$instance = new self();
40
- }
41
-
42
- return self::$instance;
43
- }
44
-
45
- /**
46
- * Register FSE block patterns and categories.
47
- */
48
- public function register_patterns() {
49
- // Register Block Pattern Categories.
50
- if ( class_exists( 'WP_Block_Pattern_Categories_Registry' ) ) {
51
- register_block_pattern_category( 'blog', array( 'label' => _x( 'Blog', 'Block pattern category', 'full-site-editing' ) ) );
52
- register_block_pattern_category( 'call-to-action', array( 'label' => _x( 'Call to Action', 'Block pattern category', 'full-site-editing' ) ) );
53
- register_block_pattern_category( 'contact', array( 'label' => _x( 'Contact', 'Block pattern category', 'full-site-editing' ) ) );
54
- register_block_pattern_category( 'images', array( 'label' => _x( 'Images', 'Block pattern category', 'full-site-editing' ) ) );
55
- register_block_pattern_category( 'list', array( 'label' => _x( 'List', 'Block pattern category', 'full-site-editing' ) ) );
56
-
57
- // The 'Two Columns of Text' pattern is in the 'columns' and 'text' categories.
58
- // Removing 'columns' so it doesn't appear as a category with only a single item.
59
- if ( \WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( 'columns' ) ) {
60
- unregister_block_pattern_category( 'columns' );
61
- }
62
- }
63
-
64
- if ( class_exists( 'WP_Block_Patterns_Registry' ) ) {
65
- // Remove core patterns except 'Two Columns of Text'.
66
- // Unfortunately, \WP_Block_Patterns_Registry::get_instance()->get_all_registered() doesn't return the pattern names as keys.
67
- foreach ( \WP_Block_Patterns_Registry::get_instance()->get_all_registered() as $pattern ) {
68
- if ( 'core/' === substr( $pattern['name'], 0, 5 ) && 'core/text-two-columns' !== $pattern['name'] ) {
69
- unregister_block_pattern( $pattern['name'] );
70
- }
71
- }
72
-
73
- // Add our patterns.
74
- foreach ( $this->get_patterns() as $name => $pattern ) {
75
- register_block_pattern( $name, $pattern );
76
- }
77
- }
78
- }
79
-
80
- /**
81
- * Returns a list of patterns.
82
- *
83
- * @return array
84
- */
85
- public function get_patterns() {
86
- $patterns_dir = __DIR__ . '/patterns/';
87
- $patterns = array();
88
-
89
- if ( ! is_dir( $patterns_dir ) ) {
90
- return $patterns;
91
- }
92
-
93
- $directory_handle = opendir( $patterns_dir );
94
- if ( ! $directory_handle ) {
95
- return $patterns;
96
- }
97
-
98
- // Get all the pattern files.
99
- $pattern = readdir( $directory_handle );
100
- $pattern_files = array();
101
- while ( false !== $pattern ) {
102
- // Only allow files ending in .json or .php.
103
- if ( substr( $pattern, -5 ) === '.json' || substr( $pattern, -4 ) === '.php' ) {
104
- $pattern_files[] = $pattern;
105
- }
106
-
107
- $pattern = readdir( $directory_handle );
108
- }
109
-
110
- closedir( $directory_handle );
111
-
112
- // Manually curated list of patterns to go at the top of the list.
113
- $featured_patterns = array(
114
- 'masonry-gallery.php',
115
- 'description-and-image.php',
116
- 'two-images-and-quote.php',
117
- 'image-and-description.php',
118
- 'three-images-side-by-side.php',
119
- 'image-and-text.php',
120
- 'three-columns-and-image.php',
121
- 'collage-gallery.php',
122
- 'headline.php',
123
- 'headline-02.php',
124
- 'recent-posts.php',
125
- 'recent-posts-02.php',
126
- 'two-images-side-by-side.php',
127
- 'numbers.php',
128
- 'contact.php',
129
- 'contact-02.php',
130
- 'contact-03.php',
131
- 'food-menu.php',
132
- );
133
-
134
- // Add the featured patterns to the top of the patterns.
135
- $pattern_files = array_merge( $featured_patterns, array_diff( $pattern_files, $featured_patterns ) );
136
-
137
- // Get the pattern files contents.
138
- foreach ( $pattern_files as $pattern_file ) {
139
- if ( substr( $pattern_file, -5 ) === '.json' ) {
140
- $pattern_name = self::PATTERN_NAMESPACE . substr( $pattern_file, 0, -5 );
141
- $patterns[ $pattern_name ] = json_decode(
142
- // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
143
- file_get_contents( $patterns_dir . $pattern_file ),
144
- true
145
- );
146
- }
147
-
148
- if ( substr( $pattern_file, -4 ) === '.php' ) {
149
- $pattern_name = self::PATTERN_NAMESPACE . substr( $pattern_file, 0, -4 );
150
- $patterns[ $pattern_name ] = include $patterns_dir . $pattern_file;
151
- }
152
- }
153
-
154
- return $patterns;
155
- }
156
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/audio-player.php DELETED
@@ -1,29 +0,0 @@
1
- <?php
2
- /**
3
- * Podcast pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"customOverlayColor":"#54426b","minHeight":250,"align":"full"} -->
10
- <div class="wp-block-cover alignfull has-background-dim" style="background-color:#54426b;min-height:250px"><div class="wp-block-cover__inner-container"><!-- wp:heading {"align":"center","level":5,"style":{"color":{"text":"#ffffff"}}} -->
11
- <h5 class="has-text-align-center has-text-color" style="color:#ffffff"><strong>%1$s</strong></h5>
12
- <!-- /wp:heading -->
13
-
14
- <!-- wp:audio {"id":1502} -->
15
- <figure class="wp-block-audio"><audio controls src="https://dotcompatterns.files.wordpress.com/2020/06/komiku_-_02_-_chill_out_theme.mp3"></audio></figure>
16
- <!-- /wp:audio --></div></div>
17
- <!-- /wp:cover -->
18
- ';
19
-
20
- return array(
21
- '__file' => 'wp_block',
22
- 'title' => esc_html__( 'Audio Player', 'full-site-editing' ),
23
- 'categories' => array( 'about', 'media', 'podcast' ),
24
- 'content' => sprintf(
25
- $markup,
26
- esc_html__( 'First time here? Let me tell you why this show rocks!', 'full-site-editing' )
27
- ),
28
- 'viewportWidth' => 1280,
29
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/call-to-action-02.php DELETED
@@ -1,44 +0,0 @@
1
- <?php
2
- /**
3
- * Call to Action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"url":"https://dotcompatterns.files.wordpress.com/2020/04/louis-hansel-shotsoflouis-d0ueoxdvj5i-unsplash.jpg","id":181,"dimRatio":20,"customOverlayColor":"#000000","focalPoint":{"x":0.5,"y":"0.70"},"minHeight":620,"align":"full"} -->
10
- <div class="wp-block-cover alignfull has-background-dim-20 has-background-dim" style="background-image:url(https://dotcompatterns.files.wordpress.com/2020/04/louis-hansel-shotsoflouis-d0ueoxdvj5i-unsplash.jpg);background-color:#000000;background-position:50% 70%;min-height:620px">
11
- <div class="wp-block-cover__inner-container">
12
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":1,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
13
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap">
14
- <!-- wp:jetpack/layout-grid-column -->
15
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
16
- <!-- wp:paragraph {"align":"center","customTextColor":"#ffffff","style":{"typography":{"fontSize":80}},"className":"margin-bottom-none"} -->
17
- <p style="color:#ffffff;font-size:80px" class="has-text-color has-text-align-center margin-bottom-none"><strong>' . esc_html__( 'Get it delivered', 'full-site-editing' ) . '</strong></p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:paragraph {"align":"center","customTextColor":"#ffffff","className":"margin-top-none"} -->
21
- <p style="color:#ffffff" class="has-text-color has-text-align-center margin-top-none">' . esc_html__( 'If you can&#8217;t come to us, we&#8217;ll go to you.', 'full-site-editing' ) . '</p>
22
- <!-- /wp:paragraph -->
23
-
24
- <!-- wp:buttons {"align":"center"} -->
25
- <div class="wp-block-buttons aligncenter"><!-- wp:button {"style":{"color":{"text":"#ffffff","background":"#a5150f"}}} -->
26
- <a class="wp-block-button wp-block-button__link has-text-color has-background" style="background-color:#a5150f;color:#ffffff">' . esc_html__( 'Order now', 'full-site-editing' ) . '</a>
27
- <!-- /wp:button -->
28
- </div>
29
- <!-- /wp:buttons -->
30
- </div>
31
- <!-- /wp:jetpack/layout-grid-column -->
32
- </div>
33
- <!-- /wp:jetpack/layout-grid -->
34
- </div>
35
- </div>
36
- <!-- /wp:cover -->
37
- ';
38
-
39
- return array(
40
- 'title' => esc_html__( 'Call to Action', 'full-site-editing' ),
41
- 'categories' => array( 'call-to-action' ),
42
- 'content' => $markup,
43
- 'viewportWidth' => 1280,
44
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/call-to-action-03.php DELETED
@@ -1,65 +0,0 @@
1
- <?php
2
- /**
3
- * Call to Action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"gutterSize":"none","addGutterEnds":false,"column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__none"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:cover {"customOverlayColor":"#e40285"} -->
12
- <div class="wp-block-cover has-background-dim" style="background-color:#e40285"><div class="wp-block-cover__inner-container"><!-- wp:group {"style":{"color":{"text":"#ffffff","background":"#e40285"}}} -->
13
- <div class="wp-block-group has-text-color has-background" style="background-color:#e40285;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:heading {"style":{"color":{"text":"#ffffff"}}} -->
14
- <h2 class="has-text-color" style="color:#ffffff"><strong>%1$s</strong></h2>
15
- <!-- /wp:heading -->
16
-
17
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
18
- <p class="has-text-color" style="color:#ffffff">%2$s</p>
19
- <!-- /wp:paragraph -->
20
-
21
- <!-- wp:buttons -->
22
- <div class="wp-block-buttons"><!-- wp:button {"style":{"color":{"text":"#ffffff","background":"#2e008b"}},"className":"is-style-fill"} -->
23
- <div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-text-color has-background" style="background-color:#2e008b;color:#ffffff">%3$s</a></div>
24
- <!-- /wp:button --></div>
25
- <!-- /wp:buttons --></div></div>
26
- <!-- /wp:group --></div></div>
27
- <!-- /wp:cover --></div>
28
- <!-- /wp:jetpack/layout-grid-column -->
29
-
30
- <!-- wp:jetpack/layout-grid-column -->
31
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:cover {"customOverlayColor":"#2e008b"} -->
32
- <div class="wp-block-cover has-background-dim" style="background-color:#2e008b"><div class="wp-block-cover__inner-container"><!-- wp:group {"style":{"color":{"text":"#ffffff","background":"#2e008b"}}} -->
33
- <div class="wp-block-group has-text-color has-background" style="background-color:#2e008b;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:heading {"style":{"color":{"text":"#ffffff"}}} -->
34
- <h2 class="has-text-color" style="color:#ffffff"><strong>%4$s</strong></h2>
35
- <!-- /wp:heading -->
36
-
37
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
38
- <p class="has-text-color" style="color:#ffffff">%5$s</p>
39
- <!-- /wp:paragraph -->
40
-
41
- <!-- wp:buttons -->
42
- <div class="wp-block-buttons"><!-- wp:button {"style":{"color":{"text":"#ffffff","background":"#e40285"}},"className":"is-style-fill"} -->
43
- <div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-text-color has-background" style="background-color:#e40285;color:#ffffff">%3$s</a></div>
44
- <!-- /wp:button --></div>
45
- <!-- /wp:buttons --></div></div>
46
- <!-- /wp:group --></div></div>
47
- <!-- /wp:cover --></div>
48
- <!-- /wp:jetpack/layout-grid-column --></div>
49
- <!-- /wp:jetpack/layout-grid -->
50
- ';
51
-
52
- return array(
53
- '__file' => 'wp_block',
54
- 'title' => esc_html__( 'Call to Action', 'full-site-editing' ),
55
- 'categories' => array( 'call-to-action' ),
56
- 'content' => sprintf(
57
- $markup,
58
- esc_html__( 'Want to volunteer?', 'full-site-editing' ),
59
- esc_html__( 'We’ve had an incredible response so far, and are doing everything we can to respond to everyone who wants to volunteer in one of our community programmes.', 'full-site-editing' ),
60
- esc_html__( 'Get involved', 'full-site-editing' ),
61
- esc_html__( 'Are you a business?', 'full-site-editing' ),
62
- esc_html__( 'We are uniting our resources around this challenge, and we are combining our resources and asks to make it easy for people to support their communities.', 'full-site-editing' )
63
- ),
64
- 'viewportWidth' => 1280,
65
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/call-to-action-04.php DELETED
@@ -1,63 +0,0 @@
1
- <?php
2
- /**
3
- * Call to Action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#b89f7e","text":"#0f1c18"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#b89f7e;color:#0f1c18"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":40} -->
11
- <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:columns {"align":"wide"} -->
15
- <div class="wp-block-columns alignwide"><!-- wp:column {"verticalAlignment":"center"} -->
16
- <div class="wp-block-column is-vertically-aligned-center"><!-- wp:paragraph {"style":{"typography":{"fontSize":28,"lineHeight":"1.2"}}} -->
17
- <p style="line-height:1.2;font-size:28px"><strong>%1$s<br></strong>%2$s</p>
18
- <!-- /wp:paragraph --></div>
19
- <!-- /wp:column -->
20
-
21
- <!-- wp:column {"verticalAlignment":"center"} -->
22
- <div class="wp-block-column is-vertically-aligned-center"><!-- wp:paragraph {"style":{"typography":{"fontSize":28,"lineHeight":"1.2"}}} -->
23
- <p style="line-height:1.2;font-size:28px"><strong>%3$s<br></strong>%4$s</p>
24
- <!-- /wp:paragraph --></div>
25
- <!-- /wp:column -->
26
-
27
- <!-- wp:column {"verticalAlignment":"center"} -->
28
- <div class="wp-block-column is-vertically-aligned-center"><!-- wp:paragraph {"style":{"typography":{"fontSize":28,"lineHeight":"1.2"}}} -->
29
- <p style="line-height:1.2;font-size:28px"><strong>%5$s<br></strong>%6$s</p>
30
- <!-- /wp:paragraph --></div>
31
- <!-- /wp:column -->
32
-
33
- <!-- wp:column {"verticalAlignment":"bottom"} -->
34
- <div class="wp-block-column is-vertically-aligned-bottom"><!-- wp:buttons -->
35
- <div class="wp-block-buttons"><!-- wp:button {"borderRadius":3,"style":{"color":{"background":"#0f1c18","text":"#ffffff"}}} -->
36
- <div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" style="border-radius:3px;background-color:#0f1c18;color:#ffffff">%7$s</a></div>
37
- <!-- /wp:button --></div>
38
- <!-- /wp:buttons --></div>
39
- <!-- /wp:column --></div>
40
- <!-- /wp:columns -->
41
-
42
- <!-- wp:spacer {"height":40} -->
43
- <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
44
- <!-- /wp:spacer --></div></div>
45
- <!-- /wp:group -->
46
- ';
47
-
48
- return array(
49
- '__file' => 'wp_block',
50
- 'title' => esc_html__( 'Call to Action', 'full-site-editing' ),
51
- 'categories' => array( 'call-to-action' ),
52
- 'content' => sprintf(
53
- $markup,
54
- esc_html__( 'Date:', 'full-site-editing' ),
55
- esc_html__( 'May 28, 2021', 'full-site-editing' ),
56
- esc_html__( 'Time:', 'full-site-editing' ),
57
- esc_html__( '12:00 PM(UTC)', 'full-site-editing' ),
58
- esc_html__( 'Duration:', 'full-site-editing' ),
59
- esc_html__( '60 Minutes', 'full-site-editing' ),
60
- esc_html__( 'Register now', 'full-site-editing' )
61
- ),
62
- 'viewportWidth' => 1280,
63
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/collage-gallery.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- /**
3
- * Collage gallery pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:coblocks/gallery-collage {"align":"full","lightbox":true} -->
10
- <div class="wp-block-coblocks-gallery-collage alignfull has-small-gutter has-lightbox"><ul><li class="wp-block-coblocks-gallery-collage__item item-1"><figure class="wp-block-coblocks-gallery-collage__figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/samantha-gades-blihvfxbi9s-unsplash.jpg?w=750" alt="" data-index="0" data-id="74" data-imglink="" data-link="https://dotcompatterns.wordpress.com/samantha-gades-blihvfxbi9s-unsplash/" class="wp-image-74"/></figure></li><li class="wp-block-coblocks-gallery-collage__item item-2"><figure class="wp-block-coblocks-gallery-collage__figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/samantha-gades-s95nxdpufnm-unsplash.jpg?w=750" alt="" data-index="1" data-id="75" data-imglink="" data-link="https://dotcompatterns.wordpress.com/samantha-gades-s95nxdpufnm-unsplash/" class="wp-image-75"/></figure></li><li class="wp-block-coblocks-gallery-collage__item item-3"><figure class="wp-block-coblocks-gallery-collage__figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/samantha-gades-mrz93q58trs-unsplash.jpg?w=684" alt="" data-index="2" data-id="77" data-imglink="" data-link="https://dotcompatterns.wordpress.com/samantha-gades-mrz93q58trs-unsplash/" class="wp-image-77"/></figure></li><li class="wp-block-coblocks-gallery-collage__item item-4"><figure class="wp-block-coblocks-gallery-collage__figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/samantha-gades-0fmxvma1glo-unsplash-1.jpg?w=750" alt="" data-index="3" data-id="78" data-imglink="" data-link="https://dotcompatterns.wordpress.com/samantha-gades-0fmxvma1glo-unsplash/" class="wp-image-78"/></figure></li><li class="wp-block-coblocks-gallery-collage__item item-5"><figure class="wp-block-coblocks-gallery-collage__figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/samantha-gades-xhdrc185q58-unsplash.jpg?w=682" alt="" data-index="4" data-id="76" data-imglink="" data-link="https://dotcompatterns.wordpress.com/samantha-gades-xhdrc185q58-unsplash/" class="wp-image-76"/></figure></li></ul></div>
11
- <!-- /wp:coblocks/gallery-collage -->
12
- ';
13
-
14
- return array(
15
- 'title' => esc_html__( 'Collage gallery', 'full-site-editing' ),
16
- 'categories' => array( 'gallery' ),
17
- 'content' => $markup,
18
- 'viewportWidth' => 1280,
19
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/coming-soon.php DELETED
@@ -1,45 +0,0 @@
1
- <?php
2
- /**
3
- * Coming Soon pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"url":"https://dotcompatterns.files.wordpress.com/2020/05/neven-krcmarek-q0zvnn8sxy0-unsplash-1.jpg","id":827,"dimRatio":0,"minHeight":856,"minHeightUnit":"px","align":"full"} -->
10
- <div class="wp-block-cover alignfull" style="background-image:url(https://dotcompatterns.files.wordpress.com/2020/05/neven-krcmarek-q0zvnn8sxy0-unsplash-1.jpg);min-height:856px"><div class="wp-block-cover__inner-container"><!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":12,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
11
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"fontSize":70,"lineHeight":"1"},"color":{"text":"#ffffff"}}} -->
13
- <p class="has-text-color" style="line-height:1;font-size:70px;color:#ffffff">%1$s</p>
14
- <!-- /wp:paragraph -->
15
-
16
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
17
- <p class="has-text-color" style="color:#ffffff">%2$s</p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
21
- <p class="has-text-color" style="color:#ffffff">%3$s<br>%4$s</p>
22
- <!-- /wp:paragraph -->
23
-
24
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
25
- <p class="has-text-color" style="color:#ffffff"><a rel="noreferrer noopener" href="mailto:hello@example.com" target="_blank">%5$s</a></p>
26
- <!-- /wp:paragraph --></div>
27
- <!-- /wp:jetpack/layout-grid-column --></div>
28
- <!-- /wp:jetpack/layout-grid --></div></div>
29
- <!-- /wp:cover -->
30
- ';
31
-
32
- return array(
33
- '__file' => 'wp_block',
34
- 'title' => esc_html__( 'Coming Soon', 'full-site-editing' ),
35
- 'categories' => array( 'call-to-action' ),
36
- 'content' => sprintf(
37
- $markup,
38
- esc_html__( 'Coming Soon', 'full-site-editing' ),
39
- esc_html__( 'Come back here when our journey begins.', 'full-site-editing' ),
40
- esc_html__( '123 Example St, San Francisco,', 'full-site-editing' ),
41
- esc_html__( 'CA 12345-6789', 'full-site-editing' ),
42
- esc_html__( 'hello@example.com', 'full-site-editing' )
43
- ),
44
- 'viewportWidth' => 1280,
45
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/contact-02.php DELETED
@@ -1,57 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"customOverlayColor":"#000000","align":"full","className":"is-style-default"} -->
10
- <div class="wp-block-cover alignfull has-background-dim is-style-default" style="background-color:#000000"><div class="wp-block-cover__inner-container"><!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":2,"column1DesktopOffset":1,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":5,"column3TabletSpan":4,"column3TabletOffset":4,"column3MobileSpan":4,"column4TabletOffset":4,"className":"column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-5 column3-desktop-grid__start-8 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__start-5 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
11
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-5 column3-desktop-grid__start-8 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__start-5 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":6,"customTextColor":"#ffffff"} -->
13
- <h6 class="has-text-color" style="color:#ffffff">%1$s</h6>
14
- <!-- /wp:heading --></div>
15
- <!-- /wp:jetpack/layout-grid-column -->
16
-
17
- <!-- wp:jetpack/layout-grid-column -->
18
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"customTextColor":"#ffffff"} -->
19
- <p style="color:#ffffff" class="has-text-color">%2$s<br>%3$s</p>
20
- <!-- /wp:paragraph --></div>
21
- <!-- /wp:jetpack/layout-grid-column -->
22
-
23
- <!-- wp:jetpack/layout-grid-column -->
24
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"customTextColor":"#ffffff","className":"margin-bottom-half"} -->
25
- <p style="color:#ffffff" class="has-text-color margin-bottom-half"><a href="mailto:hello@example.com">%4$s</a></p>
26
- <!-- /wp:paragraph -->
27
-
28
- <!-- wp:social-links {"className":"margin-top-half"} -->
29
- <ul class="wp-block-social-links margin-top-half"><!-- wp:social-link {"url":"","service":"WordPress"} /-->
30
-
31
- <!-- wp:social-link {"url":"https://facebook.com/","service":"facebook"} /-->
32
-
33
- <!-- wp:social-link {"url":"https://twitter.com","service":"twitter"} /-->
34
-
35
- <!-- wp:social-link {"url":"https://instagram.com","service":"instagram"} /-->
36
-
37
- <!-- wp:social-link {"service":"linkedin"} /-->
38
-
39
- <!-- wp:social-link {"url":"https://youtube.com","service":"youtube"} /--></ul>
40
- <!-- /wp:social-links --></div>
41
- <!-- /wp:jetpack/layout-grid-column --></div>
42
- <!-- /wp:jetpack/layout-grid --></div></div>
43
- <!-- /wp:cover -->
44
- ';
45
-
46
- return array(
47
- 'title' => esc_html__( 'Contact', 'full-site-editing' ),
48
- 'categories' => array( 'contact' ),
49
- 'content' => sprintf(
50
- $markup,
51
- esc_html__( 'Contact', 'full-site-editing' ),
52
- esc_html__( 'Jennifer Dolan Photography', 'full-site-editing' ),
53
- esc_html__( 'San Francisco, California', 'full-site-editing' ),
54
- esc_html__( 'hello@example.com', 'full-site-editing' )
55
- ),
56
- 'viewportWidth' => 1280,
57
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/contact-03.php DELETED
@@ -1,63 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- // phpcs:disable WordPress.WP.CapitalPDangit.Misspelled
9
- $markup = '
10
- <!-- wp:group {"align":"full","style":{"color":{"background":"#2b2729"}}} -->
11
- <div class="wp-block-group alignfull has-background" style="background-color:#2b2729"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":60} -->
12
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":8,"column1DesktopOffset":2,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":7,"className":"column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
16
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
17
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:jetpack/map {"zoom":13.035941141633781,"mapCenter":{"lng":-122.42415148727684,"lat":37.77537669430244},"mapHeight":400,"className":"is-style-black_and_white"} -->
18
- <div class="wp-block-jetpack-map is-style-black_and_white" data-map-style="black_and_white" data-map-details="true" data-points="[]" data-zoom="13.035941141633781" data-map-center="{&quot;lng&quot;:-122.42415148727684,&quot;lat&quot;:37.77537669430244}" data-marker-color="red" data-map-height="400" data-show-fullscreen-button="true"></div>
19
- <!-- /wp:jetpack/map -->
20
-
21
- <!-- wp:paragraph {"align":"center","style":{"color":{"text":"#ffffff"}}} -->
22
- <p class="has-text-align-center has-text-color" style="color:#ffffff">%1$s<br>%2$s</p>
23
- <!-- /wp:paragraph -->
24
-
25
- <!-- wp:paragraph {"align":"center","style":{"color":{"text":"#ffffff"}}} -->
26
- <p class="has-text-align-center has-text-color" style="color:#ffffff">%3$s<br><a href="mailto:hello@example.com">%4$s</a></p>
27
- <!-- /wp:paragraph -->
28
-
29
- <!-- wp:social-links {"align":"center","className":"margin-top-half"} -->
30
- <ul class="wp-block-social-links aligncenter margin-top-half"><!-- wp:social-link {"url":"","service":"wordpress"} /-->
31
-
32
- <!-- wp:social-link {"url":"https://facebook.com/","service":"facebook"} /-->
33
-
34
- <!-- wp:social-link {"url":"https://twitter.com/","service":"twitter"} /-->
35
-
36
- <!-- wp:social-link {"url":"https://instagram.com/","service":"instagram"} /-->
37
-
38
- <!-- wp:social-link {"service":"linkedin"} /-->
39
-
40
- <!-- wp:social-link {"service":"youtube"} /--></ul>
41
- <!-- /wp:social-links --></div>
42
- <!-- /wp:jetpack/layout-grid-column --></div>
43
- <!-- /wp:jetpack/layout-grid -->
44
-
45
- <!-- wp:spacer {"height":60} -->
46
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
47
- <!-- /wp:spacer --></div></div>
48
- <!-- /wp:group -->
49
- ';
50
- // phpcs:enable WordPress.WP.CapitalPDangit.Misspelled
51
-
52
- return array(
53
- 'title' => esc_html__( 'Contact', 'full-site-editing' ),
54
- 'categories' => array( 'contact' ),
55
- 'content' => sprintf(
56
- $markup,
57
- esc_html__( 'Jennifer Dolan Photography', 'full-site-editing' ),
58
- esc_html__( 'San Francisco, California', 'full-site-editing' ),
59
- esc_html__( '123-456-7890', 'full-site-editing' ),
60
- esc_html__( 'hello@example.com', 'full-site-editing' )
61
- ),
62
- 'viewportWidth' => 1280,
63
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/contact-04.php DELETED
@@ -1,81 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- // phpcs:disable WordPress.WP.CapitalPDangit.Misspelled
9
- $markup = '
10
- <!-- wp:group {"align":"full","style":{"color":{"text":"#ffffff","background":"#242424"}}} -->
11
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#242424;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":60} -->
12
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":5,"column1DesktopOffset":1,"column1TabletSpan":4,"column1MobileSpan":2,"column2DesktopSpan":5,"column2TabletSpan":4,"column2MobileSpan":2,"column2MobileOffset":2,"column3DesktopOffset":1,"column3MobileOffset":6,"className":"column1-desktop-grid__span-5 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-2 column1-mobile-grid__row-1 column2-mobile-grid__span-2 column2-mobile-grid__row-2"} -->
16
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-5 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-2 column1-mobile-grid__row-1 column2-mobile-grid__span-2 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
17
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"fontSize":"huge"} -->
18
- <p class="has-huge-font-size"><strong>%1$s</strong></p>
19
- <!-- /wp:paragraph -->
20
-
21
- <!-- wp:paragraph -->
22
- <p>%2$s <br>%3$s</p>
23
- <!-- /wp:paragraph -->
24
-
25
- <!-- wp:paragraph {"align":"left","className":"margin-bottom-half"} -->
26
- <p class="has-text-align-left margin-bottom-half"><a rel="noreferrer noopener" href="mailto:hello@example.com" target="_blank">%4$s</a></p>
27
- <!-- /wp:paragraph --></div>
28
- <!-- /wp:jetpack/layout-grid-column -->
29
-
30
- <!-- wp:jetpack/layout-grid-column -->
31
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.9"}}} -->
32
- <p style="line-height:1.9"><strong>%5$s</strong> %6$s<br><strong>%7$s</strong> %6$s<br><strong>%8$s</strong> %6$s<br><strong>%9$s</strong> %6$s<br><strong>%10$s</strong> %6$s<br><strong>%11$s</strong> %6$s<br><strong>%12$s</strong> %13$s</p>
33
- <!-- /wp:paragraph --></div>
34
- <!-- /wp:jetpack/layout-grid-column --></div>
35
- <!-- /wp:jetpack/layout-grid -->
36
-
37
- <!-- wp:spacer {"height":60} -->
38
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
39
- <!-- /wp:spacer --></div></div>
40
- <!-- /wp:group -->
41
-
42
- <!-- wp:group {"align":"full","style":{"color":{"background":"#000000"}}} -->
43
- <div class="wp-block-group alignfull has-background" style="background-color:#000000"><div class="wp-block-group__inner-container"><!-- wp:social-links {"align":"center"} -->
44
- <ul class="wp-block-social-links aligncenter"><!-- wp:social-link {"url":"","service":"wordpress"} /-->
45
-
46
- <!-- wp:social-link {"url":"https://facebook.com","service":"facebook"} /-->
47
-
48
- <!-- wp:social-link {"url":"https://twitter.com","service":"twitter"} /-->
49
-
50
- <!-- wp:social-link {"url":"https://instagram.com","service":"instagram"} /-->
51
-
52
- <!-- wp:social-link {"service":"linkedin"} /-->
53
-
54
- <!-- wp:social-link {"url":"https://youtube.com","service":"youtube"} /--></ul>
55
- <!-- /wp:social-links --></div></div>
56
- <!-- /wp:group -->
57
- ';
58
- // phpcs:enable WordPress.WP.CapitalPDangit.Misspelled
59
-
60
- return array(
61
- '__file' => 'wp_block',
62
- 'title' => esc_html__( 'Contact', 'full-site-editing' ),
63
- 'categories' => array( 'contact' ),
64
- 'content' => sprintf(
65
- $markup,
66
- esc_html__( 'Burger Brothers', 'full-site-editing' ),
67
- esc_html__( '123 Example St, San Francisco,', 'full-site-editing' ),
68
- esc_html__( 'CA 12345-678', 'full-site-editing' ),
69
- esc_html__( 'hello@example.com', 'full-site-editing' ),
70
- esc_html__( 'Monday:', 'full-site-editing' ),
71
- esc_html__( '11:00 – 22:00', 'full-site-editing' ),
72
- esc_html__( 'Tuesday:', 'full-site-editing' ),
73
- esc_html__( 'Wednesday:', 'full-site-editing' ),
74
- esc_html__( 'Thursday:', 'full-site-editing' ),
75
- esc_html__( 'Friday:', 'full-site-editing' ),
76
- esc_html__( 'Saturday:', 'full-site-editing' ),
77
- esc_html__( 'Sunday:', 'full-site-editing' ),
78
- esc_html__( 'Closed', 'full-site-editing' )
79
- ),
80
- 'viewportWidth' => 1280,
81
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/contact-05.php DELETED
@@ -1,54 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- // phpcs:disable WordPress.WP.CapitalPDangit.Misspelled
9
- $markup = '
10
- <!-- wp:cover {"customOverlayColor":"#000000","minHeight":80,"minHeightUnit":"vh","align":"full"} -->
11
- <div class="wp-block-cover alignfull has-background-dim" style="background-color:#000000;min-height:80vh"><div class="wp-block-cover__inner-container"><!-- wp:spacer {"height":20} -->
12
- <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":12,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
16
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
17
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"fontSize":103,"lineHeight":"1"},"color":{"text":"#ffffff"}}} -->
18
- <p class="has-text-color" style="line-height:1;font-size:103px;color:#ffffff">%1$s</p>
19
- <!-- /wp:paragraph --></div>
20
- <!-- /wp:jetpack/layout-grid-column --></div>
21
- <!-- /wp:jetpack/layout-grid --></div></div>
22
- <!-- /wp:cover -->
23
-
24
- <!-- wp:group {"align":"full","style":{"color":{"background":"#000000","text":"#ffffff"}}} -->
25
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#000000;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":7,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
26
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
27
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":28},"color":{"text":"#ffffff"}}} -->
28
- <p class="has-text-align-left has-text-color" style="font-size:28px;color:#ffffff"><a href="#">%2$s</a> / <a href="#">%3$s</a> / <a href="#">%4$s</a></p>
29
- <!-- /wp:paragraph --></div>
30
- <!-- /wp:jetpack/layout-grid-column -->
31
-
32
- <!-- wp:jetpack/layout-grid-column -->
33
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":28},"color":{"text":"#ffffff"}}} -->
34
- <p class="has-text-align-right has-text-color" style="font-size:28px;color:#ffffff"><a href="mailto:%5$s">%5$s</a></p>
35
- <!-- /wp:paragraph --></div>
36
- <!-- /wp:jetpack/layout-grid-column --></div>
37
- <!-- /wp:jetpack/layout-grid --></div></div>
38
- <!-- /wp:group -->
39
- ';
40
-
41
- return array(
42
- '__file' => 'wp_block',
43
- 'title' => esc_html__( 'Contact', 'full-site-editing' ),
44
- 'categories' => array( 'contact', 'text', 'call-to-action' ),
45
- 'content' => sprintf(
46
- $markup,
47
- esc_html__( 'Let&rsquo;s connect.', 'full-site-editing' ),
48
- esc_html__( 'Twitter', 'full-site-editing' ),
49
- esc_html__( 'Instagram', 'full-site-editing' ),
50
- esc_html__( 'Facebook', 'full-site-editing' ),
51
- esc_html__( 'hello@example.com', 'full-site-editing' )
52
- ),
53
- 'viewportWidth' => 1280,
54
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/contact.php DELETED
@@ -1,63 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"customBackgroundColor":"#eeedeb","customTextColor":"#000000","align":"full"} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#eeedeb;color:#000000"><div class="wp-block-group__inner-container"><!-- wp:spacer -->
11
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":5,"column1DesktopOffset":1,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":5,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":1,"className":"column1-desktop-grid__span-5 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-5 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":5,"customTextColor":"#000000"} -->
17
- <h5 class="has-text-color" style="color:#000000">%1$s</h5>
18
- <!-- /wp:heading --></div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"left","fontSize":"huge"} -->
23
- <p class="has-text-align-left has-huge-font-size">%2$s<br>%3$s</p>
24
- <!-- /wp:paragraph -->
25
-
26
- <!-- wp:paragraph {"align":"left","fontSize":"huge","className":"margin-bottom-half"} -->
27
- <p class="has-text-align-left has-huge-font-size margin-bottom-half"><a href="mailto:hello@example.com" target="_blank" rel="noreferrer noopener">%4$s</a></p>
28
- <!-- /wp:paragraph -->
29
-
30
- <!-- wp:social-links {"className":"margin-top-half"} -->
31
- <ul class="wp-block-social-links margin-top-half"><!-- wp:social-link {"url":"","service":"WordPress"} /-->
32
-
33
- <!-- wp:social-link {"url":"https://facebook.com/","service":"facebook"} /-->
34
-
35
- <!-- wp:social-link {"url":"https://twitter.com","service":"twitter"} /-->
36
-
37
- <!-- wp:social-link {"url":"https://instagram.com","service":"instagram"} /-->
38
-
39
- <!-- wp:social-link {"service":"linkedin"} /-->
40
-
41
- <!-- wp:social-link {"url":"https://youtube.com","service":"youtube"} /--></ul>
42
- <!-- /wp:social-links --></div>
43
- <!-- /wp:jetpack/layout-grid-column --></div>
44
- <!-- /wp:jetpack/layout-grid -->
45
-
46
- <!-- wp:spacer -->
47
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
48
- <!-- /wp:spacer --></div></div>
49
- <!-- /wp:group -->
50
- ';
51
-
52
- return array(
53
- 'title' => esc_html__( 'Contact', 'full-site-editing' ),
54
- 'categories' => array( 'contact' ),
55
- 'content' => sprintf(
56
- $markup,
57
- esc_html__( 'Get in touch', 'full-site-editing' ),
58
- esc_html__( 'Jennifer Dolan Photography', 'full-site-editing' ),
59
- esc_html__( 'San Francisco, California', 'full-site-editing' ),
60
- esc_html__( 'hello@example.com', 'full-site-editing' )
61
- ),
62
- 'viewportWidth' => 1280,
63
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/description-and-image.php DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * Description and Image pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":3,"column1TabletSpan":3,"column1MobileSpan":4,"column2DesktopSpan":9,"column2TabletSpan":5,"column2MobileSpan":4,"column3DesktopOffset":15,"column3TabletOffset":3,"column3MobileOffset":2,"className":"column1-desktop-grid__span-3 column1-desktop-grid__row-1 column2-desktop-grid__span-9 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__row-1 column2-desktop-grid__span-9 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:paragraph {"fontSize":"small"} -->
14
- <p class="has-small-font-size">%1$s</p>
15
- <!-- /wp:paragraph -->
16
- </div>
17
- <!-- /wp:jetpack/layout-grid-column -->
18
-
19
- <!-- wp:jetpack/layout-grid-column -->
20
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
21
- <!-- wp:image {"sizeSlug":"full"} -->
22
- <figure class="wp-block-image size-full">
23
- <img src="%2$s" alt=""/>
24
- </figure>
25
- <!-- /wp:image -->
26
- </div>
27
- <!-- /wp:jetpack/layout-grid-column -->
28
- </div>
29
- <!-- /wp:jetpack/layout-grid -->
30
- ';
31
-
32
- return array(
33
- 'title' => esc_html__( 'Description and Image', 'full-site-editing' ),
34
- 'categories' => array( 'images' ),
35
- 'content' => sprintf(
36
- $markup,
37
- esc_html__( 'The artist is the creator of beautiful things. To reveal art and conceal the artist is art&#8217;s aim. The critic is he who can translate into another manner or a new material his impression of beautiful things.', 'full-site-editing' ),
38
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/leaf.jpg' )
39
- ),
40
- 'viewportWidth' => 1280,
41
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/food-menu.php DELETED
@@ -1,74 +0,0 @@
1
- <?php
2
- /**
3
- * Food menu pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:paragraph {"style":{"typography":{"fontSize":71}}} -->
14
- <p style="font-size:71px"><strong>Menu</strong></p>
15
- <!-- /wp:paragraph -->
16
- <!-- wp:columns -->
17
- <div class="wp-block-columns">
18
- <!-- wp:column -->
19
- <div class="wp-block-column">
20
- <!-- wp:paragraph -->
21
- <p><strong>%1$s</strong><br>%2$s<br>%3$s</p>
22
- <!-- /wp:paragraph -->
23
- </div>
24
- <!-- /wp:column -->
25
- <!-- wp:column -->
26
- <div class="wp-block-column">
27
- <!-- wp:paragraph -->
28
- <p><strong>%4$s</strong><br>%5$s<br>%3$s</p>
29
- <!-- /wp:paragraph -->
30
- </div>
31
- <!-- /wp:column -->
32
- </div>
33
- <!-- /wp:columns -->
34
- <!-- wp:columns -->
35
- <div class="wp-block-columns">
36
- <!-- wp:column -->
37
- <div class="wp-block-column">
38
- <!-- wp:paragraph -->
39
- <p><strong>%6$s</strong><br>%7$s<br>%3$s</p>
40
- <!-- /wp:paragraph -->
41
- </div>
42
- <!-- /wp:column -->
43
- <!-- wp:column -->
44
- <div class="wp-block-column">
45
- <!-- wp:paragraph -->
46
- <p><strong>%8$s</strong><br>%9$s<br>%3$s</p>
47
- <!-- /wp:paragraph -->
48
- </div>
49
- <!-- /wp:column -->
50
- </div>
51
- <!-- /wp:columns -->
52
- </div>
53
- <!-- /wp:jetpack/layout-grid-column -->
54
- </div>
55
- <!-- /wp:jetpack/layout-grid -->
56
- ';
57
-
58
- return array(
59
- 'title' => esc_html__( 'Food Menu', 'full-site-editing' ),
60
- 'categories' => array( 'text' ),
61
- 'content' => sprintf(
62
- $markup,
63
- esc_html__( 'Awesome Burger', 'full-site-editing' ),
64
- esc_html__( 'The burger that made us famous. 100% pure lean beef grilled to perfection.', 'full-site-editing' ),
65
- esc_html__( '$8.00', 'full-site-editing' ),
66
- esc_html__( 'Chicken Sandwich', 'full-site-editing' ),
67
- esc_html__( 'Cajun chicken breast with lettuce and tomato on a freshly toasted bun.', 'full-site-editing' ),
68
- esc_html__( 'Veggie Burger', 'full-site-editing' ),
69
- esc_html__( 'A delicious, soy, boca patty, served on a freshly toasted, whole-wheat bun.', 'full-site-editing' ),
70
- esc_html__( 'Garden Salad', 'full-site-editing' ),
71
- esc_html__( 'Fresh greens with cheddar cheese diced tomatoes, and honey mustard dressing.', 'full-site-editing' )
72
- ),
73
- 'viewportWidth' => 1280,
74
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/heading-and-paragraph.php DELETED
@@ -1,36 +0,0 @@
1
- <?php
2
- /**
3
- * Text pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":6,"column1DesktopOffset":3,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":3,"className":"column1-desktop-grid__span-6 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading -->
12
- <h2>%1$s</h2>
13
- <!-- /wp:heading -->
14
-
15
- <!-- wp:paragraph -->
16
- <p>%2$s</p>
17
- <!-- /wp:paragraph --></div>
18
- <!-- /wp:jetpack/layout-grid-column --></div>
19
- <!-- /wp:jetpack/layout-grid -->
20
-
21
- <!-- wp:spacer {"height":60} -->
22
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
23
- <!-- /wp:spacer -->
24
- ';
25
-
26
- return array(
27
- '__file' => 'wp_block',
28
- 'title' => esc_html__( 'Heading and Paragraph', 'full-site-editing' ),
29
- 'categories' => array( 'text' ),
30
- 'content' => sprintf(
31
- $markup,
32
- esc_html__( 'Chapter 1: Loomings', 'full-site-editing' ),
33
- esc_html__( 'Call me Ishmael. Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen and regulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos get such an upper hand of me, that it requires a strong moral principle to prevent me from deliberately stepping into the street, and methodically knocking people’s hats off—then, I account it high time to get to sea as soon as I can. This is my substitute for pistol and ball. With a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship. There is nothing surprising in this. If they but knew it, almost all men in their degree, some time or other, cherish very nearly the same feelings towards the ocean with me.', 'full-site-editing' )
34
- ),
35
- 'viewportWidth' => 1280,
36
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/heading-and-text-in-two-columns.php DELETED
@@ -1,34 +0,0 @@
1
- <?php
2
- /**
3
- * Text pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:columns {"align":"wide"} -->
10
- <div class="wp-block-columns alignwide"><!-- wp:column {"verticalAlignment":"top","width":40} -->
11
- <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:40%%"><!-- wp:heading {"level":3,"className":"margin-top-none"} -->
12
- <h3 class="margin-top-none"><strong>%1$s</strong></h3>
13
- <!-- /wp:heading --></div>
14
- <!-- /wp:column -->
15
-
16
- <!-- wp:column -->
17
- <div class="wp-block-column"><!-- wp:paragraph -->
18
- <p>%2$s</p>
19
- <!-- /wp:paragraph --></div>
20
- <!-- /wp:column --></div>
21
- <!-- /wp:columns -->
22
- ';
23
-
24
- return array(
25
- '__file' => 'wp_block',
26
- 'title' => esc_html__( 'Heading and Text in Two Columns', 'full-site-editing' ),
27
- 'categories' => array( 'text' ),
28
- 'content' => sprintf(
29
- $markup,
30
- esc_html__( 'These are the best pancakes you&rsquo;ll ever have', 'full-site-editing' ),
31
- esc_html__( 'When I was younger I loved pancakes. Excuse me, I loved maple syrup. Pancakes were a way to get as much maple syrup on my plate, my hands, and my face. Eventually my mother realized I was leaving the pancakes half-eaten and we’d run out of syrup in two weeks instead of a month. It’s not that my mother’s pancakes were bad, it was that I didn’t know what a pancake tasted like that wasn’t drenched in dark, sweet, syrup.', 'full-site-editing' )
32
- ),
33
- 'viewportWidth' => 1280,
34
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/headline-02.php DELETED
@@ -1,35 +0,0 @@
1
- <?php
2
- /**
3
- * Headline pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":8,"column1DesktopOffset":2,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":4,"className":"column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"align":"center","id":468,"sizeSlug":"thumbnail","className":"is-style-rounded"} -->
12
- <div class="wp-block-image is-style-rounded"><figure class="aligncenter size-thumbnail"><img src="https://dotcompatterns.files.wordpress.com/2020/04/campbell-boulanger-4dsrfbcrpzm-unsplash.jpg?w=150" alt="" class="wp-image-468"/></figure></div>
13
- <!-- /wp:image -->
14
-
15
- <!-- wp:heading {"align":"center","level":1} -->
16
- <h1 class="has-text-align-center">%1$s</h1>
17
- <!-- /wp:heading -->
18
-
19
- <!-- wp:paragraph {"align":"center"} -->
20
- <p class="has-text-align-center">%2$s</p>
21
- <!-- /wp:paragraph --></div>
22
- <!-- /wp:jetpack/layout-grid-column --></div>
23
- <!-- /wp:jetpack/layout-grid -->
24
- ';
25
-
26
- return array(
27
- 'title' => esc_html__( 'Headline', 'full-site-editing' ),
28
- 'categories' => array( 'text' ),
29
- 'content' => sprintf(
30
- $markup,
31
- esc_html__( 'Eat Dessert First is for my love of food and sharing my favorites with you.', 'full-site-editing' ),
32
- esc_html__( 'Hi, I’m Lillie. Previously a magazine editor, I became a full-time mother and freelance writer in 2017. I spend most of my time with my kids and husband over at The Brown Bear Family.', 'full-site-editing' )
33
- ),
34
- 'viewportWidth' => 1280,
35
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/headline.php DELETED
@@ -1,53 +0,0 @@
1
- <?php
2
- /**
3
- * Headline pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":5,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:image {"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full">
15
- <a href="#">
16
- <img src="%1$s" alt=""/>
17
- </a>
18
- </figure>
19
- <!-- /wp:image -->
20
-
21
- <!-- wp:paragraph {"align":"center","textColor":"foreground-light","className":"margin-bottom-half"} -->
22
- <p class="has-text-color has-text-align-center has-foreground-light-color margin-bottom-half"><strong>%2$s</strong></p>
23
- <!-- /wp:paragraph -->
24
-
25
- <!-- wp:heading {"align":"center","className":"margin-top-half entry-title"} -->
26
- <h2 class="has-text-align-center margin-top-half entry-title"><a href="#">%3$s</a></h2>
27
- <!-- /wp:heading -->
28
-
29
- <!-- wp:buttons {"align":"center"} -->
30
- <div class="wp-block-buttons aligncenter">
31
- <!-- wp:button {"borderRadius":0,"className":"is-style-outline"} -->
32
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link no-border-radius">%4$s</a></div>
33
- <!-- /wp:button -->
34
- </div>
35
- <!-- /wp:buttons -->
36
- </div>
37
- <!-- /wp:jetpack/layout-grid-column -->
38
- </div>
39
- <!-- /wp:jetpack/layout-grid -->
40
- ';
41
-
42
- return array(
43
- 'title' => esc_html__( 'Headline', 'full-site-editing' ),
44
- 'categories' => array( 'blog' ),
45
- 'content' => sprintf(
46
- $markup,
47
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/cayla1-w6ftfbpcs9i-unsplash.jpg' ),
48
- esc_html__( 'Weekly Recipe', 'full-site-editing' ),
49
- esc_html__( 'Stay Warm in Autumn: Roasted Pumpkin Soup', 'full-site-editing' ),
50
- esc_html__( 'More Recipes', 'full-site-editing' )
51
- ),
52
- 'viewportWidth' => 1280,
53
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/hero-with-heading-subtitle-and-two-buttons.php DELETED
@@ -1,42 +0,0 @@
1
- <?php
2
- /**
3
- * Call to Action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"customOverlayColor":"#f7f7f7","align":"full"} -->
10
- <div class="wp-block-cover alignfull has-background-dim" style="background-color:#f7f7f7"><div class="wp-block-cover__inner-container"><!-- wp:heading {"level":1,"placeholder":"Add heading...","style":{"typography":{"lineHeight":"1.4"},"color":{"text":"#222222"}}} -->
11
- <h1 class="has-text-color" style="line-height:1.4;color:#222222">%1$s</h1>
12
- <!-- /wp:heading -->
13
-
14
- <!-- wp:paragraph {"style":{"color":{"text":"#222222"}}} -->
15
- <p class="has-text-color" style="color:#222222">%2$s</p>
16
- <!-- /wp:paragraph -->
17
-
18
- <!-- wp:buttons -->
19
- <div class="wp-block-buttons"><!-- wp:button {"style":{"color":{"background":"#ff302c","text":"#ffffff"}}} -->
20
- <div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" style="background-color:#ff302c;color:#ffffff">%3$s</a></div>
21
- <!-- /wp:button -->
22
-
23
- <!-- wp:button {"style":{"color":{"text":"#ff302c"}},"className":"is-style-outline"} -->
24
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ff302c">%4$s</a></div>
25
- <!-- /wp:button --></div>
26
- <!-- /wp:buttons --></div></div>
27
- <!-- /wp:cover -->
28
- ';
29
-
30
- return array(
31
- '__file' => 'wp_block',
32
- 'title' => esc_html__( 'Hero with heading, subtitle and two buttons', 'full-site-editing' ),
33
- 'categories' => array( 'text', 'call-to-action' ),
34
- 'content' => sprintf(
35
- $markup,
36
- esc_html__( 'A Curated Collection of Refurbished Vintage Cameras &amp; Accessories', 'full-site-editing' ),
37
- esc_html__( 'Lenses, filters, lighting and more. All in working condition at unbeatable prices.', 'full-site-editing' ),
38
- esc_html__( 'Learn more', 'full-site-editing' ),
39
- esc_html__( 'Pre-order', 'full-site-editing' )
40
- ),
41
- 'viewportWidth' => 1280,
42
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/image-and-description.php DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * Image and Description pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":9,"column1TabletSpan":5,"column1MobileSpan":4,"column2DesktopSpan":3,"column2TabletSpan":3,"column2MobileSpan":4,"column3DesktopOffset":21,"column3TabletOffset":6,"column3MobileOffset":2,"className":"column1-desktop-grid__span-9 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-10 column2-desktop-grid__row-1 column1-tablet-grid__span-5 column1-tablet-grid__row-1 column2-tablet-grid__span-3 column2-tablet-grid__start-6 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-9 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-10 column2-desktop-grid__row-1 column1-tablet-grid__span-5 column1-tablet-grid__row-1 column2-tablet-grid__span-3 column2-tablet-grid__start-6 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:image {"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full">
15
- <img src="%1$s" alt=""/>
16
- </figure>
17
- <!-- /wp:image -->
18
- </div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
23
- <!-- wp:paragraph {"fontSize":"small"} -->
24
- <p class="has-small-font-size">%2$s</p>
25
- <!-- /wp:paragraph -->
26
- </div>
27
- <!-- /wp:jetpack/layout-grid-column -->
28
- </div>
29
- <!-- /wp:jetpack/layout-grid -->
30
- ';
31
-
32
- return array(
33
- 'title' => esc_html__( 'Image and Description', 'full-site-editing' ),
34
- 'categories' => array( 'images' ),
35
- 'content' => sprintf(
36
- $markup,
37
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/lollipop.jpg' ),
38
- esc_html__( 'The artist is the creator of beautiful things. To reveal art and conceal the artist is art&#8217;s aim. The critic is he who can translate into another manner or a new material his impression of beautiful things.', 'full-site-editing' )
39
- ),
40
- 'viewportWidth' => 1280,
41
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/image-and-text-mosaic.php DELETED
@@ -1,70 +0,0 @@
1
- <?php
2
- /**
3
- * Image pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:columns {"verticalAlignment":"top","align":"wide"} -->
10
- <div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":33.33} -->
11
- <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:33.33%%"><!-- wp:spacer {"height":110} -->
12
- <div style="height:110px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:heading {"style":{"color":{"text":"#ff302c"}}} -->
16
- <h2 class="has-text-color" style="color:#ff302c">%1$s</h2>
17
- <!-- /wp:heading -->
18
-
19
- <!-- wp:separator {"className":"is-style-wide"} -->
20
- <hr class="wp-block-separator is-style-wide"/>
21
- <!-- /wp:separator -->
22
-
23
- <!-- wp:paragraph -->
24
- <p>%2$s</p>
25
- <!-- /wp:paragraph -->
26
-
27
- <!-- wp:button {"style":{"color":{"text":"#ff302c"}},"align":"left","className":"is-style-outline"} -->
28
- <div class="wp-block-button alignleft is-style-outline"><a class="wp-block-button__link has-text-color" href="#" style="color:#ff302c">%3$s</a></div>
29
- <!-- /wp:button -->
30
-
31
- <!-- wp:spacer {"height":32} -->
32
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
33
- <!-- /wp:spacer --></div>
34
- <!-- /wp:column -->
35
-
36
- <!-- wp:column {"verticalAlignment":"top","width":66.66} -->
37
- <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:66.66%%"><!-- wp:image {"id":1107,"sizeSlug":"large"} -->
38
- <figure class="wp-block-image size-large"><img src="https://dotcompatterns.files.wordpress.com/2020/05/oriento-rdmks85cli8-unsplash.jpg?w=682" alt="" class="wp-image-1107"/></figure>
39
- <!-- /wp:image -->
40
-
41
- <!-- wp:media-text {"mediaId":1106,"mediaType":"image","isStackedOnMobile":false,"verticalAlignment":"top","imageFill":true} -->
42
- <div class="wp-block-media-text alignwide is-vertically-aligned-top is-image-fill"><figure class="wp-block-media-text__media" style="background-image:url(https://dotcompatterns.files.wordpress.com/2020/05/oriento-dpuwgzlsok8-unsplash.jpg?w=750);background-position:50%% 50%%"><img src="https://dotcompatterns.files.wordpress.com/2020/05/oriento-dpuwgzlsok8-unsplash.jpg?w=750" alt="" class="wp-image-1106"/></figure><div class="wp-block-media-text__content"><!-- wp:paragraph -->
43
- <p>%4$s</p>
44
- <!-- /wp:paragraph --></div></div>
45
- <!-- /wp:media-text -->
46
-
47
- <!-- wp:separator {"className":"is-style-wide"} -->
48
- <hr class="wp-block-separator is-style-wide"/>
49
- <!-- /wp:separator -->
50
-
51
- <!-- wp:spacer {"height":96} -->
52
- <div style="height:96px" aria-hidden="true" class="wp-block-spacer"></div>
53
- <!-- /wp:spacer --></div>
54
- <!-- /wp:column --></div>
55
- <!-- /wp:columns -->
56
- ';
57
-
58
- return array(
59
- '__file' => 'wp_block',
60
- 'title' => esc_html__( 'Image and Text Mosaic', 'full-site-editing' ),
61
- 'categories' => array( 'gallery', 'images', 'text' ),
62
- 'content' => sprintf(
63
- $markup,
64
- esc_html__( 'Ceramic Tea Bowls"', 'full-site-editing' ),
65
- esc_html__( 'A tea bowl is a central item in the traditional tea ceremony. In our shop you&rsquo;ll find one-of-a-kind, handmade bowls and cups made to order in our ceramic workshop. Each of our bowls is a unique creation so please allow for slight variances in shape and color. The bowls are glazed with special food-safe glazes.', 'full-site-editing' ),
66
- esc_html__( 'Learn more', 'full-site-editing' ),
67
- esc_html__( 'We&rsquo;re also offering unique, handmade ceramic mugs as well as original sets, consisting of tea, cups and matching tea pot, perfect for gifting.', 'full-site-editing' )
68
- ),
69
- 'viewportWidth' => 1280,
70
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/image-and-text.php DELETED
@@ -1,42 +0,0 @@
1
- <?php
2
- /**
3
- * Image and Text pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"customBackgroundColor":"#000000","customTextColor":"#ffffff","align":"full"} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#000000;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":60} -->
11
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","addGutterEnds":false,"column1DesktopSpan":5,"column1DesktopOffset":2,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":3,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":3,"className":"column1-desktop-grid__span-5 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-5 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":389,"sizeSlug":"full"} -->
17
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/04/christian-buehner-xiwx754jx0s-unsplash.jpg" alt="" class="wp-image-389"/></figure>
18
- <!-- /wp:image --></div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"fontSize":"small"} -->
23
- <p class="has-small-font-size">%1$s</p>
24
- <!-- /wp:paragraph --></div>
25
- <!-- /wp:jetpack/layout-grid-column --></div>
26
- <!-- /wp:jetpack/layout-grid -->
27
-
28
- <!-- wp:spacer {"height":60} -->
29
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
30
- <!-- /wp:spacer --></div></div>
31
- <!-- /wp:group -->
32
- ';
33
-
34
- return array(
35
- 'title' => esc_html__( 'Image and Text', 'full-site-editing' ),
36
- 'categories' => array( 'images' ),
37
- 'content' => sprintf(
38
- $markup,
39
- esc_html__( 'His latest work is A Life Well-Lived, a selection of photos and stories of people across Nebraska highlighting their stories from the past 70 years. These are photographs and stories of those who might be forgotten in the rush of history.', 'full-site-editing' )
40
- ),
41
- 'viewportWidth' => 1280,
42
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/images-02.php DELETED
@@ -1,100 +0,0 @@
1
- <?php
2
- /**
3
- * Images pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":3,"column1DesktopOffset":1,"column1TabletSpan":3,"column1MobileSpan":4,"column2DesktopSpan":7,"column2TabletSpan":5,"column2MobileSpan":4,"column3DesktopOffset":2,"column3TabletOffset":1,"className":"column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-7 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-7 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer -->
12
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:paragraph {"align":"right","className":"margin-bottom-half","style":{"typography":{"lineHeight":"1.2"}}} -->
16
- <p class="has-text-align-right margin-bottom-half" style="line-height:1.2"><strong>%1$s</strong><br><em>%2$s</em></p>
17
- <!-- /wp:paragraph -->
18
-
19
- <!-- wp:image {"id":1180,"sizeSlug":"full","className":"margin-top-half"} -->
20
- <figure class="wp-block-image size-full margin-top-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/aiony-haust-f2ar0lttvai-unsplash.jpg" alt="" class="wp-image-1180"/></a></figure>
21
- <!-- /wp:image --></div>
22
- <!-- /wp:jetpack/layout-grid-column -->
23
-
24
- <!-- wp:jetpack/layout-grid-column -->
25
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1141,"sizeSlug":"full","className":"margin-bottom-half"} -->
26
- <figure class="wp-block-image size-full margin-bottom-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/mitchell-orr-gzaycfvq-hu-unsplash.jpg" alt="" class="wp-image-1141"/></a></figure>
27
- <!-- /wp:image -->
28
-
29
- <!-- wp:paragraph {"align":"right","className":"margin-top-half","style":{"typography":{"lineHeight":"1.2"}}} -->
30
- <p class="has-text-align-right margin-top-half" style="line-height:1.2"><strong>%3$s</strong><br><em>%4$s</em></p>
31
- <!-- /wp:paragraph --></div>
32
- <!-- /wp:jetpack/layout-grid-column --></div>
33
- <!-- /wp:jetpack/layout-grid -->
34
-
35
- <!-- wp:spacer {"height":60} -->
36
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
37
- <!-- /wp:spacer -->
38
-
39
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":4,"column1DesktopOffset":3,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":3,"className":"column1-desktop-grid__span-4 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
40
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-4 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
41
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"right","className":"margin-bottom-half","style":{"typography":{"lineHeight":"1.2"}}} -->
42
- <p class="has-text-align-right margin-bottom-half" style="line-height:1.2"><strong>%5$s</strong><br><em>%6$s</em></p>
43
- <!-- /wp:paragraph -->
44
-
45
- <!-- wp:image {"id":1280,"sizeSlug":"full","className":"margin-top-half"} -->
46
- <figure class="wp-block-image size-full margin-top-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/patricia-palma-oaab-eywmuu-unsplash.jpg" alt="" class="wp-image-1280"/></a></figure>
47
- <!-- /wp:image --></div>
48
- <!-- /wp:jetpack/layout-grid-column -->
49
-
50
- <!-- wp:jetpack/layout-grid-column -->
51
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer -->
52
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
53
- <!-- /wp:spacer -->
54
-
55
- <!-- wp:paragraph {"align":"right","className":"margin-bottom-half","style":{"typography":{"lineHeight":"1.2"}}} -->
56
- <p class="has-text-align-right margin-bottom-half" style="line-height:1.2"><strong>%7$s</strong><br><em>%8$s</em></p>
57
- <!-- /wp:paragraph -->
58
-
59
- <!-- wp:image {"id":1277,"sizeSlug":"full","className":"margin-top-half"} -->
60
- <figure class="wp-block-image size-full margin-top-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/jean-philippe-delberghe-exbd9gxafhs-unsplash.jpg" alt="" class="wp-image-1277"/></a></figure>
61
- <!-- /wp:image --></div>
62
- <!-- /wp:jetpack/layout-grid-column --></div>
63
- <!-- /wp:jetpack/layout-grid -->
64
-
65
- <!-- wp:spacer {"height":60} -->
66
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
67
- <!-- /wp:spacer -->
68
-
69
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":6,"className":"column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
70
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
71
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"right","className":"margin-bottom-half","style":{"typography":{"lineHeight":"1.2"}}} -->
72
- <p class="has-text-align-right margin-bottom-half" style="line-height:1.2"><strong>%9$s</strong><br><em>%10$s</em> </p>
73
- <!-- /wp:paragraph -->
74
-
75
- <!-- wp:image {"id":1325,"sizeSlug":"large","className":"margin-top-half"} -->
76
- <figure class="wp-block-image size-large margin-top-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/06/sofia-kuniakina-rt990o6gexk-unsplash.jpg?w=1024" alt="" class="wp-image-1325"/></a></figure>
77
- <!-- /wp:image --></div>
78
- <!-- /wp:jetpack/layout-grid-column --></div>
79
- <!-- /wp:jetpack/layout-grid -->
80
- ';
81
-
82
- return array(
83
- '__file' => 'wp_block',
84
- 'title' => esc_html__( 'Images', 'full-site-editing' ),
85
- 'categories' => array( 'gallery', 'images' ),
86
- 'content' => sprintf(
87
- $markup,
88
- esc_html__( 'Summer', 'full-site-editing' ),
89
- esc_html__( '2019', 'full-site-editing' ),
90
- esc_html__( 'Failed Encounter', 'full-site-editing' ),
91
- esc_html__( '2019', 'full-site-editing' ),
92
- esc_html__( 'Movement', 'full-site-editing' ),
93
- esc_html__( '2018', 'full-site-editing' ),
94
- esc_html__( 'Retratos', 'full-site-editing' ),
95
- esc_html__( '2017', 'full-site-editing' ),
96
- esc_html__( 'Disappearance', 'full-site-editing' ),
97
- esc_html__( '2016', 'full-site-editing' )
98
- ),
99
- 'viewportWidth' => 1280,
100
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/images-with-titles.php DELETED
@@ -1,74 +0,0 @@
1
- <?php
2
- /**
3
- * Image with Titles pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":713,"sizeSlug":"full","className":"margin-bottom-half"} -->
12
- <figure class="wp-block-image size-full margin-bottom-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/water-journal-2bxqtxojhko-unsplash-1.jpg" alt="" class="wp-image-713"/></a></figure>
13
- <!-- /wp:image -->
14
-
15
- <!-- wp:paragraph {"className":"margin-top-half"} -->
16
- <p class="margin-top-half">%1$s</p>
17
- <!-- /wp:paragraph --></div>
18
- <!-- /wp:jetpack/layout-grid-column -->
19
-
20
- <!-- wp:jetpack/layout-grid-column -->
21
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":716,"sizeSlug":"full","className":"margin-bottom-half"} -->
22
- <figure class="wp-block-image size-full margin-bottom-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/charles-deluvio-vfq0y6zvex0-unsplash-3.jpg" alt="" class="wp-image-716"/></a></figure>
23
- <!-- /wp:image -->
24
-
25
- <!-- wp:paragraph {"className":"margin-top-half"} -->
26
- <p class="margin-top-half">%2$s</p>
27
- <!-- /wp:paragraph --></div>
28
- <!-- /wp:jetpack/layout-grid-column --></div>
29
- <!-- /wp:jetpack/layout-grid -->
30
-
31
- <!-- wp:spacer {"height":40} -->
32
- <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
33
- <!-- /wp:spacer -->
34
-
35
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
36
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
37
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":714,"sizeSlug":"full","className":"margin-bottom-half"} -->
38
- <figure class="wp-block-image size-full margin-bottom-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/water-journal-evvsegvoue-unsplash-1.jpg" alt="" class="wp-image-714"/></a></figure>
39
- <!-- /wp:image -->
40
-
41
- <!-- wp:paragraph {"className":"margin-top-half"} -->
42
- <p class="margin-top-half">%3$s</p>
43
- <!-- /wp:paragraph --></div>
44
- <!-- /wp:jetpack/layout-grid-column -->
45
-
46
- <!-- wp:jetpack/layout-grid-column -->
47
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":715,"sizeSlug":"full","className":"margin-bottom-half"} -->
48
- <figure class="wp-block-image size-full margin-bottom-half"><a href="#"><img src="https://dotcompatterns.files.wordpress.com/2020/05/sarah-dorweiler-sy8dsvyipgs-unsplash-3.jpg" alt="" class="wp-image-715"/></a></figure>
49
- <!-- /wp:image -->
50
-
51
- <!-- wp:paragraph {"className":"margin-top-half"} -->
52
- <p class="margin-top-half">%4$s</p>
53
- <!-- /wp:paragraph --></div>
54
- <!-- /wp:jetpack/layout-grid-column --></div>
55
- <!-- /wp:jetpack/layout-grid -->
56
-
57
- <!-- wp:spacer {"height":40} -->
58
- <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
59
- <!-- /wp:spacer -->
60
- ';
61
-
62
- return array(
63
- '__file' => 'wp_block',
64
- 'title' => esc_html__( 'Image with Titles', 'full-site-editing' ),
65
- 'categories' => array( 'gallery', 'list' ),
66
- 'content' => sprintf(
67
- $markup,
68
- esc_html__( 'Brice - 2020', 'full-site-editing' ),
69
- esc_html__( 'Vesta Magazine - 2019', 'full-site-editing' ),
70
- esc_html__( 'Easley Magazine - 2019', 'full-site-editing' ),
71
- esc_html__( 'Overton - 2018', 'full-site-editing' )
72
- ),
73
- 'viewportWidth' => 1280,
74
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/images.php DELETED
@@ -1,72 +0,0 @@
1
- <?php
2
- /**
3
- * Images pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":9,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":3,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-9 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-10 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-9 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-10 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":8,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopSpan":6,"column2DesktopOffset":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-8 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
12
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-8 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
13
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1015,"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/05/autri-taheri-wjdu5pkwyeo-unsplash-1.jpg" alt="" class="wp-image-1015"/></figure>
15
- <!-- /wp:image --></div>
16
- <!-- /wp:jetpack/layout-grid-column --></div>
17
- <!-- /wp:jetpack/layout-grid -->
18
-
19
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":3,"column1DesktopOffset":1,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":4,"column3TabletSpan":8,"column3MobileSpan":4,"className":"column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
20
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
21
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1002,"sizeSlug":"full"} -->
22
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/05/autri-taheri-ceyi_5a-hcg-unsplash.jpg" alt="" class="wp-image-1002"/></figure>
23
- <!-- /wp:image --></div>
24
- <!-- /wp:jetpack/layout-grid-column -->
25
-
26
- <!-- wp:jetpack/layout-grid-column -->
27
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1005,"sizeSlug":"full"} -->
28
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/05/oliver-sjostrom-2ojhvhpxrza-unsplash.jpg" alt="" class="wp-image-1005"/></figure>
29
- <!-- /wp:image --></div>
30
- <!-- /wp:jetpack/layout-grid-column -->
31
-
32
- <!-- wp:jetpack/layout-grid-column -->
33
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1001,"sizeSlug":"full"} -->
34
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/05/autri-taheri-w72una-s9ry-unsplash.jpg" alt="" class="wp-image-1001"/></figure>
35
- <!-- /wp:image --></div>
36
- <!-- /wp:jetpack/layout-grid-column --></div>
37
- <!-- /wp:jetpack/layout-grid --></div>
38
- <!-- /wp:jetpack/layout-grid-column -->
39
-
40
- <!-- wp:jetpack/layout-grid-column -->
41
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"className":"margin-bottom-none","style":{"typography":{"fontSize":14}}} -->
42
- <p class="margin-bottom-none" style="font-size:14px">%1$s</p>
43
- <!-- /wp:paragraph -->
44
-
45
- <!-- wp:heading {"level":3,"className":"margin-top-none","style":{"typography":{"fontSize":24,"lineHeight":"1.2"}}} -->
46
- <h3 class="margin-top-none" style="line-height:1.2;font-size:24px">%2$s</h3>
47
- <!-- /wp:heading -->
48
-
49
- <!-- wp:paragraph {"style":{"typography":{"fontSize":14}}} -->
50
- <p style="font-size:14px">%3$s </p>
51
- <!-- /wp:paragraph -->
52
-
53
- <!-- wp:paragraph {"style":{"typography":{"fontSize":14}}} -->
54
- <p style="font-size:14px">%4$s</p>
55
- <!-- /wp:paragraph --></div>
56
- <!-- /wp:jetpack/layout-grid-column --></div>
57
- <!-- /wp:jetpack/layout-grid -->
58
- ';
59
-
60
- return array(
61
- '__file' => 'wp_block',
62
- 'title' => esc_html__( 'Images', 'full-site-editing' ),
63
- 'categories' => array( 'gallery', 'images', 'text' ),
64
- 'content' => sprintf(
65
- $markup,
66
- esc_html__( 'Vol.3', 'full-site-editing' ),
67
- esc_html__( '5am, the Beach', 'full-site-editing' ),
68
- esc_html__( 'As long as I was on the path I walked hard, but when I came to the black beach I had to run. For the tide was now nearly flowed; and to get through with my powder dry between the surf and the steep hill, took all the quickness I possessed. As it was, even, the wash caught me to the knees, and I came near falling on a stone. All this time the hurry I was in, and the free air and smell of the sea, kept my spirits lively; but when I was once in the bush and began to climb the path I took it easier.', 'full-site-editing' ),
69
- esc_html__( 'The fearsomeness of the wood had been a good bit rubbed off for me by Master Case’s banjo-strings and graven images, yet I thought it was a dreary walk, and guessed, when the disciples went up there, they must be badly scared. The light of the lantern, striking among all these trunks and forked branches and twisted rope-ends of lianas, made the whole place, or all that you could see of it, a kind of a puzzle of turning shadows. They came to meet you, solid and quick like giants, and then span off and vanished; they hove up over your head like clubs, and flew away into the night like birds. The floor of the bush glimmered with dead wood, the way the match-box used to shine after you had struck a lucifer. Big, cold drops fell on me from the branches overhead like sweat. There was no wind to mention; only a little icy breath of a land-breeze that stirred nothing; and the harps were silent.', 'full-site-editing' )
70
- ),
71
- 'viewportWidth' => 1280,
72
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/list-02.php DELETED
@@ -1,45 +0,0 @@
1
- <?php
2
- /**
3
- * List pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","backgroundColor":"foreground-dark"} -->
10
- <div class="wp-block-group alignfull has-foreground-dark-background-color has-background"><div class="wp-block-group__inner-container"><!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":12,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
11
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer {"height":20} -->
13
- <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
14
- <!-- /wp:spacer -->
15
-
16
- <!-- wp:paragraph {"style":{"typography":{"fontSize":72,"lineHeight":"0.9"}}} -->
17
- <p style="line-height:0.9;font-size:72px;"><strong>%1$s<br>%2$s<br>%3$s </strong><br><strong>%4$s<br>%5$s<br>%6$s<br>%7$s<br>%8$s<br>%9$s</strong></p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:spacer {"height":20} -->
21
- <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
22
- <!-- /wp:spacer --></div>
23
- <!-- /wp:jetpack/layout-grid-column --></div>
24
- <!-- /wp:jetpack/layout-grid --></div></div>
25
- <!-- /wp:group -->
26
- ';
27
-
28
- return array(
29
- '__file' => 'wp_block',
30
- 'title' => esc_html__( 'List', 'full-site-editing' ),
31
- 'categories' => array( 'list', 'text' ),
32
- 'content' => sprintf(
33
- $markup,
34
- esc_html__( 'BETH SILVA', 'full-site-editing' ),
35
- esc_html__( 'CHRISTINE RUSSELL', 'full-site-editing' ),
36
- esc_html__( 'HOLLIE BLANKENSHIP', 'full-site-editing' ),
37
- esc_html__( 'MONICA HUMPHREY', 'full-site-editing' ),
38
- esc_html__( 'NETTIE PECK', 'full-site-editing' ),
39
- esc_html__( 'BRIANNA WILLIS', 'full-site-editing' ),
40
- esc_html__( 'ELISE PRATT', 'full-site-editing' ),
41
- esc_html__( 'VERONICA ENGLAND', 'full-site-editing' ),
42
- esc_html__( 'MASON DECKER', 'full-site-editing' )
43
- ),
44
- 'viewportWidth' => 1280,
45
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/list.php DELETED
@@ -1,47 +0,0 @@
1
- <?php
2
- /**
3
- * List pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#24890d","text":"#000000"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#24890d;color:#000000"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":50} -->
11
- <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":65,"lineHeight":"1.2"}}} -->
17
- <p class="has-text-align-center" style="line-height:1.2;font-size:65px">%1$s <em><span style="color:#ffffff;" class="has-inline-color">%2$s</span></em> <strong>%3$s</strong> %4$s <em><span style="color:#ffffff;" class="has-inline-color">%5$s</span></em> <strong>%6$s</strong> %7$s <em><span style="color:#ffffff;" class="has-inline-color">%8$s</span></em> <strong>%9$s</strong> %10$s <em><span style="color:#ffffff;" class="has-inline-color">%11$s</span></em></p>
18
- <!-- /wp:paragraph --></div>
19
- <!-- /wp:jetpack/layout-grid-column --></div>
20
- <!-- /wp:jetpack/layout-grid -->
21
-
22
- <!-- wp:spacer {"height":50} -->
23
- <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
24
- <!-- /wp:spacer --></div></div>
25
- <!-- /wp:group -->
26
- ';
27
-
28
- return array(
29
- '__file' => 'wp_block',
30
- 'title' => esc_html__( 'List', 'full-site-editing' ),
31
- 'categories' => array( 'list' ),
32
- 'content' => sprintf(
33
- $markup,
34
- esc_html__( 'Beth Silva', 'full-site-editing' ),
35
- esc_html__( 'Christine Russell', 'full-site-editing' ),
36
- esc_html__( 'Hollie Blankenship', 'full-site-editing' ),
37
- esc_html__( 'Monica Humphrey', 'full-site-editing' ),
38
- esc_html__( 'Nettie Peck', 'full-site-editing' ),
39
- esc_html__( 'Brianna Willis', 'full-site-editing' ),
40
- esc_html__( 'Elise Pratt', 'full-site-editing' ),
41
- esc_html__( 'Veronica England', 'full-site-editing' ),
42
- esc_html__( 'Mason Decker', 'full-site-editing' ),
43
- esc_html__( 'Emily Fry', 'full-site-editing' ),
44
- esc_html__( 'Lucie Avila', 'full-site-editing' )
45
- ),
46
- 'viewportWidth' => 1280,
47
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/masonry-gallery.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- /**
3
- * Masonry gallery pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:coblocks/gallery-masonry {"align":"full","gutter":30,"lightbox":true,"gridSize":"lrg"} -->
10
- <div class="wp-block-coblocks-gallery-masonry alignfull"><div class="coblocks-gallery has-caption-style-dark has-gutter has-lightbox"><ul class="has-grid-lrg has-gutter-30 has-gutter-mobile-15"><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-o1qw7pgs2hg-unsplash.jpg?w=748" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-qmmuv7tblsg-unsplash-2.jpg?w=750" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-boe8pa-2mky-unsplash-1.jpg?w=699" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-j-pw0oj5_j4-unsplash-1.jpg?w=750" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-kd10eib3qsc-unsplash.jpg?w=750" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-i4rtg_kk3ny-unsplash-1.jpg?w=615" alt=""/></figure></li><li class="coblocks-gallery--item"><figure class="coblocks-gallery--figure"><img src="https://dotcompatterns.files.wordpress.com/2020/03/simone-hutsch-kqniqx53wsm-unsplash-1.jpg?w=750" alt=""/></figure></li></ul></div></div>
11
- <!-- /wp:coblocks/gallery-masonry -->
12
- ';
13
-
14
- return array(
15
- 'title' => esc_html__( 'Masonry gallery', 'full-site-editing' ),
16
- 'categories' => array( 'gallery' ),
17
- 'content' => $markup,
18
- 'viewportWidth' => 1280,
19
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/multi-column-text-with-headline.php DELETED
@@ -1,110 +0,0 @@
1
- <?php
2
- /**
3
- * Call to Action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:spacer {"height":80} -->
10
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
11
- <!-- /wp:spacer -->
12
-
13
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
14
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
15
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"}}} -->
16
- <p style="line-height:1.5">%1$s</p>
17
- <!-- /wp:paragraph -->
18
-
19
- <!-- wp:heading {"className":"margin-top-none","style":{"typography":{"fontSize":69,"lineHeight":"1.22"}}} -->
20
- <h2 class="margin-top-none" style="line-height:1.22;font-size:69px">%2$s</h2>
21
- <!-- /wp:heading -->
22
-
23
- <!-- wp:spacer {"height":32} -->
24
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
25
- <!-- /wp:spacer --></div>
26
- <!-- /wp:jetpack/layout-grid-column --></div>
27
- <!-- /wp:jetpack/layout-grid -->
28
-
29
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":2,"column1DesktopOffset":1,"column1TabletSpan":2,"column1MobileSpan":4,"column2DesktopSpan":5,"column2TabletSpan":6,"column2MobileSpan":4,"column3DesktopSpan":3,"column3TabletSpan":6,"column3TabletOffset":2,"column3MobileSpan":4,"column4DesktopOffset":2,"column4TabletOffset":3,"className":"column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column3-tablet-grid__span-6 column3-tablet-grid__start-3 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
30
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-5 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column3-tablet-grid__span-6 column3-tablet-grid__start-3 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
31
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph -->
32
- <p><strong>%3$s <br>%4$s</strong><br><strong>%5$s</strong></p>
33
- <!-- /wp:paragraph --></div>
34
- <!-- /wp:jetpack/layout-grid-column -->
35
-
36
- <!-- wp:jetpack/layout-grid-column -->
37
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph -->
38
- <p>%6$s <br><br>%7$s</p>
39
- <!-- /wp:paragraph -->
40
-
41
- <!-- wp:heading {"level":4,"className":"margin-bottom-half","style":{"typography":{"fontSize":29,"lineHeight":"1.1"}}} -->
42
- <h4 class="margin-bottom-half" style="line-height:1.1;font-size:29px">%8$s</h4>
43
- <!-- /wp:heading -->
44
-
45
- <!-- wp:paragraph {"className":"margin-top-half"} -->
46
- <p class="margin-top-half">%9$s<br>%10$s<br>%11$s</p>
47
- <!-- /wp:paragraph -->
48
-
49
- <!-- wp:buttons -->
50
- <div class="wp-block-buttons"><!-- wp:button {"borderRadius":3} -->
51
- <div class="wp-block-button"><a class="wp-block-button__link" style="border-radius:3px">%16$s</a></div>
52
- <!-- /wp:button --></div>
53
- <!-- /wp:buttons --></div>
54
- <!-- /wp:jetpack/layout-grid-column -->
55
-
56
- <!-- wp:jetpack/layout-grid-column -->
57
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:columns -->
58
- <div class="wp-block-columns"><!-- wp:column {"width":25} -->
59
- <div class="wp-block-column" style="flex-basis:25%%"><!-- wp:image {"id":1472,"sizeSlug":"full","className":"is-style-rounded"} -->
60
- <figure class="wp-block-image size-full is-style-rounded"><img src="https://dotcompatterns.files.wordpress.com/2020/06/alexis-chloe-m226gm3bjwc-unsplash-2.jpg?w=300" alt="" class="wp-image-1472"/></figure>
61
- <!-- /wp:image --></div>
62
- <!-- /wp:column -->
63
-
64
- <!-- wp:column {"verticalAlignment":"center","width":75,"className":"margin-left-half"} -->
65
- <div class="wp-block-column is-vertically-aligned-center margin-left-half" style="flex-basis:75%%"><!-- wp:paragraph {"style":{"typography":{"fontSize":17}}} -->
66
- <p style="font-size:17px"><strong>%12$s<br></strong>%13$s</p>
67
- <!-- /wp:paragraph --></div>
68
- <!-- /wp:column --></div>
69
- <!-- /wp:columns -->
70
-
71
- <!-- wp:paragraph {"className":"margin-top-none","style":{"typography":{"fontSize":17}}} -->
72
- <p class="margin-top-none" style="font-size:17px">%14$s</p>
73
- <!-- /wp:paragraph -->
74
-
75
- <!-- wp:paragraph {"style":{"typography":{"fontSize":17}}} -->
76
- <p style="font-size:17px">%15$s </p>
77
- <!-- /wp:paragraph --></div>
78
- <!-- /wp:jetpack/layout-grid-column --></div>
79
- <!-- /wp:jetpack/layout-grid -->
80
-
81
- <!-- wp:spacer {"height":80} -->
82
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
83
- <!-- /wp:spacer -->
84
- ';
85
-
86
- return array(
87
- '__file' => 'wp_block',
88
- 'title' => esc_html__( 'Multi-column Text with Headline', 'full-site-editing' ),
89
- 'categories' => array( 'call-to-action', 'text' ),
90
- 'content' => sprintf(
91
- $markup,
92
- esc_html__( 'Online Lesson', 'full-site-editing' ),
93
- esc_html__( 'Introduction to the Technical Side of Photography', 'full-site-editing' ),
94
- esc_html__( 'May 28, 2021', 'full-site-editing' ),
95
- esc_html__( '12:00 PM (UTC)', 'full-site-editing' ),
96
- esc_html__( '60 Minutes', 'full-site-editing' ),
97
- esc_html__( 'Alyssa will introduce you to the important aspects of the technical side of digital photography. The lesson will teach you how to operate the various features of your digital camera so you can finally know what all those buttons actually do.', 'full-site-editing' ),
98
- esc_html__( 'Bring your questions to the webinar for a live Q&amp;A session.', 'full-site-editing' ),
99
- esc_html__( 'What You&rsquo;ll Learn:', 'full-site-editing' ),
100
- esc_html__( '- Focal Length', 'full-site-editing' ),
101
- esc_html__( '- Shutter Speed / Exposure', 'full-site-editing' ),
102
- esc_html__( '- Aperture / Depth of Field', 'full-site-editing' ),
103
- esc_html__( 'Alyssa Jackson', 'full-site-editing' ),
104
- esc_html__( 'Photographer at GTX', 'full-site-editing' ),
105
- esc_html__( 'I&rsquo;m a natural light photographer specializing in portraits of non-models. I aim for my work to be uniquely beautiful without trying too hard. My passion is to explore my creativity while documenting significant moments in my clients&rsquo; lives.', 'full-site-editing' ),
106
- esc_html__( 'I&rsquo;m based in New York and currently work at GTX Studio. I also shoot a lot of portraiture as well as assignments for agencies.', 'full-site-editing' ),
107
- esc_html__( 'Register now', 'full-site-editing' )
108
- ),
109
- 'viewportWidth' => 1280,
110
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/numbered-list.php DELETED
@@ -1,104 +0,0 @@
1
- <?php
2
- /**
3
- * Numbered List pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":3,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":3,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":3,"column3TabletSpan":4,"column3MobileSpan":4,"column4DesktopSpan":3,"column4TabletSpan":4,"column4MobileSpan":4,"className":"column1-desktop-grid__span-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-7 column3-desktop-grid__row-1 column4-desktop-grid__span-3 column4-desktop-grid__start-10 column4-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__row-2 column4-tablet-grid__span-4 column4-tablet-grid__start-5 column4-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 column4-mobile-grid__span-4 column4-mobile-grid__row-4"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-7 column3-desktop-grid__row-1 column4-desktop-grid__span-3 column4-desktop-grid__start-10 column4-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__row-2 column4-tablet-grid__span-4 column4-tablet-grid__start-5 column4-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 column4-mobile-grid__span-4 column4-mobile-grid__row-4 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"className":"margin-bottom-none","style":{"typography":{"fontSize":82,"lineHeight":"1"},"color":{"text":"#d3d3d3"}}} -->
12
- <p class="margin-bottom-none has-text-color" style="line-height:1;font-size:82px;color:#d3d3d3"><strong>%1$s</strong></p>
13
- <!-- /wp:paragraph -->
14
-
15
- <!-- wp:separator {"className":"is-style-wide margin-top-none margin-bottom-none"} -->
16
- <hr class="wp-block-separator is-style-wide margin-top-none margin-bottom-none"/>
17
- <!-- /wp:separator -->
18
-
19
- <!-- wp:heading {"level":3,"className":"margin-top-half margin-bottom-half","style":{"typography":{"lineHeight":"1.3","fontSize":24}}} -->
20
- <h3 class="margin-top-half margin-bottom-half" style="line-height:1.3;font-size:24px">%2$s</h3>
21
- <!-- /wp:heading -->
22
-
23
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
24
- <p class="margin-top-half" style="font-size:16px">%3$s</p>
25
- <!-- /wp:paragraph --></div>
26
- <!-- /wp:jetpack/layout-grid-column -->
27
-
28
- <!-- wp:jetpack/layout-grid-column -->
29
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"className":"margin-bottom-none","style":{"typography":{"fontSize":82,"lineHeight":"1"},"color":{"text":"#d3d3d3"}}} -->
30
- <p class="margin-bottom-none has-text-color" style="line-height:1;font-size:82px;color:#d3d3d3"><strong>%4$s</strong></p>
31
- <!-- /wp:paragraph -->
32
-
33
- <!-- wp:separator {"className":"is-style-wide margin-top-none margin-bottom-none"} -->
34
- <hr class="wp-block-separator is-style-wide margin-top-none margin-bottom-none"/>
35
- <!-- /wp:separator -->
36
-
37
- <!-- wp:heading {"level":3,"className":"margin-top-half margin-bottom-half","style":{"typography":{"lineHeight":"1.3","fontSize":24}}} -->
38
- <h3 class="margin-top-half margin-bottom-half" style="line-height:1.3;font-size:24px">%5$s</h3>
39
- <!-- /wp:heading -->
40
-
41
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
42
- <p class="margin-top-half" style="font-size:16px">%6$s</p>
43
- <!-- /wp:paragraph --></div>
44
- <!-- /wp:jetpack/layout-grid-column -->
45
-
46
- <!-- wp:jetpack/layout-grid-column -->
47
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"className":"margin-bottom-none","style":{"typography":{"fontSize":82,"lineHeight":"1"},"color":{"text":"#d3d3d3"}}} -->
48
- <p class="margin-bottom-none has-text-color" style="line-height:1;font-size:82px;color:#d3d3d3"><strong>%7$s</strong></p>
49
- <!-- /wp:paragraph -->
50
-
51
- <!-- wp:separator {"className":"is-style-wide margin-top-none margin-bottom-none"} -->
52
- <hr class="wp-block-separator is-style-wide margin-top-none margin-bottom-none"/>
53
- <!-- /wp:separator -->
54
-
55
- <!-- wp:heading {"level":3,"className":"margin-top-half margin-bottom-half","style":{"typography":{"lineHeight":"1.3","fontSize":24}}} -->
56
- <h3 class="margin-top-half margin-bottom-half" style="line-height:1.3;font-size:24px">%8$s</h3>
57
- <!-- /wp:heading -->
58
-
59
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
60
- <p class="margin-top-half" style="font-size:16px">%9$s</p>
61
- <!-- /wp:paragraph --></div>
62
- <!-- /wp:jetpack/layout-grid-column -->
63
-
64
- <!-- wp:jetpack/layout-grid-column -->
65
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"className":"margin-bottom-none","style":{"typography":{"fontSize":82,"lineHeight":"1"},"color":{"text":"#d3d3d3"}}} -->
66
- <p class="margin-bottom-none has-text-color" style="line-height:1;font-size:82px;color:#d3d3d3"><strong>%10$s</strong></p>
67
- <!-- /wp:paragraph -->
68
-
69
- <!-- wp:separator {"className":"is-style-wide margin-top-none margin-bottom-none"} -->
70
- <hr class="wp-block-separator is-style-wide margin-top-none margin-bottom-none"/>
71
- <!-- /wp:separator -->
72
-
73
- <!-- wp:heading {"level":3,"className":"margin-top-half margin-bottom-half","style":{"typography":{"lineHeight":"1.3","fontSize":24}}} -->
74
- <h3 class="margin-top-half margin-bottom-half" style="line-height:1.3;font-size:24px">%11$s</h3>
75
- <!-- /wp:heading -->
76
-
77
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
78
- <p class="margin-top-half" style="font-size:16px">%12$s</p>
79
- <!-- /wp:paragraph --></div>
80
- <!-- /wp:jetpack/layout-grid-column --></div>
81
- <!-- /wp:jetpack/layout-grid -->
82
- ';
83
-
84
- return array(
85
- '__file' => 'wp_block',
86
- 'title' => esc_html__( 'Numbered List', 'full-site-editing' ),
87
- 'categories' => array( 'list' ),
88
- 'content' => sprintf(
89
- $markup,
90
- esc_html__( '01', 'full-site-editing' ),
91
- esc_html__( 'Strategy', 'full-site-editing' ),
92
- esc_html__( 'Always remember in the jungle there’s a lot of them in there, after you overcome them, you will make it to paradise.', 'full-site-editing' ),
93
- esc_html__( '02', 'full-site-editing' ),
94
- esc_html__( 'Design', 'full-site-editing' ),
95
- esc_html__( 'You see the hedges, how I got it shaped up? It’s important to shape up your hedges, it’s like getting a haircut, stay fresh.', 'full-site-editing' ),
96
- esc_html__( '03', 'full-site-editing' ),
97
- esc_html__( 'Success', 'full-site-editing' ),
98
- esc_html__( 'We don’t see them, we will never see them. To be successful you’ve got to work hard, to make history, simple, you’ve got to make it.', 'full-site-editing' ),
99
- esc_html__( '04', 'full-site-editing' ),
100
- esc_html__( 'Grow', 'full-site-editing' ),
101
- esc_html__( 'Look at the sunset. Surround yourself with angels, positive energy, beautiful people, beautiful souls, clean heart, angel.', 'full-site-editing' )
102
- ),
103
- 'viewportWidth' => 1280,
104
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/numbers.php DELETED
@@ -1,55 +0,0 @@
1
- <?php
2
- /**
3
- * Numbers pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":4,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":4,"column3TabletSpan":8,"column3MobileSpan":4,"className":"column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":70}},"className":"margin-bottom-none"} -->
12
- <p style="font-size:70px" class="has-text-align-center margin-bottom-none"><strong>%1$s</strong></p>
13
- <!-- /wp:paragraph -->
14
-
15
- <!-- wp:paragraph {"align":"center","className":"margin-top-none"} -->
16
- <p class="has-text-align-center margin-top-none"><strong>%2$s</strong></p>
17
- <!-- /wp:paragraph --></div>
18
- <!-- /wp:jetpack/layout-grid-column -->
19
-
20
- <!-- wp:jetpack/layout-grid-column -->
21
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":70}},"className":"margin-bottom-none"} -->
22
- <p style="font-size:70px" class="has-text-align-center margin-bottom-none"><strong>%3$s</strong></p>
23
- <!-- /wp:paragraph -->
24
-
25
- <!-- wp:paragraph {"align":"center","className":"margin-top-none"} -->
26
- <p class="has-text-align-center margin-top-none"><strong>%4$s</strong></p>
27
- <!-- /wp:paragraph --></div>
28
- <!-- /wp:jetpack/layout-grid-column -->
29
-
30
- <!-- wp:jetpack/layout-grid-column -->
31
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":70}},"className":"margin-bottom-none"} -->
32
- <p style="font-size:70px" class="has-text-align-center margin-bottom-none"><strong>%5$s</strong></p>
33
- <!-- /wp:paragraph -->
34
-
35
- <!-- wp:paragraph {"align":"center","className":"margin-top-none"} -->
36
- <p class="has-text-align-center margin-top-none"><strong>%6$s</strong></p>
37
- <!-- /wp:paragraph --></div>
38
- <!-- /wp:jetpack/layout-grid-column --></div>
39
- <!-- /wp:jetpack/layout-grid -->
40
- ';
41
-
42
- return array(
43
- 'title' => esc_html__( 'Numbers', 'full-site-editing' ),
44
- 'categories' => array( 'text' ),
45
- 'content' => sprintf(
46
- $markup,
47
- esc_html__( '1,652', 'full-site-editing' ),
48
- esc_html__( 'Volunteers available', 'full-site-editing' ),
49
- esc_html__( '1,132', 'full-site-editing' ),
50
- esc_html__( 'Volunteer opportunities', 'full-site-editing' ),
51
- esc_html__( '1,927', 'full-site-editing' ),
52
- esc_html__( 'Matches last year', 'full-site-editing' )
53
- ),
54
- 'viewportWidth' => 1280,
55
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/podcast-subscription.php DELETED
@@ -1,66 +0,0 @@
1
- <?php
2
- /**
3
- * Podcast pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"customOverlayColor":"#242331","minHeight":350,"align":"full"} -->
10
- <div class="wp-block-cover alignfull has-background-dim" style="background-color:#242331;min-height:350px"><div class="wp-block-cover__inner-container"><!-- wp:jetpack/layout-grid {"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
11
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"><!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":3,"style":{"color":{"text":"#ffffff"}}} -->
13
- <h3 class="has-text-color" style="color:#ffffff">%1$s</h3>
14
- <!-- /wp:heading -->
15
-
16
- <!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} -->
17
- <p class="has-text-color" style="color:#ffffff">%2$s</p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:buttons -->
21
- <div class="wp-block-buttons"><!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
22
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%3$s</a></div>
23
- <!-- /wp:button -->
24
-
25
- <!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
26
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%4$s</a></div>
27
- <!-- /wp:button -->
28
-
29
- <!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
30
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%5$s</a></div>
31
- <!-- /wp:button -->
32
-
33
- <!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
34
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%6$s</a></div>
35
- <!-- /wp:button -->
36
-
37
- <!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
38
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%7$s</a></div>
39
- <!-- /wp:button -->
40
-
41
- <!-- wp:button {"style":{"color":{"text":"#ffffff"}},"className":"is-style-outline"} -->
42
- <div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color" style="color:#ffffff">%8$s</a></div>
43
- <!-- /wp:button --></div>
44
- <!-- /wp:buttons --></div>
45
- <!-- /wp:jetpack/layout-grid-column --></div>
46
- <!-- /wp:jetpack/layout-grid --></div></div>
47
- <!-- /wp:cover -->
48
- ';
49
-
50
- return array(
51
- '__file' => 'wp_block',
52
- 'title' => esc_html__( 'Podcast Subscription', 'full-site-editing' ),
53
- 'categories' => array( 'call-to-action', 'podcast' ),
54
- 'content' => sprintf(
55
- $markup,
56
- esc_html__( 'Never miss an episode', 'full-site-editing' ),
57
- esc_html__( 'Subscribe wherever you enjoy podcasts:', 'full-site-editing' ),
58
- esc_html__( 'Apple', 'full-site-editing' ),
59
- esc_html__( 'Overcast', 'full-site-editing' ),
60
- esc_html__( 'Spotify', 'full-site-editing' ),
61
- esc_html__( 'Google', 'full-site-editing' ),
62
- esc_html__( 'Stitcher', 'full-site-editing' ),
63
- esc_html__( 'RSS', 'full-site-editing' )
64
- ),
65
- 'viewportWidth' => 1280,
66
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/portraits-and-text.php DELETED
@@ -1,92 +0,0 @@
1
- <?php
2
- /**
3
- * Portraits and Text pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":3,"column1DesktopOffset":2,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":3,"column2DesktopOffset":2,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":3,"className":"column1-desktop-grid__span-3 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer -->
12
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:image {"id":1243,"sizeSlug":"large"} -->
16
- <figure class="wp-block-image size-large"><img src="https://dotcompatterns.files.wordpress.com/2020/05/rohit-khadgi-z40duy4wivm-unsplash-1.jpg?w=682" alt="" class="wp-image-1243"/></figure>
17
- <!-- /wp:image -->
18
-
19
- <!-- wp:heading {"level":4,"className":"margin-bottom-half"} -->
20
- <h4 class="margin-bottom-half">%1$s</h4>
21
- <!-- /wp:heading -->
22
-
23
- <!-- wp:paragraph {"className":"margin-top-half","fontSize":"small"} -->
24
- <p class="margin-top-half has-small-font-size">%2$s</p>
25
- <!-- /wp:paragraph -->
26
-
27
- <!-- wp:spacer -->
28
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
29
- <!-- /wp:spacer -->
30
-
31
- <!-- wp:image {"id":489,"sizeSlug":"full"} -->
32
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/04/milan-popovic-konmhdljtni-unsplash.jpg" alt="" class="wp-image-489"/></figure>
33
- <!-- /wp:image -->
34
-
35
- <!-- wp:heading {"level":4,"className":"margin-bottom-half"} -->
36
- <h4 class="margin-bottom-half">%3$s</h4>
37
- <!-- /wp:heading -->
38
-
39
- <!-- wp:paragraph {"className":"margin-top-half","fontSize":"small"} -->
40
- <p class="margin-top-half has-small-font-size">%4$s</p>
41
- <!-- /wp:paragraph --></div>
42
- <!-- /wp:jetpack/layout-grid-column -->
43
-
44
- <!-- wp:jetpack/layout-grid-column -->
45
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":1246,"sizeSlug":"large"} -->
46
- <figure class="wp-block-image size-large"><img src="https://dotcompatterns.files.wordpress.com/2020/05/dani-bayuni-ugnyxpcnnlk-unsplash-1.jpg?w=682" alt="" class="wp-image-1246"/></figure>
47
- <!-- /wp:image -->
48
-
49
- <!-- wp:heading {"level":4,"className":"margin-bottom-half"} -->
50
- <h4 class="margin-bottom-half">%5$s</h4>
51
- <!-- /wp:heading -->
52
-
53
- <!-- wp:paragraph {"className":"margin-top-half","fontSize":"small"} -->
54
- <p class="margin-top-half has-small-font-size">%6$s</p>
55
- <!-- /wp:paragraph -->
56
-
57
- <!-- wp:spacer -->
58
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
59
- <!-- /wp:spacer -->
60
-
61
- <!-- wp:image {"id":488,"sizeSlug":"full"} -->
62
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/04/hatham-py2ljbqsjzu-unsplash.jpg" alt="" class="wp-image-488"/></figure>
63
- <!-- /wp:image -->
64
-
65
- <!-- wp:heading {"level":4,"className":"margin-bottom-half"} -->
66
- <h4 class="margin-bottom-half">%7$s</h4>
67
- <!-- /wp:heading -->
68
-
69
- <!-- wp:paragraph {"className":"margin-top-half","fontSize":"small"} -->
70
- <p class="margin-top-half has-small-font-size">%8$s</p>
71
- <!-- /wp:paragraph --></div>
72
- <!-- /wp:jetpack/layout-grid-column --></div>
73
- <!-- /wp:jetpack/layout-grid -->
74
- ';
75
-
76
- return array(
77
- '__file' => 'wp_block',
78
- 'title' => esc_html__( 'Portraits and Text', 'full-site-editing' ),
79
- 'categories' => array( 'gallery', 'list' ),
80
- 'content' => sprintf(
81
- $markup,
82
- esc_html__( 'Natsuho Kishi', 'full-site-editing' ),
83
- esc_html__( 'Design Director at EJ Solutions focusing on raising the standard of communication online. She has been leading several award-winning branding projects. including Strn.', 'full-site-editing' ),
84
- esc_html__( 'Chris Russell', 'full-site-editing' ),
85
- esc_html__( 'Senior Product Designer at Vaxx and is responsible for transforming UX across the company’s products. Previously, he held leadership roles at TypeTester.', 'full-site-editing' ),
86
- esc_html__( 'Miguel Ángel', 'full-site-editing' ),
87
- esc_html__( 'UX Manager at Clockwork. He formerly pioneered the Design System at Blue Sun, and led the Moonlight at Wonders and Co.. Previously Mason was at Sigma and led the product evolution.', 'full-site-editing' ),
88
- esc_html__( 'Elise Pratt', 'full-site-editing' ),
89
- esc_html__( 'Senior Product Designer at Idea. Previously Senior Design Director at Minova, UX Design Manager at Ryman. Elise’s work has been featured as pioneer in CX as best practice.', 'full-site-editing' )
90
- ),
91
- 'viewportWidth' => 1280,
92
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quote-02.php DELETED
@@ -1,42 +0,0 @@
1
- <?php
2
- /**
3
- * Quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#1a1a1a","text":"#ffffff"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#1a1a1a;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:spacer -->
11
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":8,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":6,"className":"column1-desktop-grid__span-8 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-8 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":34,"lineHeight":1.4}}} -->
17
- <p class="has-text-align-left" style="line-height:1.4;font-size:34px">%1$s</p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:paragraph {"align":"left"} -->
21
- <p class="has-text-align-left">%2$s</p>
22
- <!-- /wp:paragraph --></div>
23
- <!-- /wp:jetpack/layout-grid-column --></div>
24
- <!-- /wp:jetpack/layout-grid -->
25
-
26
- <!-- wp:spacer -->
27
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
28
- <!-- /wp:spacer --></div></div>
29
- <!-- /wp:group -->
30
- ';
31
-
32
- return array(
33
- '__file' => 'wp_block',
34
- 'title' => esc_html__( 'Quote', 'full-site-editing' ),
35
- 'categories' => array( 'quotes', 'text' ),
36
- 'content' => sprintf(
37
- $markup,
38
- esc_html__( '"The artist is the creator of beautiful things. To reveal art and conceal the artist is art&rsquo;s aim. The critic is he who can translate into another manner or a new material his impression of beautiful things."', 'full-site-editing' ),
39
- esc_html__( '— Oscar Wilde', 'full-site-editing' )
40
- ),
41
- 'viewportWidth' => 1280,
42
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quote-03.php DELETED
@@ -1,67 +0,0 @@
1
- <?php
2
- /**
3
- * Quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#767161","text":"#ffffff"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#767161;color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":60} -->
11
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":6,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"fontSize":28,"lineHeight":"1.2"}}} -->
17
- <p style="line-height:1.2;font-size:28px">%1$s</p>
18
- <!-- /wp:paragraph --></div>
19
- <!-- /wp:jetpack/layout-grid-column --></div>
20
- <!-- /wp:jetpack/layout-grid -->
21
-
22
- <!-- wp:spacer {"height":20} -->
23
- <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
24
- <!-- /wp:spacer -->
25
-
26
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
27
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
28
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
29
- <p style="font-size:20px">%2$s</p>
30
- <!-- /wp:paragraph -->
31
-
32
- <!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
33
- <p style="font-size:20px">%3$s</p>
34
- <!-- /wp:paragraph --></div>
35
- <!-- /wp:jetpack/layout-grid-column -->
36
-
37
- <!-- wp:jetpack/layout-grid-column -->
38
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
39
- <p style="font-size:20px">%4$s</p>
40
- <!-- /wp:paragraph -->
41
-
42
- <!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
43
- <p style="font-size:20px">%5$s</p>
44
- <!-- /wp:paragraph --></div>
45
- <!-- /wp:jetpack/layout-grid-column --></div>
46
- <!-- /wp:jetpack/layout-grid -->
47
-
48
- <!-- wp:spacer {"height":60} -->
49
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
50
- <!-- /wp:spacer --></div></div>
51
- <!-- /wp:group -->
52
- ';
53
-
54
- return array(
55
- '__file' => 'wp_block',
56
- 'title' => esc_html__( 'Quote', 'full-site-editing' ),
57
- 'categories' => array( 'quotes', 'text', 'list' ),
58
- 'content' => sprintf(
59
- $markup,
60
- esc_html__( 'What People Are Saying', 'full-site-editing' ),
61
- esc_html__( '“There are few people whom I really love, and still fewer of whom I think well. The more I see of the world, the more am I dissatisfied with it; and every day confirms my belief of the inconsistency of all human characters, and of the little dependence that can be placed on the appearance of merit or sense.”', 'full-site-editing' ),
62
- esc_html__( '— Elizabeth Bennet', 'full-site-editing' ),
63
- esc_html__( '“Vanity and pride are different things, though the words are often used synonymously. A person may be proud without being vain. Pride relates more to our opinion of ourselves, vanity to what we would have others think of us.”', 'full-site-editing' ),
64
- esc_html__( '— Mary Bennet', 'full-site-editing' )
65
- ),
66
- 'viewportWidth' => 1280,
67
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quote-04.php DELETED
@@ -1,40 +0,0 @@
1
- <?php
2
- /**
3
- * Quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"url":"https://dotcompatterns.files.wordpress.com/2020/05/jonny-clow-ngcigmlzxtk-unsplash.jpg","id":1102,"dimRatio":0,"customOverlayColor":"#ffffff","align":"full","className":"has-ffffff-background-color"} -->
10
- <div class="wp-block-cover alignfull has-ffffff-background-color" style="background-image:url(https://dotcompatterns.files.wordpress.com/2020/05/jonny-clow-ngcigmlzxtk-unsplash.jpg);background-color:#ffffff"><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"color":{"background":"#ffffff","text":"#222222"}}} -->
11
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#ffffff;color:#222222"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":50} -->
12
- <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
13
- <!-- /wp:spacer -->
14
-
15
- <!-- wp:heading {"className":"has-text-color","style":{"typography":{"lineHeight":1.4}}} -->
16
- <h2 class="has-text-color" style="line-height:1.4"><em>%1$s</em></h2>
17
- <!-- /wp:heading -->
18
-
19
- <!-- wp:paragraph -->
20
- <p>%2$s</p>
21
- <!-- /wp:paragraph -->
22
-
23
- <!-- wp:spacer {"height":50} -->
24
- <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
25
- <!-- /wp:spacer --></div></div>
26
- <!-- /wp:group --></div></div>
27
- <!-- /wp:cover -->
28
- ';
29
-
30
- return array(
31
- '__file' => 'wp_block',
32
- 'title' => esc_html__( 'Quote', 'full-site-editing' ),
33
- 'categories' => array( 'quotes', 'text', 'list' ),
34
- 'content' => sprintf(
35
- $markup,
36
- esc_html__( '"So many things are possible, just as long as you don&rsquo;t know they are impossible."', 'full-site-editing' ),
37
- esc_html__( '--Norton Juster', 'full-site-editing' )
38
- ),
39
- 'viewportWidth' => 1280,
40
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quote.php DELETED
@@ -1,42 +0,0 @@
1
- <?php
2
- /**
3
- * Quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#ffefe4","text":"#000000"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#ffefe4;color:#000000"><div class="wp-block-group__inner-container"><!-- wp:spacer -->
11
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":8,"column1DesktopOffset":2,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-8 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":42,"lineHeight":1.4}}} -->
17
- <p class="has-text-align-center" style="line-height:1.4;font-size:42px">%1$s</p>
18
- <!-- /wp:paragraph -->
19
-
20
- <!-- wp:paragraph {"align":"center"} -->
21
- <p class="has-text-align-center">%2$s</p>
22
- <!-- /wp:paragraph --></div>
23
- <!-- /wp:jetpack/layout-grid-column --></div>
24
- <!-- /wp:jetpack/layout-grid -->
25
-
26
- <!-- wp:spacer -->
27
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
28
- <!-- /wp:spacer --></div></div>
29
- <!-- /wp:group -->
30
- ';
31
-
32
- return array(
33
- '__file' => 'wp_block',
34
- 'title' => esc_html__( 'Quote', 'full-site-editing' ),
35
- 'categories' => array( 'quotes', 'text' ),
36
- 'content' => sprintf(
37
- $markup,
38
- esc_html__( '"So many things are possible just as long as you don&rsquo;t know they&rsquo;re impossible."', 'full-site-editing' ),
39
- esc_html__( '— Norton Juster', 'full-site-editing' )
40
- ),
41
- 'viewportWidth' => 1280,
42
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quotes-02.php DELETED
@@ -1,94 +0,0 @@
1
- <?php
2
- /**
3
- * Quotes pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#f1f1ee","text":"#000000"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#f1f1ee;color:#000000"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":26} -->
11
- <div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","addGutterEnds":false,"column1DesktopSpan":3,"column1DesktopOffset":1,"column1TabletSpan":3,"column1MobileSpan":4,"column2DesktopSpan":6,"column2DesktopOffset":1,"column2TabletSpan":5,"column2MobileSpan":4,"column3DesktopSpan":2,"column3DesktopOffset":4,"column3TabletSpan":4,"column3TabletOffset":1,"column3MobileSpan":4,"column4DesktopSpan":4,"column4TabletSpan":4,"column4MobileSpan":4,"className":"column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-6 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-6 column2-desktop-grid__row-1 column1-tablet-grid__span-3 column1-tablet-grid__row-1 column2-tablet-grid__span-5 column2-tablet-grid__start-4 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer {"height":20} -->
17
- <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
18
- <!-- /wp:spacer -->
19
-
20
- <!-- wp:heading {"level":3,"style":{"typography":{"fontSize":28,"lineHeight":"1.3"}}} -->
21
- <h3 style="line-height:1.3;font-size:28px"><strong>%1$s</strong></h3>
22
- <!-- /wp:heading --></div>
23
- <!-- /wp:jetpack/layout-grid-column -->
24
-
25
- <!-- wp:jetpack/layout-grid-column -->
26
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer {"height":24} -->
27
- <div style="height:24px" aria-hidden="true" class="wp-block-spacer"></div>
28
- <!-- /wp:spacer -->
29
-
30
- <!-- wp:jetpack/rating-star {"rating":5,"className":"margin-bottom-half"} -->
31
- <figure class="wp-block-jetpack-rating-star margin-bottom-half" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
32
- <!-- /wp:jetpack/rating-star -->
33
-
34
- <!-- wp:paragraph {"className":"margin-top-half margin-bottom-half"} -->
35
- <p class="margin-top-half margin-bottom-half">%2$s</p>
36
- <!-- /wp:paragraph -->
37
-
38
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
39
- <p class="margin-top-half" style="font-size:16px"><strong>Brianna</strong><br>Brighton</p>
40
- <!-- /wp:paragraph -->
41
-
42
- <!-- wp:spacer {"height":30} -->
43
- <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
44
- <!-- /wp:spacer -->
45
-
46
- <!-- wp:jetpack/rating-star {"rating":5,"className":"margin-bottom-half"} -->
47
- <figure class="wp-block-jetpack-rating-star margin-bottom-half" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
48
- <!-- /wp:jetpack/rating-star -->
49
-
50
- <!-- wp:paragraph {"className":"margin-top-half margin-bottom-half"} -->
51
- <p class="margin-top-half margin-bottom-half">%3$s</p>
52
- <!-- /wp:paragraph -->
53
-
54
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
55
- <p class="margin-top-half" style="font-size:16px"><strong>Jayla</strong><br>Hove</p>
56
- <!-- /wp:paragraph -->
57
-
58
- <!-- wp:spacer {"height":30} -->
59
- <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
60
- <!-- /wp:spacer -->
61
-
62
- <!-- wp:jetpack/rating-star {"rating":5,"className":"margin-bottom-half"} -->
63
- <figure class="wp-block-jetpack-rating-star margin-bottom-half" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
64
- <!-- /wp:jetpack/rating-star -->
65
-
66
- <!-- wp:paragraph {"className":"margin-top-half margin-bottom-half"} -->
67
- <p class="margin-top-half margin-bottom-half">%4$s</p>
68
- <!-- /wp:paragraph -->
69
-
70
- <!-- wp:paragraph {"className":"margin-top-half","style":{"typography":{"fontSize":16}}} -->
71
- <p class="margin-top-half" style="font-size:16px"><strong>Ethan</strong><br>Kemp Town</p>
72
- <!-- /wp:paragraph --></div>
73
- <!-- /wp:jetpack/layout-grid-column --></div>
74
- <!-- /wp:jetpack/layout-grid -->
75
-
76
- <!-- wp:spacer -->
77
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
78
- <!-- /wp:spacer --></div></div>
79
- <!-- /wp:group -->
80
- ';
81
-
82
- return array(
83
- '__file' => 'wp_block',
84
- 'title' => esc_html__( 'Quotes', 'full-site-editing' ),
85
- 'categories' => array( 'quotes', 'text', 'list' ),
86
- 'content' => sprintf(
87
- $markup,
88
- esc_html__( 'What Our Customers Are Saying', 'full-site-editing' ),
89
- esc_html__( 'Reasonably priced good food and drink. The menu favorite that keeps me coming back is the seafood chowder. Really tasty, nice and hot. It&rsquo;s perfect for a chilly winter night! Stuff is always very attentive and helpful. I always enjoy and relax with the calm atmosphere.', 'full-site-editing' ),
90
- esc_html__( 'Great food at a great price! Love the seafood plates as well as the salads. Excellent eating experience from walking in the door and being greeted by stuff, seated and drink order taken, was probably 5 minutes. Server was very helpful and friendly. We&rsquo;ll definitely come back!', 'full-site-editing' ),
91
- esc_html__( 'The place is awesome with attending staff. Excellent and authentic flavors. Will surely visit this place again. It also is an excellent place to have a business conversation. We really recommend this restaurant.', 'full-site-editing' )
92
- ),
93
- 'viewportWidth' => 1280,
94
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/quotes.php DELETED
@@ -1,89 +0,0 @@
1
- <?php
2
- /**
3
- * Quotes pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:spacer -->
10
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
11
- <!-- /wp:spacer -->
12
-
13
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":12,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
14
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
15
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":3,"style":{"typography":{"lineHeight":"1.2","fontSize":20}}} -->
16
- <h3 style="line-height:1.2;font-size:20px"><strong>%1$s</strong></h3>
17
- <!-- /wp:heading --></div>
18
- <!-- /wp:jetpack/layout-grid-column --></div>
19
- <!-- /wp:jetpack/layout-grid -->
20
-
21
- <!-- wp:spacer {"height":60} -->
22
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
23
- <!-- /wp:spacer -->
24
-
25
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":4,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":4,"column3TabletSpan":8,"column3MobileSpan":4,"className":"column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
26
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
27
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":6,"style":{"typography":{"lineHeight":"1.5","fontSize":16}}} -->
28
- <h6 style="line-height:1.5;font-size:16px"><strong>%2$s</strong></h6>
29
- <!-- /wp:heading -->
30
-
31
- <!-- wp:paragraph -->
32
- <p>%3$s</p>
33
- <!-- /wp:paragraph -->
34
-
35
- <!-- wp:jetpack/rating-star {"rating":5} -->
36
- <figure class="wp-block-jetpack-rating-star" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
37
- <!-- /wp:jetpack/rating-star --></div>
38
- <!-- /wp:jetpack/layout-grid-column -->
39
-
40
- <!-- wp:jetpack/layout-grid-column -->
41
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":6,"style":{"typography":{"fontSize":15,"lineHeight":"1.5"}}} -->
42
- <h6 style="line-height:1.5;font-size:15px"><strong>%4$s</strong></h6>
43
- <!-- /wp:heading -->
44
-
45
- <!-- wp:paragraph -->
46
- <p>%5$s </p>
47
- <!-- /wp:paragraph -->
48
-
49
- <!-- wp:jetpack/rating-star {"rating":5,"className":"margin-bottom-half"} -->
50
- <figure class="wp-block-jetpack-rating-star margin-bottom-half" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
51
- <!-- /wp:jetpack/rating-star --></div>
52
- <!-- /wp:jetpack/layout-grid-column -->
53
-
54
- <!-- wp:jetpack/layout-grid-column -->
55
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":6,"style":{"typography":{"fontSize":16}}} -->
56
- <h6 style="font-size:16px"><strong>%6$s</strong></h6>
57
- <!-- /wp:heading -->
58
-
59
- <!-- wp:paragraph -->
60
- <p>%7$s </p>
61
- <!-- /wp:paragraph -->
62
-
63
- <!-- wp:jetpack/rating-star {"rating":5,"className":"margin-bottom-half"} -->
64
- <figure class="wp-block-jetpack-rating-star margin-bottom-half" style="text-align:left"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></figure>
65
- <!-- /wp:jetpack/rating-star --></div>
66
- <!-- /wp:jetpack/layout-grid-column --></div>
67
- <!-- /wp:jetpack/layout-grid -->
68
-
69
- <!-- wp:spacer -->
70
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
71
- <!-- /wp:spacer -->
72
- ';
73
-
74
- return array(
75
- '__file' => 'wp_block',
76
- 'title' => esc_html__( 'Quotes', 'full-site-editing' ),
77
- 'categories' => array( 'quotes', 'text', 'list' ),
78
- 'content' => sprintf(
79
- $markup,
80
- esc_html__( 'What Our Customers Are Saying', 'full-site-editing' ),
81
- esc_html__( 'LIZ S.', 'full-site-editing' ),
82
- esc_html__( 'Working with Alisa on my fitness has been great. I always feels like it’s had a thorough workout. I very much appreciate the help and advice. I can’t recommend this place enough. Thank you, Alisa!', 'full-site-editing' ),
83
- esc_html__( 'MIKE A.', 'full-site-editing' ),
84
- esc_html__( 'I&rsquo;ve been training with Alisa for about 9 month now. The best part about training with her is the nutrition info that Alisa has given me. I&rsquo;ve learnt so much about what I should be eating. I feel so much fitter now.', 'full-site-editing' ),
85
- esc_html__( 'KAREN P.', 'full-site-editing' ),
86
- esc_html__( 'I can&rsquo;t thank her enough for working with me at my level and keeping me motivated. She has dealt with my out of shape and not so young body extremely well. I couldn&rsquo;t ask for a better instructor. Thank you.', 'full-site-editing' )
87
- ),
88
- 'viewportWidth' => 1280,
89
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/recent-posts-02.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /**
3
- * Recent Posts pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":2,"column1DesktopOffset":1,"column1TabletSpan":2,"column1MobileSpan":4,"column2DesktopSpan":8,"column2TabletSpan":6,"column2MobileSpan":4,"column3DesktopOffset":1,"column3TabletOffset":2,"className":"column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-8 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-8 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":5} -->
12
- <h5><span class="uppercase">%1$s</span></h5>
13
- <!-- /wp:heading --></div>
14
- <!-- /wp:jetpack/layout-grid-column -->
15
-
16
- <!-- wp:jetpack/layout-grid-column -->
17
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:a8c/blog-posts {"imageShape":"uncropped","moreButton":true,"showAvatar":false,"postLayout":"grid","columns":2,"postsToShow":4,"typeScale":3} /--></div>
18
- <!-- /wp:jetpack/layout-grid-column --></div>
19
- <!-- /wp:jetpack/layout-grid -->
20
- ';
21
-
22
- return array(
23
- 'title' => esc_html__( 'Recent Posts', 'full-site-editing' ),
24
- 'categories' => array( 'blog' ),
25
- 'content' => sprintf(
26
- $markup,
27
- esc_html__( 'Latest Posts', 'full-site-editing' )
28
- ),
29
- 'viewportWidth' => 1280,
30
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/recent-posts.php DELETED
@@ -1,21 +0,0 @@
1
- <?php
2
- /**
3
- * Recent Posts pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":10,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":2,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"><!-- wp:jetpack/layout-grid-column -->
11
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:a8c/blog-posts {"showAuthor":false,"showCategory":true,"postLayout":"grid","typeScale":3} /--></div>
12
- <!-- /wp:jetpack/layout-grid-column --></div>
13
- <!-- /wp:jetpack/layout-grid -->
14
- ';
15
-
16
- return array(
17
- 'title' => esc_html__( 'Recent Posts', 'full-site-editing' ),
18
- 'categories' => array( 'blog' ),
19
- 'content' => $markup,
20
- 'viewportWidth' => 1280,
21
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/registration-form.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
- /**
3
- * Contact pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"background":"#0f1c18","text":"#e2e2e2"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#0f1c18;color:#e2e2e2"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":80} -->
11
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","addGutterEnds":false,"column1DesktopSpan":6,"column1DesktopOffset":1,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":6,"className":"column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"className":"margin-bottom-half","style":{"typography":{"fontSize":50},"color":{"text":"#ffffff"}}} -->
17
- <h2 class="margin-bottom-half has-text-color" style="font-size:50px;color:#ffffff">%1$s</h2>
18
- <!-- /wp:heading -->
19
-
20
- <!-- wp:paragraph {"className":"margin-top-half margin-bottom-none"} -->
21
- <p class="margin-top-half margin-bottom-none">%2$s</p>
22
- <!-- /wp:paragraph --></div>
23
- <!-- /wp:jetpack/layout-grid-column --></div>
24
- <!-- /wp:jetpack/layout-grid -->
25
-
26
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","addGutterEnds":false,"column1DesktopSpan":6,"column1DesktopOffset":1,"column1TabletSpan":5,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":3,"column2MobileSpan":4,"column3DesktopOffset":2,"column3TabletOffset":1,"className":"column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-5 column1-tablet-grid__row-1 column2-tablet-grid__span-3 column2-tablet-grid__start-6 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
27
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-5 column1-tablet-grid__row-1 column2-tablet-grid__span-3 column2-tablet-grid__start-6 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
28
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer {"height":24} -->
29
- <div style="height:24px" aria-hidden="true" class="wp-block-spacer"></div>
30
- <!-- /wp:spacer -->
31
-
32
- <!-- wp:jetpack/contact-form {"subject":"%3$s"} -->
33
- <!-- wp:jetpack/field-name {"required":true} /-->
34
-
35
- <!-- wp:jetpack/field-email {"required":true} /-->
36
-
37
- <!-- wp:jetpack/field-telephone {"label":"Phone"} /-->
38
-
39
- <!-- wp:jetpack/button {"element":"button","text":"Register","customTextColor":"#0f1c18","customBackgroundColor":"#b89f7e","borderRadius":3} /-->
40
- <!-- /wp:jetpack/contact-form --></div>
41
- <!-- /wp:jetpack/layout-grid-column -->
42
-
43
- <!-- wp:jetpack/layout-grid-column -->
44
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:spacer {"height":54} -->
45
- <div style="height:54px" aria-hidden="true" class="wp-block-spacer"></div>
46
- <!-- /wp:spacer -->
47
-
48
- <!-- wp:paragraph {"style":{"typography":{"fontSize":17}}} -->
49
- <p style="font-size:17px">%4$s<br>- <em>%5$s</em></p>
50
- <!-- /wp:paragraph -->
51
-
52
- <!-- wp:paragraph {"style":{"typography":{"fontSize":17}}} -->
53
- <p style="font-size:17px">%6$s<br>- <em>%7$s</em></p>
54
- <!-- /wp:paragraph --></div>
55
- <!-- /wp:jetpack/layout-grid-column --></div>
56
- <!-- /wp:jetpack/layout-grid -->
57
-
58
- <!-- wp:spacer {"height":80} -->
59
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
60
- <!-- /wp:spacer --></div></div>
61
- <!-- /wp:group -->
62
- ';
63
-
64
- return array(
65
- '__file' => 'wp_block',
66
- 'title' => esc_html__( 'Registration Form', 'full-site-editing' ),
67
- 'categories' => array( 'call-to-action', 'contact' ),
68
- 'content' => sprintf(
69
- $markup,
70
- esc_html__( 'Register to Join Us', 'full-site-editing' ),
71
- esc_html__( 'Seats are limited, so be sure to sign up soon to reserve your spot!', 'full-site-editing' ),
72
- esc_html__( 'A new registration from your website', 'full-site-editing' ),
73
- esc_html__( '“I really enjoyed the lesson. I certainly would recommend this lesson to total beginners and to people like myself who need to consolidate the knowledge that they have attained over time.”', 'full-site-editing' ),
74
- esc_html__( 'Beth S.', 'full-site-editing' ),
75
- esc_html__( '“The lesson was excellent and well structured. I now have a much better grounding in digital photography, understand the strength and weakness of my camera. It was the best way to flatten out a steep learning curve!”', 'full-site-editing' ),
76
- esc_html__( 'Mason D.', 'full-site-editing' )
77
- ),
78
- 'viewportWidth' => 1280,
79
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/subscription-02.php DELETED
@@ -1,83 +0,0 @@
1
- <?php
2
- /**
3
- * Subscription pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:group {"align":"full","style":{"color":{"text":"#043959","background":"#ffbe0b"}}} -->
10
- <div class="wp-block-group alignfull has-text-color has-background" style="background-color:#ffbe0b;color:#043959"><div class="wp-block-group__inner-container"><!-- wp:spacer {"height":60} -->
11
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":2,"column1DesktopOffset":1,"column1TabletSpan":2,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":6,"column2MobileSpan":4,"column3DesktopSpan":4,"column3TabletSpan":6,"column3TabletOffset":2,"column3MobileSpan":4,"column4DesktopOffset":1,"column4TabletOffset":2,"className":"column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-8 column3-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column3-tablet-grid__span-6 column3-tablet-grid__start-3 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-2 column1-desktop-grid__start-2 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-4 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-8 column3-desktop-grid__row-1 column1-tablet-grid__span-2 column1-tablet-grid__row-1 column2-tablet-grid__span-6 column2-tablet-grid__start-3 column2-tablet-grid__row-1 column3-tablet-grid__span-6 column3-tablet-grid__start-3 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":28,"lineHeight":"1.2"},"color":{"text":"#000000"}}} -->
17
- <h3 class="has-text-color" style="line-height:1.2;font-size:28px;color:#000000">%1$s</h3>
18
- <!-- /wp:heading --></div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"style":{"color":{"text":"#000000"}}} -->
23
- <p class="has-text-color" style="color:#000000">%2$s</p>
24
- <!-- /wp:paragraph -->
25
-
26
- <!-- wp:jetpack/subscriptions {"subscribePlaceholder":"Email Address","buttonOnNewLine":true,"submitButtonText":"%3$s","buttonBackgroundColor":"primary","customButtonBackgroundColor":"#000000","textColor":"background","customTextColor":"#ffbe0b"} -->
27
- <div class="wp-block-jetpack-subscriptions wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions__use-newline">
28
- [jetpack_subscription_form
29
- subscribe_placeholder="Email Address"
30
- show_subscribers_total="false"
31
- button_on_newline="true"
32
- submit_button_text="Sign up"
33
- custom_background_emailfield_color="undefined"
34
- custom_background_button_color="#000000"
35
- custom_text_button_color="#ffbe0b"
36
- custom_font_size="16"
37
- custom_border_radius="0"
38
- custom_border_weight="1"
39
- custom_border_color="undefined"
40
- custom_padding="15"
41
- custom_spacing="10"
42
- submit_button_classes="has-text-color has-background-color has-background has-primary-background-color"
43
- email_field_classes=""
44
- show_only_email_and_button="true"
45
- ]</div>
46
- <!-- /wp:jetpack/subscriptions --></div>
47
- <!-- /wp:jetpack/layout-grid-column -->
48
-
49
- <!-- wp:jetpack/layout-grid-column -->
50
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:social-links {"className":"is-style-default"} -->
51
- <ul class="wp-block-social-links is-style-default"><!-- wp:social-link {"url":"https://wordpress.org","service":"wordpress"} /-->
52
-
53
- <!-- wp:social-link {"url":"https://facebook.com/","service":"facebook"} /-->
54
-
55
- <!-- wp:social-link {"url":"https://twitter.com/","service":"twitter"} /-->
56
-
57
- <!-- wp:social-link {"url":"https://instagram.com/","service":"instagram"} /-->
58
-
59
- <!-- wp:social-link {"url":"https://linkedin.com/","service":"linkedin"} /-->
60
-
61
- <!-- wp:social-link {"url":"https://youtube.com/","service":"youtube"} /--></ul>
62
- <!-- /wp:social-links --></div>
63
- <!-- /wp:jetpack/layout-grid-column --></div>
64
- <!-- /wp:jetpack/layout-grid -->
65
-
66
- <!-- wp:spacer {"height":60} -->
67
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
68
- <!-- /wp:spacer --></div></div>
69
- <!-- /wp:group -->
70
- ';
71
-
72
- return array(
73
- '__file' => 'wp_block',
74
- 'title' => esc_html__( 'Subscription', 'full-site-editing' ),
75
- 'categories' => array( 'call-to-action', 'subscribe' ),
76
- 'content' => sprintf(
77
- $markup,
78
- esc_html__( 'Follow Me', 'full-site-editing' ),
79
- esc_html__( 'Get new content delivered directly to your inbox.', 'full-site-editing' ),
80
- esc_html__( 'Sign up', 'full-site-editing' )
81
- ),
82
- 'viewportWidth' => 1280,
83
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/subscription.php DELETED
@@ -1,60 +0,0 @@
1
- <?php
2
- /**
3
- * Subscription pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:cover {"url":"https://dotcompatterns.files.wordpress.com/2020/05/andy-chilton-0jfvex0c778-unsplash.jpg","id":1047,"dimRatio":30,"focalPoint":{"x":0.5,"y":"0.85"},"align":"full"} -->
10
- <div class="wp-block-cover alignfull has-background-dim-30 has-background-dim" style="background-image:url(https://dotcompatterns.files.wordpress.com/2020/05/andy-chilton-0jfvex0c778-unsplash.jpg);background-position:50%% 85%%"><div class="wp-block-cover__inner-container"><!-- wp:spacer -->
11
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
12
- <!-- /wp:spacer -->
13
-
14
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":6,"column1DesktopOffset":3,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopOffset":6,"className":"column1-desktop-grid__span-6 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
15
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"><!-- wp:jetpack/layout-grid-column -->
16
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:heading {"level":3,"style":{"color":{"text":"#ffffff"}}} -->
17
- <h3 class="has-text-color" style="color:#ffffff">%1$s</h3>
18
- <!-- /wp:heading -->
19
-
20
- <!-- wp:jetpack/subscriptions {"subscribePlaceholder":"Email Address","buttonOnNewLine":true,"submitButtonText":"%2$s","buttonBackgroundColor":"primary","customButtonBackgroundColor":"#000000","textColor":"background","customTextColor":"#ffffff"} -->
21
- <div class="wp-block-jetpack-subscriptions wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions__use-newline">
22
- [jetpack_subscription_form
23
- subscribe_placeholder="Email Address"
24
- show_subscribers_total="false"
25
- button_on_newline="true"
26
- submit_button_text="Sign up"
27
- custom_background_emailfield_color="undefined"
28
- custom_background_button_color="#000000"
29
- custom_text_button_color="#ffffff"
30
- custom_font_size="16"
31
- custom_border_radius="0"
32
- custom_border_weight="1"
33
- custom_border_color="undefined"
34
- custom_padding="15"
35
- custom_spacing="10"
36
- submit_button_classes="has-text-color has-background-color has-background has-primary-background-color"
37
- email_field_classes=""
38
- show_only_email_and_button="true"
39
- ]</div>
40
- <!-- /wp:jetpack/subscriptions --></div>
41
- <!-- /wp:jetpack/layout-grid-column --></div>
42
- <!-- /wp:jetpack/layout-grid -->
43
-
44
- <!-- wp:spacer -->
45
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
46
- <!-- /wp:spacer --></div></div>
47
- <!-- /wp:cover -->
48
- ';
49
-
50
- return array(
51
- '__file' => 'wp_block',
52
- 'title' => esc_html__( 'Subscription', 'full-site-editing' ),
53
- 'categories' => array( 'call-to-action', 'subscribe' ),
54
- 'content' => sprintf(
55
- $markup,
56
- esc_html__( 'Get new recipes delivered directly to your inbox.', 'full-site-editing' ),
57
- esc_html__( 'Sign up', 'full-site-editing' )
58
- ),
59
- 'viewportWidth' => 1280,
60
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/three-columns-and-image.php DELETED
@@ -1,80 +0,0 @@
1
- <?php
2
- /**
3
- * Call to action pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":9,"column1DesktopOffset":3,"column1TabletSpan":8,"column1MobileSpan":4,"column2DesktopSpan":3,"column2DesktopOffset":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":3,"column3TabletSpan":8,"column3MobileSpan":4,"column4DesktopOffset":2,"className":"column1-desktop-grid__span-9 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-9 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:paragraph {"style":{"typography":{"fontSize":50}}} -->
14
- <p style="font-size:50px"><strong>%1$s</strong></p>
15
- <!-- /wp:paragraph -->
16
- </div>
17
- <!-- /wp:jetpack/layout-grid-column -->
18
- </div>
19
- <!-- /wp:jetpack/layout-grid -->
20
-
21
- <!-- wp:jetpack/layout-grid {"column1DesktopSpan":3,"column1DesktopOffset":3,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":3,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":3,"column3TabletSpan":4,"column3MobileSpan":4,"column4DesktopOffset":2,"column4TabletOffset":4,"className":"column1-desktop-grid__span-3 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-10 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
22
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-3 column1-desktop-grid__start-4 column1-desktop-grid__row-1 column2-desktop-grid__span-3 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column3-desktop-grid__span-3 column3-desktop-grid__start-10 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-4 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3">
23
- <!-- wp:jetpack/layout-grid-column -->
24
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
25
- <!-- wp:paragraph {"style":{"typography":{"fontSize":14}}} -->
26
- <p style="font-size:14px">%2$s</p>
27
- <!-- /wp:paragraph -->
28
- </div>
29
- <!-- /wp:jetpack/layout-grid-column -->
30
-
31
- <!-- wp:jetpack/layout-grid-column -->
32
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
33
- <!-- wp:paragraph {"style":{"typography":{"fontSize":14}}} -->
34
- <p style="font-size:14px">%3$s</p>
35
- <!-- /wp:paragraph -->
36
- </div>
37
- <!-- /wp:jetpack/layout-grid-column -->
38
-
39
- <!-- wp:jetpack/layout-grid-column -->
40
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
41
- <!-- wp:paragraph {"style":{"typography":{"fontSize":14}}} -->
42
- <p style="font-size:14px">%4$s</p>
43
- <!-- /wp:paragraph -->
44
- </div>
45
- <!-- /wp:jetpack/layout-grid-column -->
46
- </div>
47
- <!-- /wp:jetpack/layout-grid -->
48
-
49
- <!-- wp:spacer {"height":32} -->
50
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
51
- <!-- /wp:spacer -->
52
-
53
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":12,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
54
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-12 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap">
55
- <!-- wp:jetpack/layout-grid-column -->
56
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
57
- <!-- wp:image {"sizeSlug":"full"} -->
58
- <figure class="wp-block-image size-full">
59
- <img src="%5$s" alt=""/>
60
- </figure>
61
- <!-- /wp:image -->
62
- </div>
63
- <!-- /wp:jetpack/layout-grid-column -->
64
- </div>
65
- <!-- /wp:jetpack/layout-grid -->
66
- ';
67
-
68
- return array(
69
- 'title' => esc_html__( 'Three columns', 'full-site-editing' ),
70
- 'categories' => array( 'images' ),
71
- 'content' => sprintf(
72
- $markup,
73
- esc_html__( 'Salainis', 'full-site-editing' ),
74
- esc_html__( 'I had learned already many of the Outland methods of communicating by forest notes rather than trust to the betraying, high-pitched human voice.', 'full-site-editing' ),
75
- esc_html__( 'None of these was of more use to me than the call for refuge. If any Outlier wished to be private in his place, he raised that call, which all who were within hearing answered.', 'full-site-editing' ),
76
- esc_html__( 'Then whoever was on his way from that placed hurried, and whoever was coming toward it stayed where he was until he had permission to move on.', 'full-site-editing' ),
77
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/kristaps-ungurs-trgv9atxume-unsplash-1.jpg' )
78
- ),
79
- 'viewportWidth' => 1280,
80
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/three-images-side-by-side.php DELETED
@@ -1,49 +0,0 @@
1
- <?php
2
- /**
3
- * Three images side-by-side pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":4,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopSpan":4,"column3TabletSpan":8,"column3MobileSpan":4,"className":"column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-4 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-5 column2-desktop-grid__row-1 column3-desktop-grid__span-4 column3-desktop-grid__start-9 column3-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column3-tablet-grid__span-8 column3-tablet-grid__row-2 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 column3-mobile-grid__span-4 column3-mobile-grid__row-3 wp-block-jetpack-layout-gutter__nowrap">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:image {"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full">
15
- <img src="https://dotcompatterns.files.wordpress.com/2020/03/taneli-lahtinen-odtdohyi6vw-unsplash.jpg" alt=""/>
16
- </figure>
17
- <!-- /wp:image -->
18
- </div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
23
- <!-- wp:image {"sizeSlug":"full"} -->
24
- <figure class="wp-block-image size-full">
25
- <img src="https://dotcompatterns.files.wordpress.com/2020/03/taneli-lahtinen-utepqzzprmk-unsplash.jpg" alt=""/>
26
- </figure>
27
- <!-- /wp:image -->
28
- </div>
29
- <!-- /wp:jetpack/layout-grid-column -->
30
-
31
- <!-- wp:jetpack/layout-grid-column -->
32
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
33
- <!-- wp:image {"sizeSlug":"full"} -->
34
- <figure class="wp-block-image size-full">
35
- <img src="https://dotcompatterns.files.wordpress.com/2020/03/taneli-lahtinen-qfnbdwu6ijw-unsplash.jpg" alt=""/>
36
- </figure>
37
- <!-- /wp:image -->
38
- </div>
39
- <!-- /wp:jetpack/layout-grid-column -->
40
- </div>
41
- <!-- /wp:jetpack/layout-grid -->
42
- ';
43
-
44
- return array(
45
- 'title' => esc_html__( 'Three images side-by-side', 'full-site-editing' ),
46
- 'categories' => array( 'gallery', 'images' ),
47
- 'content' => $markup,
48
- 'viewportWidth' => 1280,
49
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/three-quotes.php DELETED
@@ -1,93 +0,0 @@
1
- <?php
2
- /**
3
- * Quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:columns {"align":"wide"} -->
10
- <div class="wp-block-columns alignwide"><!-- wp:column {"width":33.33} -->
11
- <div class="wp-block-column" style="flex-basis:33.33%%"><!-- wp:heading -->
12
- <h2>%1$s</h2>
13
- <!-- /wp:heading --></div>
14
- <!-- /wp:column -->
15
-
16
- <!-- wp:column {"width":66.66} -->
17
- <div class="wp-block-column" style="flex-basis:66.66%%"></div>
18
- <!-- /wp:column --></div>
19
- <!-- /wp:columns -->
20
-
21
- <!-- wp:columns {"align":"wide"} -->
22
- <div class="wp-block-columns alignwide"><!-- wp:column -->
23
- <div class="wp-block-column"><!-- wp:separator {"className":"is-style-wide"} -->
24
- <hr class="wp-block-separator is-style-wide"/>
25
- <!-- /wp:separator -->
26
-
27
- <!-- wp:paragraph {"style":{"typography":{"fontSize":16}}} -->
28
- <p style="font-size:16px"><strong>%2$s</strong></p>
29
- <!-- /wp:paragraph -->
30
-
31
- <!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
32
- <p style="font-size:20px"><em>%3$s </em></p>
33
- <!-- /wp:paragraph -->
34
-
35
- <!-- wp:spacer {"height":32} -->
36
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
37
- <!-- /wp:spacer --></div>
38
- <!-- /wp:column -->
39
-
40
- <!-- wp:column -->
41
- <div class="wp-block-column"><!-- wp:separator {"className":"is-style-wide"} -->
42
- <hr class="wp-block-separator is-style-wide"/>
43
- <!-- /wp:separator -->
44
-
45
- <!-- wp:paragraph {"style":{"typography":{"fontSize":16}}} -->
46
- <p style="font-size:16px"><strong>%4$s</strong></p>
47
- <!-- /wp:paragraph -->
48
-
49
- <!-- wp:paragraph {"style":{"typography":{"lineHeight":1.4,"fontSize":20}}} -->
50
- <p style="line-height:1.4;font-size:20px"><em>%5$s </em></p>
51
- <!-- /wp:paragraph -->
52
-
53
- <!-- wp:spacer {"height":32} -->
54
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
55
- <!-- /wp:spacer --></div>
56
- <!-- /wp:column -->
57
-
58
- <!-- wp:column -->
59
- <div class="wp-block-column"><!-- wp:separator {"className":"is-style-wide"} -->
60
- <hr class="wp-block-separator is-style-wide"/>
61
- <!-- /wp:separator -->
62
-
63
- <!-- wp:paragraph {"style":{"typography":{"fontSize":16}}} -->
64
- <p style="font-size:16px"><strong>%6$s</strong></p>
65
- <!-- /wp:paragraph -->
66
-
67
- <!-- wp:paragraph {"style":{"typography":{"fontSize":20}}} -->
68
- <p style="font-size:20px"><em>%7$s</em></p>
69
- <!-- /wp:paragraph -->
70
-
71
- <!-- wp:spacer {"height":32} -->
72
- <div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>
73
- <!-- /wp:spacer --></div>
74
- <!-- /wp:column --></div>
75
- <!-- /wp:columns -->
76
- ';
77
-
78
- return array(
79
- '__file' => 'wp_block',
80
- 'title' => esc_html__( 'Three Quotes', 'full-site-editing' ),
81
- 'categories' => array( 'quotes', 'text', 'list' ),
82
- 'content' => sprintf(
83
- $markup,
84
- esc_html__( 'What Our Customers are Saying', 'full-site-editing' ),
85
- esc_html__( 'Beverly Mattingdale', 'full-site-editing' ),
86
- esc_html__( '“The audio quality is noticeably more amazing than everything else in my studio!”', 'full-site-editing' ),
87
- esc_html__( 'Jefferson Thorpe', 'full-site-editing' ),
88
- esc_html__( '“I was instantly blown away by their sound design and consistency.”', 'full-site-editing' ),
89
- esc_html__( 'Calvin Tristan', 'full-site-editing' ),
90
- esc_html__( '“Utterly impressive—nothing more needs to be said about these folks.”', 'full-site-editing' )
91
- ),
92
- 'viewportWidth' => 1280,
93
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/tiled-mosaic-gallery.php DELETED
@@ -1,20 +0,0 @@
1
- <?php
2
- /**
3
- * Tiled Mosaic Gallery pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/tiled-gallery {"align":"full","ids":[651,646,648,650,649,666]} -->
10
- <div class="wp-block-jetpack-tiled-gallery alignfull is-style-rectangular"><div class="tiled-gallery__gallery"><div class="tiled-gallery__row"><div class="tiled-gallery__col"><figure class="tiled-gallery__item"><img alt="" data-height="2000" data-id="651" data-link="https://dotcompatterns.wordpress.com/adam-birkett-qrwadbcqysc-unsplash/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/adam-birkett-qrwadbcqysc-unsplash-1.jpg" data-width="1333" src="https://dotcompatterns.files.wordpress.com/2020/04/adam-birkett-qrwadbcqysc-unsplash-1.jpg"/></figure></div><div class="tiled-gallery__col"><figure class="tiled-gallery__item"><img alt="" data-height="1414" data-id="646" data-link="https://dotcompatterns.wordpress.com/josh-nuttall-piwu5xnvxpk-unsplash/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/josh-nuttall-piwu5xnvxpk-unsplash-1.jpg" data-width="2000" src="https://dotcompatterns.files.wordpress.com/2020/04/josh-nuttall-piwu5xnvxpk-unsplash-1.jpg"/></figure><figure class="tiled-gallery__item"><img alt="" data-height="1335" data-id="648" data-link="https://dotcompatterns.wordpress.com/alexander-andrews-zw07kvdahpw-unsplash/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/alexander-andrews-zw07kvdahpw-unsplash-1.jpg" data-width="2000" src="https://dotcompatterns.files.wordpress.com/2020/04/alexander-andrews-zw07kvdahpw-unsplash-1.jpg"/></figure></div><div class="tiled-gallery__col"><figure class="tiled-gallery__item"><img alt="" data-height="2000" data-id="650" data-link="https://dotcompatterns.wordpress.com/allec-gomes-on-feed-dmlidt7xzna-unsplash/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/allec-gomes-on-feed-dmlidt7xzna-unsplash-1.jpg" data-width="1697" src="https://dotcompatterns.files.wordpress.com/2020/04/allec-gomes-on-feed-dmlidt7xzna-unsplash-1.jpg"/></figure></div></div><div class="tiled-gallery__row"><div class="tiled-gallery__col"><figure class="tiled-gallery__item"><img alt="" data-height="2000" data-id="649" data-link="https://dotcompatterns.wordpress.com/eleventh-wave-l-obc8t32vm-unsplash/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/eleventh-wave-l-obc8t32vm-unsplash-2.jpg" data-width="1333" src="https://dotcompatterns.files.wordpress.com/2020/04/eleventh-wave-l-obc8t32vm-unsplash-2.jpg"/></figure></div><div class="tiled-gallery__col"><figure class="tiled-gallery__item"><img alt="" data-height="1522" data-id="666" data-link="https://dotcompatterns.wordpress.com/jeremy-perkins-v3dr-y7uh24-unsplash-2-3/" data-url="https://dotcompatterns.files.wordpress.com/2020/04/jeremy-perkins-v3dr-y7uh24-unsplash-2-3.jpg" data-width="2402" src="https://dotcompatterns.files.wordpress.com/2020/04/jeremy-perkins-v3dr-y7uh24-unsplash-2-3.jpg"/></figure></div></div></div></div>
11
- <!-- /wp:jetpack/tiled-gallery -->
12
- ';
13
-
14
- return array(
15
- '__file' => 'wp_block',
16
- 'title' => esc_html__( 'Tiled Mosaic Gallery', 'full-site-editing' ),
17
- 'categories' => array( 'gallery' ),
18
- 'content' => $markup,
19
- 'viewportWidth' => 1280,
20
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/two-column-text-and-image.php DELETED
@@ -1,54 +0,0 @@
1
- <?php
2
- /**
3
- * Two Column Text and Image pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:spacer {"height":60} -->
10
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
11
- <!-- /wp:spacer -->
12
-
13
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","column1DesktopSpan":4,"column1DesktopOffset":2,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":4,"className":"column1-desktop-grid__span-4 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
14
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-4 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
15
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"fontSize":"small"} -->
16
- <p class="has-small-font-size">%1$s</p>
17
- <!-- /wp:paragraph --></div>
18
- <!-- /wp:jetpack/layout-grid-column -->
19
-
20
- <!-- wp:jetpack/layout-grid-column -->
21
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:paragraph {"fontSize":"small"} -->
22
- <p class="has-small-font-size">%2$s</p>
23
- <!-- /wp:paragraph --></div>
24
- <!-- /wp:jetpack/layout-grid-column --></div>
25
- <!-- /wp:jetpack/layout-grid -->
26
-
27
- <!-- wp:spacer {"height":60} -->
28
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
29
- <!-- /wp:spacer -->
30
-
31
- <!-- wp:jetpack/layout-grid {"gutterSize":"huge","addGutterEnds":false,"column1DesktopSpan":10,"column1DesktopOffset":2,"column1TabletSpan":8,"column1MobileSpan":4,"className":"column1-desktop-grid__span-10 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1"} -->
32
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-10 column1-desktop-grid__start-3 column1-desktop-grid__row-1 column1-tablet-grid__span-8 column1-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 wp-block-jetpack-layout-gutter__nowrap wp-block-jetpack-layout-gutter__huge"><!-- wp:jetpack/layout-grid-column -->
33
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none"><!-- wp:image {"id":433,"sizeSlug":"full"} -->
34
- <figure class="wp-block-image size-full"><img src="https://dotcompatterns.files.wordpress.com/2020/04/sam-poullain-bpzorcrtxbg-unsplash.jpg" alt="" class="wp-image-433"/></figure>
35
- <!-- /wp:image --></div>
36
- <!-- /wp:jetpack/layout-grid-column --></div>
37
- <!-- /wp:jetpack/layout-grid -->
38
-
39
- <!-- wp:spacer {"height":60} -->
40
- <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
41
- <!-- /wp:spacer -->
42
- ';
43
-
44
- return array(
45
- '__file' => 'wp_block',
46
- 'title' => esc_html__( 'Two Column Text and Image', 'full-site-editing' ),
47
- 'categories' => array( 'images' ),
48
- 'content' => sprintf(
49
- $markup,
50
- esc_html__( 'Some still say its organic shapes were a reflection of the constant movement of thoughts on his never-ending ideas. It was remarkable but prudent, complex but minimal, and it&rsquo;s geometrical lines contrasted beautifully with the curly waves that defined it.', 'full-site-editing' ),
51
- esc_html__( 'It was his sanctuary, the place where he would go to rest, but also to celebrate. Those that were once there always highlight the Peace they felt around the building. Was it the endless organic shapes? Was it the assurance they felt from the precision of its geometrical lines? Or was it him?', 'full-site-editing' )
52
- ),
53
- 'viewportWidth' => 1280,
54
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/two-images-and-quote.php DELETED
@@ -1,52 +0,0 @@
1
- <?php
2
- /**
3
- * Two images and quote pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":4,"column2DesktopOffset":1,"column2TabletSpan":4,"column2MobileSpan":4,"column3DesktopOffset":5,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-4 column2-desktop-grid__start-8 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:image {"id":121,"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full">
15
- <img src="%1$s" alt=""/>
16
- </figure>
17
- <!-- /wp:image -->
18
- </div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
23
- <!-- wp:spacer {"height":64} -->
24
- <div style="height:64px" aria-hidden="true" class="wp-block-spacer"></div>
25
- <!-- /wp:spacer -->
26
-
27
- <!-- wp:image {"sizeSlug":"full","className":"margin-bottom-half"} -->
28
- <figure class="wp-block-image size-full margin-bottom-half">
29
- <img src="%2$s" alt=""/>
30
- </figure>
31
- <!-- /wp:image -->
32
-
33
- <!-- wp:paragraph {"fontSize":"small","className":"margin-top-half"} -->
34
- <p class="has-small-font-size margin-top-half"><em>%3$s</em></p>
35
- <!-- /wp:paragraph -->
36
- </div>
37
- <!-- /wp:jetpack/layout-grid-column -->
38
- </div>
39
- <!-- /wp:jetpack/layout-grid -->
40
- ';
41
-
42
- return array(
43
- 'title' => esc_html__( 'Two images and quote', 'full-site-editing' ),
44
- 'categories' => array( 'images' ),
45
- 'content' => sprintf(
46
- $markup,
47
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/bianca-berg-l4-sra8ii80-unsplash-2.jpg' ),
48
- esc_url( 'https://dotcompatterns.files.wordpress.com/2020/03/bianca-berg-pyvtnjcwc-g-unsplash.jpg' ),
49
- esc_html__( '&#8220;The artist is the creator of beautiful things. To reveal art and conceal the artist is art&#8217;s aim. The critic is he who can translate into another manner or a new material his impression of beautiful things.&#8221;', 'full-site-editing' )
50
- ),
51
- 'viewportWidth' => 1280,
52
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/two-images-side-by-side.php DELETED
@@ -1,39 +0,0 @@
1
- <?php
2
- /**
3
- * Two images side-by-side pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:jetpack/layout-grid {"addGutterEnds":false,"column1DesktopSpan":6,"column1TabletSpan":4,"column1MobileSpan":4,"column2DesktopSpan":6,"column2TabletSpan":4,"column2MobileSpan":4,"className":"column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2"} -->
10
- <div class="wp-block-jetpack-layout-grid alignfull column1-desktop-grid__span-6 column1-desktop-grid__row-1 column2-desktop-grid__span-6 column2-desktop-grid__start-7 column2-desktop-grid__row-1 column1-tablet-grid__span-4 column1-tablet-grid__row-1 column2-tablet-grid__span-4 column2-tablet-grid__start-5 column2-tablet-grid__row-1 column1-mobile-grid__span-4 column1-mobile-grid__row-1 column2-mobile-grid__span-4 column2-mobile-grid__row-2 wp-block-jetpack-layout-gutter__nowrap">
11
- <!-- wp:jetpack/layout-grid-column -->
12
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
13
- <!-- wp:image {"sizeSlug":"full"} -->
14
- <figure class="wp-block-image size-full">
15
- <img src="https://dotcompatterns.files.wordpress.com/2020/03/patrick-langwallner-wifoabrx_wc-unsplash.jpg" alt=""/>
16
- </figure>
17
- <!-- /wp:image -->
18
- </div>
19
- <!-- /wp:jetpack/layout-grid-column -->
20
-
21
- <!-- wp:jetpack/layout-grid-column -->
22
- <div class="wp-block-jetpack-layout-grid-column wp-block-jetpack-layout-grid__padding-none">
23
- <!-- wp:image {"sizeSlug":"full"} -->
24
- <figure class="wp-block-image size-full">
25
- <img src="https://dotcompatterns.files.wordpress.com/2020/03/kristaps-ungurs-hercrtskbiq-unsplash.jpg" alt=""/>
26
- </figure>
27
- <!-- /wp:image -->
28
- </div>
29
- <!-- /wp:jetpack/layout-grid-column -->
30
- </div>
31
- <!-- /wp:jetpack/layout-grid -->
32
- ';
33
-
34
- return array(
35
- 'title' => esc_html__( 'Two images side-by-side', 'full-site-editing' ),
36
- 'categories' => array( 'gallery', 'images' ),
37
- 'content' => $markup,
38
- 'viewportWidth' => 1280,
39
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/patterns/youtube-embed.php DELETED
@@ -1,46 +0,0 @@
1
- <?php
2
- /**
3
- * Embed pattern.
4
- *
5
- * @package A8C\FSE
6
- */
7
-
8
- $markup = '
9
- <!-- wp:spacer {"height":80} -->
10
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
11
- <!-- /wp:spacer -->
12
-
13
- <!-- wp:heading {"align":"center","level":3,"className":"margin-bottom-half","style":{"typography":{"fontSize":50}}} -->
14
- <h3 class="has-text-align-center margin-bottom-half" style="font-size:50px">%1$s</h3>
15
- <!-- /wp:heading -->
16
-
17
- <!-- wp:paragraph {"align":"center","className":"margin-top-half"} -->
18
- <p class="has-text-align-center margin-top-half">%2$s.</p>
19
- <!-- /wp:paragraph -->
20
-
21
- <!-- wp:spacer {"height":24} -->
22
- <div style="height:24px" aria-hidden="true" class="wp-block-spacer"></div>
23
- <!-- /wp:spacer -->
24
-
25
- <!-- wp:core-embed/youtube {"url":"https://www.youtube.com/watch?v=k58xZ6osP3Y","type":"rich","providerNameSlug":"youtube","align":"wide","className":"wp-embed-aspect-16-9 wp-has-aspect-ratio"} -->
26
- <figure class="wp-block-embed-youtube alignwide wp-block-embed is-type-rich is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
27
- https://www.youtube.com/watch?v=k58xZ6osP3Y
28
- </div></figure>
29
- <!-- /wp:core-embed/youtube -->
30
-
31
- <!-- wp:spacer {"height":80} -->
32
- <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
33
- <!-- /wp:spacer -->
34
- ';
35
-
36
- return array(
37
- '__file' => 'wp_block',
38
- 'title' => esc_html__( 'YouTube Embed', 'full-site-editing' ),
39
- 'categories' => array( 'media' ),
40
- 'content' => sprintf(
41
- $markup,
42
- esc_html__( 'The Endless Movement', 'full-site-editing' ),
43
- esc_html__( 'Watch our award-winning showreel: 2020 — The Endless Movement.', 'full-site-editing' )
44
- ),
45
- 'viewportWidth' => 1280,
46
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
block-patterns/test/class-block-patterns-test.php DELETED
@@ -1,89 +0,0 @@
1
- <?php
2
- /**
3
- * Tests for the block-patterns plugin
4
- *
5
- * @package full-site-editing-plugin
6
- */
7
-
8
- namespace A8C\FSE;
9
-
10
- use PHPUnit\Framework\TestCase;
11
-
12
- require_once __DIR__ . '/../class-block-patterns.php';
13
-
14
- // phpcs:disable Generic.Commenting.DocComment.MissingShort,Squiz.Commenting
15
-
16
- class Block_Patterns_Test extends TestCase {
17
- /**
18
- * @dataProvider getPatterns
19
- */
20
- public function test_patterns_pass_dom_validation( $name, $pattern ) {
21
- $prior_use_internal_errors = libxml_use_internal_errors( true );
22
- $dom = new \DOMDocument();
23
- $load_result = $dom->loadHTML( $pattern['content'] );
24
- $errors = libxml_get_errors();
25
- libxml_clear_errors();
26
- libxml_use_internal_errors( $prior_use_internal_errors );
27
-
28
- // Overenthusiastically filter out HTML 5 tag errors
29
- // http://www.xmlsoft.org/html/libxml-xmlerror.html#xmlParserErrors
30
- // XML_HTML_UNKNOWN_TAG = 801 : 801
31
- $errors = array_filter(
32
- $errors,
33
- function( $error ) {
34
- if ( 801 !== $error->code ) {
35
- return true;
36
- };
37
-
38
- $html5_elements = array(
39
- 'article',
40
- 'aside',
41
- 'bdi',
42
- 'details',
43
- 'dialog',
44
- 'figcaption',
45
- 'figure',
46
- 'footer',
47
- 'header',
48
- 'main',
49
- 'mark',
50
- 'menuitem',
51
- 'meter',
52
- 'nav',
53
- 'progress',
54
- 'rp',
55
- 'rt',
56
- 'ruby',
57
- 'section',
58
- 'summary',
59
- 'time',
60
- 'wbr',
61
- // new media elements
62
- 'audio',
63
- 'embed',
64
- 'source',
65
- 'track',
66
- 'video',
67
- );
68
-
69
- preg_match( '/Tag (.*) invalid/', $error->message, $result );
70
- $invalid_tag_name = $result[1] ?? 'Unknown';
71
- return ! in_array( $invalid_tag_name, $html5_elements, true );
72
- }
73
- );
74
-
75
- // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export
76
- $this->assertEmpty( $errors, "Unexpected errors parsing pattern $name: " . var_export( $errors, true ) );
77
- $this->assertTrue( $load_result );
78
- }
79
-
80
- public function getPatterns() {
81
- $pattern_data = array();
82
- $patterns = Block_Patterns::get_instance()->get_patterns();
83
- foreach ( $patterns as $name => $details ) {
84
- $pattern_data[] = array( $name, $details );
85
- }
86
-
87
- return $pattern_data;
88
- }
89
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
coming-soon/coming-soon.php CHANGED
@@ -12,11 +12,8 @@ namespace A8C\FSE\Coming_soon;
12
  *
13
  * @return boolean
14
  */
15
- function show_coming_soon_page() {
16
- global $post;
17
-
18
- // Handle the case where we are not rendering a post.
19
- if ( ! isset( $post ) ) {
20
  return false;
21
  }
22
 
@@ -33,6 +30,11 @@ function show_coming_soon_page() {
33
  * Renders a fallback coming soon page
34
  */
35
  function render_fallback_coming_soon_page() {
 
 
 
 
 
36
  remove_action( 'wp_enqueue_scripts', 'wpcom_actionbar_enqueue_scripts', 101 );
37
  remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
38
  remove_action( 'wp_print_styles', 'print_emoji_styles' );
@@ -40,6 +42,11 @@ function render_fallback_coming_soon_page() {
40
  remove_action( 'wp_head', 'global_css', 5 );
41
  remove_action( 'wp_footer', 'wpcom_subs_js' );
42
  remove_action( 'wp_footer', 'stats_footer', 101 );
 
 
 
 
 
43
  wp_enqueue_style( 'recoleta-font', '//s1.wp.com/i/fonts/recoleta/css/400.min.css', array(), PLUGIN_VERSION );
44
 
45
  include __DIR__ . '/fallback-coming-soon-page.php';
@@ -106,8 +113,6 @@ add_action( 'update_option_blog_public', __NAMESPACE__ . '\disable_coming_soon_o
106
  function add_option_to_new_site( $blog_id, $user_id, $domain, $path, $network_id, $meta ) {
107
  if ( 0 === $meta['public'] && 1 === (int) $meta['options']['wpcom_public_coming_soon'] ) {
108
  add_blog_option( $blog_id, 'wpcom_public_coming_soon', 1 );
109
- } else {
110
- add_blog_option( $blog_id, 'wpcom_public_coming_soon', 0 );
111
  }
112
  }
113
  // phpcs:enable Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed
@@ -118,24 +123,9 @@ add_action( 'wpmu_new_blog', __NAMESPACE__ . '\add_option_to_new_site', 10, 6 );
118
  * the redirect.
119
  */
120
  function coming_soon_page() {
121
- if ( ! show_coming_soon_page() ) {
122
  return;
123
  }
124
- if ( ! defined( 'GRAVATAR_HOVERCARDS__DISABLE' ) ) {
125
- define( 'GRAVATAR_HOVERCARDS__DISABLE', true );
126
- }
127
- add_filter( 'wpcom_disable_logged_out_follow', '__return_true', 10, 1 ); // Disable follow actionbar.
128
- add_filter( 'wpl_is_enabled_sitewide', '__return_false', 10, 1 ); // Disable likes.
129
- // Disable WP scripts, social og meta, cookie banner.
130
- remove_action( 'wp_enqueue_scripts', 'wpcom_actionbar_enqueue_scripts', 101 );
131
- remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
132
- remove_action( 'wp_print_styles', 'print_emoji_styles' );
133
- remove_action( 'wp_head', 'header_js', 5 );
134
- remove_action( 'wp_head', 'global_css', 5 );
135
- remove_action( 'wp_footer', 'wpcom_subs_js' );
136
- remove_action( 'wp_footer', 'stats_footer', 101 );
137
- add_filter( 'jetpack_disable_eu_cookie_law_widget', '__return_true', 1 );
138
- add_filter( 'jetpack_enable_opengraph', '__return_false', 1 );
139
 
140
  render_fallback_coming_soon_page();
141
  die();
12
  *
13
  * @return boolean
14
  */
15
+ function should_show_coming_soon_page() {
16
+ if ( ! is_singular() && ! is_archive() && ! is_search() ) {
 
 
 
17
  return false;
18
  }
19
 
30
  * Renders a fallback coming soon page
31
  */
32
  function render_fallback_coming_soon_page() {
33
+ if ( ! defined( 'GRAVATAR_HOVERCARDS__DISABLE' ) ) {
34
+ define( 'GRAVATAR_HOVERCARDS__DISABLE', true );
35
+ }
36
+
37
+ // Disable WP scripts, likes, social og meta, cookie banner.
38
  remove_action( 'wp_enqueue_scripts', 'wpcom_actionbar_enqueue_scripts', 101 );
39
  remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
40
  remove_action( 'wp_print_styles', 'print_emoji_styles' );
42
  remove_action( 'wp_head', 'global_css', 5 );
43
  remove_action( 'wp_footer', 'wpcom_subs_js' );
44
  remove_action( 'wp_footer', 'stats_footer', 101 );
45
+ add_filter( 'jetpack_disable_eu_cookie_law_widget', '__return_true', 1 );
46
+ add_filter( 'jetpack_enable_opengraph', '__return_false', 1 );
47
+ add_filter( 'wpcom_disable_logged_out_follow', '__return_true', 10, 1 ); // Disable follow actionbar.
48
+ add_filter( 'wpl_is_enabled_sitewide', '__return_false', 10, 1 ); // Disable likes.
49
+
50
  wp_enqueue_style( 'recoleta-font', '//s1.wp.com/i/fonts/recoleta/css/400.min.css', array(), PLUGIN_VERSION );
51
 
52
  include __DIR__ . '/fallback-coming-soon-page.php';
113
  function add_option_to_new_site( $blog_id, $user_id, $domain, $path, $network_id, $meta ) {
114
  if ( 0 === $meta['public'] && 1 === (int) $meta['options']['wpcom_public_coming_soon'] ) {
115
  add_blog_option( $blog_id, 'wpcom_public_coming_soon', 1 );
 
 
116
  }
117
  }
118
  // phpcs:enable Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed
123
  * the redirect.
124
  */
125
  function coming_soon_page() {
126
+ if ( ! should_show_coming_soon_page() ) {
127
  return;
128
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  render_fallback_coming_soon_page();
131
  die();
coming-soon/fallback-coming-soon-page.php CHANGED
@@ -276,5 +276,6 @@ nocache_headers();
276
  </div>
277
  </div>
278
  <?php wp_footer(); ?>
 
279
  </body>
280
  </html>
276
  </div>
277
  </div>
278
  <?php wp_footer(); ?>
279
+ <!-- WordPress.com Editing Toolkit Plugin - Coming Soon -->
280
  </body>
281
  </html>
common/dist/common.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c88922793f97988ead3252f8bccdd5f1');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '5707fa3e59cf4e301d9d7b8b8be1ef27');
common/dist/common.js CHANGED
@@ -1 +1 @@
1
- !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=33)}({33:function(e,t,n){"use strict";n.r(t);n(40)},40:function(e,t,n){}}));
1
+ !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=53)}({53:function(e,t,n){"use strict";n.r(t);n(59)},59:function(e,t,n){}}));
common/dist/data-stores.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('react', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-polyfill'), 'version' => '333a723b1cf54369f0fcd6cb937f5962');
1
+ <?php return array('dependencies' => array('react', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-polyfill'), 'version' => '7de9f4952794e3fce0b3842b16df5412');
common/dist/data-stores.js CHANGED
@@ -1,4 +1,11 @@
1
- !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=67)}([function(e,t){!function(){e.exports=this.wp.data}()},function(e,t){!function(){e.exports=this.React}()},function(e,t){!function(){e.exports=this.wp.dataControls}()},function(e,t){e.exports=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(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(44)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t,n){"use strict";var r=n(49),o=n(50),i=n(16);e.exports={formats:i,parse:o,stringify:r}},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){!function(){e.exports=this.wp.element}()},function(e,t){var n,r=window.ProgressEvent,o=!!r;try{n=new r("loaded"),o="loaded"===n.type,n=null}catch(i){o=!1}e.exports=o?r:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,o=Array.isArray,i=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var i=t[r],a=i.obj[i.prop],s=Object.keys(a),u=0;u<s.length;++u){var c=s[u],l=a[c];"object"==typeof l&&null!==l&&-1===n.indexOf(l)&&(t.push({obj:a,prop:c}),n.push(l))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(o(n)){for(var r=[],i=0;i<n.length;++i)void 0!==n[i]&&r.push(n[i]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(o){return r}},encode:function(e,t,n){if(0===e.length)return e;var r=e;if("symbol"==typeof e?r=Symbol.prototype.toString.call(e):"string"!=typeof e&&(r=String(e)),"iso-8859-1"===n)return escape(r).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var o="",a=0;a<r.length;++a){var s=r.charCodeAt(a);45===s||46===s||95===s||126===s||s>=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122?o+=r.charAt(a):s<128?o+=i[s]:s<2048?o+=i[192|s>>6]+i[128|63&s]:s<55296||s>=57344?o+=i[224|s>>12]+i[128|s>>6&63]+i[128|63&s]:(a+=1,s=65536+((1023&s)<<10|1023&r.charCodeAt(a)),o+=i[240|s>>18]+i[128|s>>12&63]+i[128|s>>6&63]+i[128|63&s])}return o},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(o(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,i){if(!n)return t;if("object"!=typeof n){if(o(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(i&&(i.plainObjects||i.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var s=t;return o(t)&&!o(n)&&(s=a(t,i)),o(t)&&o(n)?(n.forEach((function(n,o){if(r.call(t,o)){var a=t[o];a&&"object"==typeof a&&n&&"object"==typeof n?t[o]=e(a,n,i):t.push(n)}else t[o]=n})),t):Object.keys(n).reduce((function(t,o){var a=n[o];return r.call(t,o)?t[o]=e(t[o],a,i):t[o]=a,t}),s)}}},function(e,t,n){"use strict";var r=n(19),o=n(18);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function s(e){return 1===e.length?"0"+e:e}function u(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=o,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),o=0;o<e.length;o+=2)n.push(parseInt(e[o]+e[o+1],16))}else for(var r=0,o=0;o<e.length;o++){var a=e.charCodeAt(o);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):i(e,o)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++o)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|128)}else for(o=0;o<e.length;o++)n[o]=0|e[o];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=s(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e[r];"little"===t&&(o=a(o)),n+=u(o.toString(16))}return n},t.zero2=s,t.zero8=u,t.join32=function(e,t,n,o){var i=n-t;r(i%4==0);for(var a=new Array(i/4),s=0,u=t;s<a.length;s++,u+=4){var c;c="big"===o?e[u]<<24|e[u+1]<<16|e[u+2]<<8|e[u+3]:e[u+3]<<24|e[u+2]<<16|e[u+1]<<8|e[u],a[s]=c>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,o=0;r<e.length;r++,o+=4){var i=e[r];"big"===t?(n[o]=i>>>24,n[o+1]=i>>>16&255,n[o+2]=i>>>8&255,n[o+3]=255&i):(n[o+3]=i>>>24,n[o+2]=i>>>16&255,n[o+1]=i>>>8&255,n[o]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,o){return e+t+n+r+o>>>0},t.sum64=function(e,t,n,r){var o=e[t],i=r+e[t+1]>>>0,a=(i<r?1:0)+n+o;e[t]=a>>>0,e[t+1]=i},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,o,i,a,s){var u=0,c=t;return u+=(c=c+r>>>0)<t?1:0,u+=(c=c+i>>>0)<i?1:0,e+n+o+a+(u+=(c=c+s>>>0)<s?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,o,i,a,s){return t+r+i+s>>>0},t.sum64_5_hi=function(e,t,n,r,o,i,a,s,u,c){var l=0,f=t;return l+=(f=f+r>>>0)<t?1:0,l+=(f=f+i>>>0)<i?1:0,l+=(f=f+s>>>0)<s?1:0,e+n+o+a+u+(l+=(f=f+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,o,i,a,s,u,c){return t+r+i+s+c>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t,n){var r=n(45),o=n(46),i=n(15),a=n(47);e.exports=function(e){return r(e)||o(e)||i(e)||a()}},function(e,t,n){"use strict";var r,o="object"==typeof Reflect?Reflect:null,i=o&&"function"==typeof o.apply?o.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=o&&"function"==typeof o.ownKeys?o.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function s(){s.init.call(this)}e.exports=s,s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var u=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function l(e){return void 0===e._maxListeners?s.defaultMaxListeners:e._maxListeners}function f(e,t,n,r){var o,i,a,s;if(c(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),a=i[t]),void 0===a)a=i[t]=n,++e._eventsCount;else if("function"==typeof a?a=i[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(o=l(e))>0&&a.length>o&&!a.warned){a.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=a.length,s=u,console&&console.warn&&console.warn(s)}return e}function p(){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 d(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},o=p.bind(r);return o.listener=n,r.wrapFn=o,o}function h(e,t,n){var r=e._events;if(void 0===r)return[];var o=r[t];return void 0===o?[]:"function"==typeof o?n?[o.listener||o]:[o]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(o):y(o,o.length)}function m(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function y(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(s,"defaultMaxListeners",{enumerable:!0,get:function(){return u},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");u=e}}),s.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},s.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},s.prototype.getMaxListeners=function(){return l(this)},s.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,o=this._events;if(void 0!==o)r=r&&void 0===o.error;else if(!r)return!1;if(r){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var s=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw s.context=a,s}var u=o[e];if(void 0===u)return!1;if("function"==typeof u)i(u,this,t);else{var c=u.length,l=y(u,c);for(n=0;n<c;++n)i(l[n],this,t)}return!0},s.prototype.addListener=function(e,t){return f(this,e,t,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(e,t){return f(this,e,t,!0)},s.prototype.once=function(e,t){return c(t),this.on(e,d(this,e,t)),this},s.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,d(this,e,t)),this},s.prototype.removeListener=function(e,t){var n,r,o,i,a;if(c(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(o=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){a=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,o),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var o,i=Object.keys(n);for(r=0;r<i.length;++r)"removeListener"!==(o=i[r])&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},s.prototype.listeners=function(e){return h(this,e,!0)},s.prototype.rawListeners=function(e){return h(this,e,!1)},s.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):m.call(e,t)},s.prototype.listenerCount=m,s.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t,n){var r=n(3);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){var r=n(14);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t,n){"use strict";var r=String.prototype.replace,o=/%20/g,i=n(9),a={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports=i.assign({default:a.RFC3986,formatters:{RFC1738:function(e){return r.call(e,o,"+")},RFC3986:function(e){return String(e)}}},a)},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t,n){var r=n(41),o=n(43);function i(e,t){if(t)if("number"==typeof t)a(e,t);else{t.status_code&&a(e,t.status_code),t.error&&(e.name=u(t.error)),t.error_description&&(e.message=t.error_description);var n=t.errors;if(n)i(e,n.length?n[0]:n);for(var r in t)e[r]=t[r];e.status&&(t.method||t.path)&&s(e)}}function a(e,t){e.name=u(o[t]),e.status=e.statusCode=t,s(e)}function s(e){var t=e.status,n=e.method,r=e.path,o=t+" status code",i=n||r;i&&(o+=' for "'),n&&(o+=n),i&&(o+=" "),r&&(o+=r),i&&(o+='"'),e.message=o}function u(e){return r(String(e).replace(/error$/i,""),"error")}e.exports=function e(){for(var t=new Error,n=0;n<arguments.length;n++)i(t,arguments[n]);"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(t,e);return t}},function(e,t,n){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,o=t.cmp&&(n=t.cmp,function(e){return function(t,r){var o={key:t,value:e[t]},i={key:r,value:e[r]};return n(o,i)}}),i=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==i.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var s=i.push(t)-1,u=Object.keys(t).sort(o&&o(t));for(a="",n=0;n<u.length;n++){var c=u[n],l=e(t[c]);l&&(a&&(a+=","),a+=JSON.stringify(c)+":"+l)}return i.splice(s,1),"{"+a+"}"}}(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var 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},o=s(n(1)),i=s(n(51)),a=s(n(54));function s(e){return e&&e.__esModule?e:{default:e}}var u=void 0;function c(e,t){var n,a,s,l,f,p,d,h,m=[],y={};for(p=0;p<e.length;p++)if("string"!==(f=e[p]).type){if(!t.hasOwnProperty(f.value)||void 0===t[f.value])throw new Error("Invalid interpolation, missing component node: `"+f.value+"`");if("object"!==r(t[f.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+f.value+"`","\n> "+u);if("componentClose"===f.type)throw new Error("Missing opening component token: `"+f.value+"`");if("componentOpen"===f.type){n=t[f.value],s=p;break}m.push(t[f.value])}else m.push(f.value);return n&&(l=function(e,t){var n,r,o=t[e],i=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===o.value){if("componentOpen"===n.type){i++;continue}if("componentClose"===n.type){if(0===i)return r;i--}}throw new Error("Missing closing component token `"+o.value+"`")}(s,e),d=c(e.slice(s+1,l),t),a=o.default.cloneElement(n,{},d),m.push(a),l<e.length-1&&(h=c(e.slice(l+1),t),m=m.concat(h))),1===m.length?m[0]:(m.forEach((function(e,t){e&&(y["interpolation-child-"+t]=e)})),(0,i.default)(y))}t.default=function(e){var t=e.mixedString,n=e.components,o=e.throwErrors;if(u=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(o)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var i=(0,a.default)(t);try{return c(i,n)}catch(s){if(o)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+s.message+"`");return t}}},function(e,t,n){var r=n(12),o=n(18);function i(e){if(!(this instanceof i))return new i(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=i,o(i,r.EventEmitter),Object.defineProperty(i.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),i.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},i.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},i.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},i.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},i.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},i.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},i.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},i.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},function(e,t,n){"use strict";var r=n(10),o=n(55),i=n(56),a=r.rotl32,s=r.sum32,u=r.sum32_5,c=i.ft_1,l=o.BlockHash,f=[1518500249,1859775393,2400959708,3395469782];function p(){if(!(this instanceof p))return new p;l.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(p,l),e.exports=p,p.blockSize=512,p.outSize=160,p.hmacStrength=80,p.padLength=64,p.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var o=this.h[0],i=this.h[1],l=this.h[2],p=this.h[3],d=this.h[4];for(r=0;r<n.length;r++){var h=~~(r/20),m=u(a(o,5),c(h,i,l,p),d,n[r],f[h]);d=p,p=l,l=a(i,30),i=o,o=m}this.h[0]=s(this.h[0],o),this.h[1]=s(this.h[1],i),this.h[2]=s(this.h[2],l),this.h[3]=s(this.h[3],p),this.h[4]=s(this.h[4],d)},p.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(57);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(58),o=n(59),i=n(60);e.exports=function(e){var t=o();return function(){var n,o=r(e);if(t){var a=r(this).constructor;n=Reflect.construct(o,arguments,a)}else n=o.apply(this,arguments);return i(this,n)}}},function(e,t,n){var r=n(62),o=n(63),i=n(15),a=n(64);e.exports=function(e,t){return r(e)||o(e,t)||i(e,t)||a()}},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){"use strict";e.exports=n(65)},function(e,t){!function(){e.exports=this.wp.compose}()},,,,,,,,,function(e,t,n){"use strict";var r=n(42);e.exports=function(){var e=r.apply(r,arguments);return e.charAt(0).toUpperCase()+e.slice(1)}},function(e,t,n){"use strict";e.exports=function(){var e=[].map.call(arguments,(function(e){return e.trim()})).filter((function(e){return e.length})).join("-");return e.length?1!==e.length&&/[_.\- ]+/.test(e)?e.replace(/^[_.\- ]+/,"").toLowerCase().replace(/[_.\- ]+(\w|$)/g,(function(e,t){return t.toUpperCase()})):e[0]===e[0].toLowerCase()&&e.slice(1)!==e.slice(1).toLowerCase()?e:e.toLowerCase():""}},function(e,t){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},function(e,t,n){var r=n(11);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return o.colors[Math.abs(t)%o.colors.length]}function o(e){var n;function r(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];if(r.enabled){var a=r,s=Number(new Date),u=s-(n||s);a.diff=u,a.prev=n,a.curr=s,n=s,t[0]=o.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var c=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;c++;var r=o.formatters[n];if("function"==typeof r){var i=t[c];e=r.call(a,i),t.splice(c,1),c--}return e})),o.formatArgs.call(a,t);var l=a.log||o.log;l.apply(a,t)}}return r.namespace=e,r.enabled=o.enabled(e),r.useColors=o.useColors(),r.color=t(e),r.destroy=i,r.extend=a,"function"==typeof o.init&&o.init(r),o.instances.push(r),r}function i(){var e=o.instances.indexOf(this);return-1!==e&&(o.instances.splice(e,1),!0)}function a(e,t){var n=o(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function s(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return o.debug=o,o.default=o,o.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},o.disable=function(){var e=[].concat(r(o.names.map(s)),r(o.skips.map(s).map((function(e){return"-"+e})))).join(",");return o.enable(""),e},o.enable=function(e){var t;o.save(e),o.names=[],o.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?o.skips.push(new RegExp("^"+e.substr(1)+"$")):o.names.push(new RegExp("^"+e+"$")));for(t=0;t<o.instances.length;t++){var i=o.instances[t];i.enabled=o.enabled(i.namespace)}},o.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=o.skips.length;t<n;t++)if(o.skips[t].test(e))return!1;for(t=0,n=o.names.length;t<n;t++)if(o.names[t].test(e))return!0;return!1},o.humanize=n(48),Object.keys(e).forEach((function(t){o[t]=e[t]})),o.instances=[],o.names=[],o.skips=[],o.formatters={},o.selectColor=t,o.enable(o.load()),o}},function(e,t,n){var r=n(14);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=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){var n=1e3,r=60*n,o=60*r,i=24*o,a=7*i,s=365.25*i;function u(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,t){t=t||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var u=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*a;case"days":case"day":case"d":return u*i;case"hours":case"hour":case"hrs":case"hr":case"h":return u*o;case"minutes":case"minute":case"mins":case"min":case"m":return u*r;case"seconds":case"second":case"secs":case"sec":case"s":return u*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=i)return u(e,t,i,"day");if(t>=o)return u(e,t,o,"hour");if(t>=r)return u(e,t,r,"minute");if(t>=n)return u(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=i)return Math.round(e/i)+"d";if(t>=o)return Math.round(e/o)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t,n){"use strict";var r=n(9),o=n(16),i=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},s=Array.isArray,u=Array.prototype.push,c=function(e,t){u.apply(e,s(t)?t:[t])},l=Date.prototype.toISOString,f=o.default,p={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:f,formatter:o.formatters[f],indices:!1,serializeDate:function(e){return l.call(e)},skipNulls:!1,strictNullHandling:!1},d=function e(t,n,o,i,a,u,l,f,d,h,m,y,v){var g,b=t;if("function"==typeof l?b=l(n,b):b instanceof Date?b=h(b):"comma"===o&&s(b)&&(b=r.maybeMap(b,(function(e){return e instanceof Date?h(e):e})).join(",")),null===b){if(i)return u&&!y?u(n,p.encoder,v,"key"):n;b=""}if("string"==typeof(g=b)||"number"==typeof g||"boolean"==typeof g||"symbol"==typeof g||"bigint"==typeof g||r.isBuffer(b))return u?[m(y?n:u(n,p.encoder,v,"key"))+"="+m(u(b,p.encoder,v,"value"))]:[m(n)+"="+m(String(b))];var S,E=[];if(void 0===b)return E;if(s(l))S=l;else{var _=Object.keys(b);S=f?_.sort(f):_}for(var w=0;w<S.length;++w){var O=S[w],C=b[O];if(!a||null!==C){var T=s(b)?"function"==typeof o?o(n,O):n:n+(d?"."+O:"["+O+"]");c(E,e(C,T,o,i,a,u,l,f,d,h,m,y,v))}}return E};e.exports=function(e,t){var n,r=e,u=function(e){if(!e)return p;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||p.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==e.format){if(!i.call(o.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=o.formatters[n],a=p.filter;return("function"==typeof e.filter||s(e.filter))&&(a=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:p.addQueryPrefix,allowDots:void 0===e.allowDots?p.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:p.charsetSentinel,delimiter:void 0===e.delimiter?p.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:p.encode,encoder:"function"==typeof e.encoder?e.encoder:p.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:p.encodeValuesOnly,filter:a,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:p.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:p.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:p.strictNullHandling}}(t);"function"==typeof u.filter?r=(0,u.filter)("",r):s(u.filter)&&(n=u.filter);var l,f=[];if("object"!=typeof r||null===r)return"";l=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var h=a[l];n||(n=Object.keys(r)),u.sort&&n.sort(u.sort);for(var m=0;m<n.length;++m){var y=n[m];u.skipNulls&&null===r[y]||c(f,d(r[y],y,h,u.strictNullHandling,u.skipNulls,u.encode?u.encoder:null,u.filter,u.sort,u.allowDots,u.serializeDate,u.formatter,u.encodeValuesOnly,u.charset))}var v=f.join(u.delimiter),g=!0===u.addQueryPrefix?"?":"";return u.charsetSentinel&&("iso-8859-1"===u.charset?g+="utf8=%26%2310003%3B&":g+="utf8=%E2%9C%93&"),v.length>0?g+v:""}},function(e,t,n){"use strict";var r=n(9),o=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},s=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},u=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var i=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,s=n.depth>0&&/(\[[^[\]]*])/.exec(i),c=s?i.slice(0,s.index):i,l=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;l.push(c)}for(var f=0;n.depth>0&&null!==(s=a.exec(i))&&f<n.depth;){if(f+=1,!n.plainObjects&&o.call(Object.prototype,s[1].slice(1,-1))&&!n.allowPrototypes)return;l.push(s[1])}return s&&l.push("["+i.slice(s.index)+"]"),function(e,t,n,r){for(var o=r?t:u(t,n),i=e.length-1;i>=0;--i){var a,s=e[i];if("[]"===s&&n.parseArrays)a=[].concat(o);else{a=n.plainObjects?Object.create(null):{};var c="["===s.charAt(0)&&"]"===s.charAt(s.length-1)?s.slice(1,-1):s,l=parseInt(c,10);n.parseArrays||""!==c?!isNaN(l)&&s!==c&&String(l)===c&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(a=[])[l]=o:a[c]=o:a={0:o}}o=a}return o}(l,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?a.charset:e.charset;return{allowDots:void 0===e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:a.comma,decoder:"function"==typeof e.decoder?e.decoder:a.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var l="string"==typeof e?function(e,t){var n,c={},l=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,f=t.parameterLimit===1/0?void 0:t.parameterLimit,p=l.split(t.delimiter,f),d=-1,h=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[n]?h="utf-8":"utf8=%26%2310003%3B"===p[n]&&(h="iso-8859-1"),d=n,n=p.length);for(n=0;n<p.length;++n)if(n!==d){var m,y,v=p[n],g=v.indexOf("]="),b=-1===g?v.indexOf("="):g+1;-1===b?(m=t.decoder(v,a.decoder,h,"key"),y=t.strictNullHandling?null:""):(m=t.decoder(v.slice(0,b),a.decoder,h,"key"),y=r.maybeMap(u(v.slice(b+1),t),(function(e){return t.decoder(e,a.decoder,h,"value")}))),y&&t.interpretNumericEntities&&"iso-8859-1"===h&&(y=s(y)),v.indexOf("[]=")>-1&&(y=i(y)?[y]:y),o.call(c,m)?c[m]=r.combine(c[m],y):c[m]=y}return c}(e,n):e,f=n.plainObjects?Object.create(null):{},p=Object.keys(l),d=0;d<p.length;++d){var h=p[d],m=c(h,l[h],n,"string"==typeof e);f=r.merge(f,m,n)}return r.compact(f)}},function(e,t,n){"use strict";var r=n(1),o="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,i=n(17),a=n(52),s=n(53),u="function"==typeof Symbol&&Symbol.iterator;function c(e,t){return e&&"object"==typeof e&&null!=e.key?(n=e.key,r={"=":"=0",":":"=2"},"$"+(""+n).replace(/[=:]/g,(function(e){return r[e]}))):t.toString(36);var n,r}function l(e,t,n,r){var i,s=typeof e;if("undefined"!==s&&"boolean"!==s||(e=null),null===e||"string"===s||"number"===s||"object"===s&&e.$$typeof===o)return n(r,e,""===t?"."+c(e,0):t),1;var f=0,p=""===t?".":t+":";if(Array.isArray(e))for(var d=0;d<e.length;d++)f+=l(i=e[d],p+c(i,d),n,r);else{var h=function(e){var t=e&&(u&&e[u]||e["@@iterator"]);if("function"==typeof t)return t}(e);if(h){0;for(var m,y=h.call(e),v=0;!(m=y.next()).done;)f+=l(i=m.value,p+c(i,v++),n,r)}else if("object"===s){0;var g=""+e;a(!1,"Objects are not valid as a React child (found: %s).%s","[object Object]"===g?"object with keys {"+Object.keys(e).join(", ")+"}":g,"")}}return f}var f=/\/+/g;function p(e){return(""+e).replace(f,"$&/")}var d,h,m=y,y=function(e){var t=this;if(t.instancePool.length){var n=t.instancePool.pop();return t.call(n,e),n}return new t(e)},v=function(e){var t=this;a(e instanceof t,"Trying to release an instance into a pool of a different type."),e.destructor(),t.instancePool.length<t.poolSize&&t.instancePool.push(e)};function g(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function b(e,t,n){var o,a,s=e.result,u=e.keyPrefix,c=e.func,l=e.context,f=c.call(l,t,e.count++);Array.isArray(f)?S(f,s,n,i.thatReturnsArgument):null!=f&&(r.isValidElement(f)&&(o=f,a=u+(!f.key||t&&t.key===f.key?"":p(f.key)+"/")+n,f=r.cloneElement(o,{key:a},void 0!==o.props?o.props.children:void 0)),s.push(f))}function S(e,t,n,r,o){var i="";null!=n&&(i=p(n)+"/");var a=g.getPooled(t,i,r,o);!function(e,t,n){null==e||l(e,"",t,n)}(e,b,a),g.release(a)}g.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},d=function(e,t,n,r){var o=this;if(o.instancePool.length){var i=o.instancePool.pop();return o.call(i,e,t,n,r),i}return new o(e,t,n,r)},(h=g).instancePool=[],h.getPooled=d||m,h.poolSize||(h.poolSize=10),h.release=v;e.exports=function(e){if("object"!=typeof e||!e||Array.isArray(e))return s(!1,"React.addons.createFragment only accepts a single object. Got: %s",e),e;if(r.isValidElement(e))return s(!1,"React.addons.createFragment does not accept a ReactElement without a wrapper object."),e;a(1!==e.nodeType,"React.addons.createFragment(...): Encountered an invalid child; DOM elements are not valid children of React components.");var t=[];for(var n in e)S(e[n],t,n,i.thatReturnsArgument);return t}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,i,a,s){if(!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,o,i,a,s],l=0;(u=new Error(t.replace(/%s/g,(function(){return c[l++]})))).name="Invariant Violation"}throw u.framesToPop=1,u}}},function(e,t,n){"use strict";var r=n(17);e.exports=r},function(e,t,n){"use strict";function r(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(r)}},function(e,t,n){"use strict";var r=n(10),o=n(19);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var o=0;o<e.length;o+=this._delta32)this._update(e,o,o+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),o(null===this.pending),this._digest(e)},i.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var o=1;o<n;o++)r[o]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)r[o++]=0;r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=e>>>24&255,r[o++]=e>>>16&255,r[o++]=e>>>8&255,r[o++]=255&e}else for(r[o++]=255&e,r[o++]=e>>>8&255,r[o++]=e>>>16&255,r[o++]=e>>>24&255,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,i=8;i<this.padLength;i++)r[o++]=0;return r}},function(e,t,n){"use strict";var r=n(10).rotr32;function o(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?o(t,n,r):1===e||3===e?a(t,n,r):2===e?i(t,n,r):void 0},t.ch32=o,t.maj32=i,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t){e.exports=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}},function(e,t,n){var r=n(61),o=n(6);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(u){o=!0,i=u}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}}},function(e,t){e.exports=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(e,t,n){"use strict";
 
 
 
 
 
 
 
2
  /** @license React v1.3.0
3
  * use-subscription.production.min.js
4
  *
@@ -6,16 +13,9 @@
6
  *
7
  * This source code is licensed under the MIT license found in the
8
  * LICENSE file in the root directory of this source tree.
9
- */Object.defineProperty(t,"__esModule",{value:!0});var r=n(66),o=n(1);t.useSubscription=function(e){var t=e.getCurrentValue,n=e.subscribe,i=o.useState((function(){return{getCurrentValue:t,subscribe:n,value:t()}}));e=i[0];var a=i[1];return i=e.value,e.getCurrentValue===t&&e.subscribe===n||(i=t(),a({getCurrentValue:t,subscribe:n,value:i})),o.useDebugValue(i),o.useEffect((function(){function e(){if(!o){var e=t();a((function(o){return o.getCurrentValue!==t||o.subscribe!==n||o.value===e?o:r({},o,{value:e})}))}}var o=!1,i=n(e);return e(),function(){o=!0,i()}}),[t,n]),i}},function(e,t,n){"use strict";
10
  /*
11
  object-assign
12
  (c) Sindre Sorhus
13
  @license MIT
14
- */var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(o){return!1}}()?Object.assign:function(e,t){for(var n,s,u=a(e),c=1;c<arguments.length;c++){for(var l in n=Object(arguments[c]))o.call(n,l)&&(u[l]=n[l]);if(r){s=r(n);for(var f=0;f<s.length;f++)i.call(n,s[f])&&(u[s[f]]=n[s[f]])}}return u}},function(e,t,n){"use strict";n.r(t);var r={};n.r(r),n.d(r,"receiveCategories",(function(){return F})),n.d(r,"fetchDomainSuggestions",(function(){return L})),n.d(r,"receiveDomainAvailability",(function(){return R})),n.d(r,"receiveDomainSuggestionsSuccess",(function(){return D})),n.d(r,"receiveDomainSuggestionsError",(function(){return M}));var o={};n.r(o),n.d(o,"isAvailable",(function(){return _t})),n.d(o,"getCategories",(function(){return wt})),n.d(o,"__internalGetDomainSuggestions",(function(){return Ot}));var i={};n.r(i),n.d(i,"register",(function(){return Nt}));var a={};n.r(a),n.d(a,"setFeatures",(function(){return Vt})),n.d(a,"setFeaturesByType",(function(){return Yt})),n.d(a,"setPlans",(function(){return zt})),n.d(a,"setPrices",(function(){return qt})),n.d(a,"resetPlan",(function(){return Wt}));var s={};n.r(s),n.d(s,"getFeatures",(function(){return Gt})),n.d(s,"getFeaturesByType",(function(){return $t})),n.d(s,"getPlanBySlug",(function(){return Kt})),n.d(s,"getDefaultPaidPlan",(function(){return Jt})),n.d(s,"getDefaultFreePlan",(function(){return Qt})),n.d(s,"getSupportedPlans",(function(){return Xt})),n.d(s,"getPlanByPath",(function(){return Zt})),n.d(s,"getPlansDetails",(function(){return en})),n.d(s,"getPlansPaths",(function(){return tn})),n.d(s,"getPrices",(function(){return nn})),n.d(s,"isPlanEcommerce",(function(){return rn})),n.d(s,"isPlanFree",(function(){return on}));var u={};n.r(u),n.d(u,"getPrices",(function(){return an})),n.d(u,"getPlansDetails",(function(){return un}));var c={};n.r(c),n.d(c,"PLAN_FREE",(function(){return xt})),n.d(c,"PLAN_PERSONAL",(function(){return Pt})),n.d(c,"PLAN_PREMIUM",(function(){return jt})),n.d(c,"PLAN_BUSINESS",(function(){return It})),n.d(c,"PLAN_ECOMMERCE",(function(){return Ft})),n.d(c,"plansPaths",(function(){return Mt})),n.d(c,"register",(function(){return ln}));var l={};n.r(l),n.d(l,"getSite",(function(){return mn})),n.d(l,"getSiteDomains",(function(){return yn}));var f={};n.r(f),n.d(f,"getState",(function(){return gn})),n.d(f,"getNewSite",(function(){return bn})),n.d(f,"getNewSiteError",(function(){return Sn})),n.d(f,"isFetchingSite",(function(){return En})),n.d(f,"isNewSite",(function(){return _n})),n.d(f,"getSite",(function(){return wn})),n.d(f,"getSiteTitle",(function(){return On})),n.d(f,"isLaunched",(function(){return Cn})),n.d(f,"getSiteDomains",(function(){return Tn})),n.d(f,"getPrimarySiteDomain",(function(){return Nn})),n.d(f,"getSiteSubdomain",(function(){return An}));var p={};n.r(p),n.d(p,"Visibility",(function(){return vn})),n.d(p,"register",(function(){return Pn}));var d={};n.r(d),n.d(d,"setSidebarFullscreen",(function(){return Mn})),n.d(d,"unsetSidebarFullscreen",(function(){return kn})),n.d(d,"setStep",(function(){return Un})),n.d(d,"setDomain",(function(){return Hn})),n.d(d,"unsetDomain",(function(){return Bn})),n.d(d,"confirmDomainSelection",(function(){return Vn})),n.d(d,"setDomainSearch",(function(){return Yn})),n.d(d,"setPlan",(function(){return zn})),n.d(d,"unsetPlan",(function(){return qn})),n.d(d,"updatePlan",(function(){return Wn})),n.d(d,"launchSite",(function(){return Gn})),n.d(d,"openSidebar",(function(){return $n})),n.d(d,"closeSidebar",(function(){return Kn})),n.d(d,"openFocusedLaunch",(function(){return Jn})),n.d(d,"closeFocusedLaunch",(function(){return Qn})),n.d(d,"enableExperimental",(function(){return Xn})),n.d(d,"showSiteTitleStep",(function(){return Zn}));var h={};n.r(h),n.d(h,"getLaunchSequence",(function(){return er})),n.d(h,"getLaunchStep",(function(){return tr})),n.d(h,"getState",(function(){return nr})),n.d(h,"hasPaidDomain",(function(){return rr})),n.d(h,"getSelectedDomain",(function(){return or})),n.d(h,"getSelectedPlan",(function(){return ir})),n.d(h,"isStepCompleted",(function(){return ar})),n.d(h,"isFlowCompleted",(function(){return sr})),n.d(h,"isFlowStarted",(function(){return ur})),n.d(h,"getFirstIncompleteStep",(function(){return cr})),n.d(h,"isSiteTitleStepVisible",(function(){return lr}));var m={};n.r(m),n.d(m,"STORE_KEY",(function(){return In})),n.d(m,"register",(function(){return br}));var y={};n.r(y),n.d(y,"getAllFeatures",(function(){return wr})),n.d(y,"getRecommendedPlanSlug",(function(){return Or}));var v={};n.r(v),n.d(v,"featuresList",(function(){return Er})),n.d(v,"register",(function(){return Tr}));var g,b=n(0),S="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(g||(g={}));var E=function(){return(E=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e}).apply(this,arguments)};function _(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}function w(e,t){var n,r,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(o=a.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=t.call(e,a)}catch(s){i=[6,s],r=0}finally{n=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}function O(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,o,i=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(s){o={error:s}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a}var C,T,N,A,x=n(21),P=n.n(x).a,j={state:g.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},I=Object(b.combineReducers)({categories:function(e,t){return void 0===e&&(e=[]),"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(e,t){var n;return void 0===e&&(e=j),"FETCH_DOMAIN_SUGGESTIONS"===t.type?E(E({},e),{state:g.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?E(E({},e),{state:g.Success,data:E(E({},e.data),(n={},n[P(t.queryObject)]=t.suggestions,n)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?E(E({},e),{state:g.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(e,t){var n;return void 0===e&&(e={}),"RECEIVE_DOMAIN_AVAILABILITY"===t.type?E(E({},e),((n={})[t.domainName]=t.availability,n)):e}}),F=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},L=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},R=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},D=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},M=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}},k=n(5),U=n(11),H=n.n(U),B=n(3),V=n.n(B),Y=n(4),z=n.n(Y),q=n(22),W=n.n(q);C={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},T=["(","?"],N={")":["("],":":["?","?:"]},A=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var G={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function $(e){var t=function(e){for(var t,n,r,o,i=[],a=[];t=e.match(A);){for(n=t[0],(r=e.substr(0,t.index).trim())&&i.push(r);o=a.pop();){if(N[n]){if(N[n][0]===o){n=N[n][1]||n;break}}else if(T.indexOf(o)>=0||C[o]<C[n]){a.push(o);break}i.push(o)}N[n]||a.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&i.push(e),i.concat(a.reverse())}(e);return function(e){return function(e,t){var n,r,o,i,a,s,u=[];for(n=0;n<e.length;n++){if(a=e[n],i=G[a]){for(r=i.length,o=Array(r);r--;)o[r]=u.pop();try{s=i.apply(null,o)}catch(c){return c}}else s=t.hasOwnProperty(a)?t[a]:+a;u.push(s)}return u[0]}(t,e)}}var K={contextDelimiter:"",onMissingKey:null};function J(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},K)this.options[n]=void 0!==t&&n in t?t[n]:K[n]}J.prototype.getPluralForm=function(e,t){var n,r,o,i,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),i=$(r),o=function(e){return+i({n:e})}),a=this.pluralForms[e]=o),a(t)},J.prototype.dcnpgettext=function(e,t,n,r,o){var i,a,s;return i=void 0===o?0:this.getPluralForm(e,o),a=n,t&&(a=t+this.options.contextDelimiter+n),(s=this.data[e][a])&&s[i]?s[i]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===i?n:r)};var Q=n(23),X=n.n(Q),Z=n(24),ee=n.n(Z),te=n(12),ne=/%(((\d+)\$)|(\(([$_a-zA-Z][$_a-zA-Z0-9]*)\)))?[ +0#-]*\d*(\.(\d+|\*))?(ll|[lhqL])?([cduxXefgsp%])/g;function re(e,t){var n;if(!Array.isArray(t))for(t=new Array(arguments.length-1),n=1;n<arguments.length;n++)t[n-1]=arguments[n];return n=1,e.replace(ne,(function(){var e,r,o,i,a;return e=arguments[3],r=arguments[5],"%"===(i=arguments[9])?"%":("*"===(o=arguments[7])&&(o=t[n-1],n++),void 0!==r?t[0]&&"object"==typeof t[0]&&t[0].hasOwnProperty(r)&&(a=t[0][r]):(void 0===e&&(e=n),n++,a=t[e-1]),"f"===i?a=parseFloat(a)||0:"d"===i&&(a=parseInt(a)||0),void 0!==o&&("f"===i?a=a.toFixed(o):"s"===i&&(a=a.substr(0,o))),null!=a?a:"")}))}
15
- /*
16
- * Exposes number format capability
17
- *
18
- * @copyright Copyright (c) 2013 Kevin van Zonneveld (http://kvz.io) and Contributors (http://phpjs.org/authors).
19
- * @license See CREDITS.md
20
- * @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
21
- */function oe(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var o=isFinite(+e)?+e:0,i=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,s=void 0===n?".":n,u="";return(u=(i?function(e,t){var n=Math.pow(10,t);return""+(Math.round(e*n)/n).toFixed(t)}(o,i):""+Math.round(o)).split("."))[0].length>3&&(u[0]=u[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,a)),(u[1]||"").length<i&&(u[1]=u[1]||"",u[1]+=new Array(i-u[1].length+1).join("0")),u.join(s)}var ie=z()("i18n-calypso"),ae="number_format_decimals",se="number_format_thousands_sep",ue="messages",ce=[function(e){return e}],le={};function fe(){ye.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function pe(e){return Array.prototype.slice.call(e)}function de(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&fe("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",pe(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&fe("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",pe(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function he(e,t){return e.dcnpgettext(ue,t.context,t.original,t.plural,t.count)}function me(e,t){for(var n=ce.length-1;n>=0;n--){var r=ce[n](Object.assign({},t)),o=r.context?r.context+""+r.original:r.original;if(e.state.locale[o])return he(e.state.tannin,r)}return null}function ye(){if(!(this instanceof ye))return new ye;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:X()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new te.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}ye.throwErrors=!1,ye.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},ye.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},ye.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},ye.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",o=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return oe(e,n,r,o)},ye.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},ye.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],i=function(e,t){var n=!1===t?"":String(t);if(void 0!==le[n+e])return le[n+e];var r=ee()().update(e).digest("hex");return le[n+e]=t?r.substr(0,t):r},a=function(e){return function(t){return t.context?(t.original=i(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=i(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)ce.push(a(!1));else{var s=o.substr(5).indexOf("-");if(s<0){var u=Number(o.substr(5));ce.push(a(u))}else for(var c=Number(o.substr(5,s)),l=Number(o.substr(6+s)),f=c;f<=l;f++)ce.push(a(f))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new J(V()({},ue,this.state.locale)),this.state.numberFormatSettings.decimal_point=he(this.state.tannin,de([ae])),this.state.numberFormatSettings.thousands_sep=he(this.state.tannin,de([se])),this.state.numberFormatSettings.decimal_point===ae&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===se&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},ye.prototype.getLocale=function(){return this.state.locale},ye.prototype.getLocaleSlug=function(){return this.state.localeSlug},ye.prototype.getLocaleVariant=function(){return this.state.localeVariant},ye.prototype.isRtl=function(){return"rtl"===this.state.textDirection},ye.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},ye.prototype.hasTranslation=function(){return!!me(this,de(arguments))},ye.prototype.translate=function(){var e=de(arguments),t=me(this,e);if(t||(t=he(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=re.apply(void 0,H()(n))}catch(o){if(!window||!window.console)return;var r=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[r](o):window.console[r]("i18n sprintf error:",n)}}return e.components&&(t=W()({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},ye.prototype.reRenderTranslations=function(){ie("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},ye.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},ye.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)};var ve=ye,ge=n(13),be=n.n(ge),Se=n(25),Ee=n.n(Se),_e=n(26),we=n.n(_e),Oe=n(6),Ce=n.n(Oe),Te=n(27),Ne=n.n(Te),Ae=n(28),xe=n.n(Ae),Pe=n(7),je=n(1),Ie=n.n(je),Fe=n(29),Le=n.n(Fe),Re=n(30),De=n.n(Re),Me=n(31),ke=n(32);var Ue,He,Be=new ve,Ve=(Be.numberFormat.bind(Be),Be.translate.bind(Be)),Ye=(Be.configure.bind(Be),Be.setLocale.bind(Be),Be.getLocale.bind(Be),Be.getLocaleSlug.bind(Be),Be.getLocaleVariant.bind(Be),Be.isRtl.bind(Be),Be.addTranslations.bind(Be),Be.reRenderTranslations.bind(Be),Be.registerComponentUpdateHook.bind(Be),Be.registerTranslateHook.bind(Be),Be.state,Be.stateObserver,Be.on.bind(Be),Be.off.bind(Be),Be.emit.bind(Be),He={numberFormat:(Ue=Be).numberFormat.bind(Ue),translate:Ue.translate.bind(Ue)},function(e){function t(){var t=e.translate.bind(e);return Object.defineProperty(t,"localeSlug",{get:e.getLocaleSlug.bind(e)}),t}}(Be),function(e){var t={getCurrentValue:function(){return e.isRtl()},subscribe:function(t){return e.on("change",t),function(){return e.off("change",t)}}};function n(){return Object(Me.useSubscription)(t)}var r=Object(ke.createHigherOrderComponent)((function(e){return Object(je.forwardRef)((function(t,r){var o=n();return Object(Pe.createElement)(e,De()({},t,{isRtl:o,ref:r}))}))}),"WithRTL");return{useRtl:n,withRtl:r}}(Be)),ze=(Ye.useRtl,Ye.withRtl,"undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)),qe=new Uint8Array(16);function We(){if(!ze)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return ze(qe)}for(var Ge=[],$e=0;$e<256;++$e)Ge[$e]=($e+256).toString(16).substr(1);var Ke=function(e,t){var n=t||0,r=Ge;return[r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]]].join("")};var Je,Qe=function(e,t,n){var r=t&&n||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var o=(e=e||{}).random||(e.rng||We)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,t)for(var i=0;i<16;++i)t[r+i]=o[i];return t||Ke(o)},Xe=n(20),Ze=n.n(Xe),et=n(8),tt=n.n(et),nt=z()("wpcom-proxy-request"),rt="https://public-api.wordpress.com",ot=window.location.protocol+"//"+window.location.host,it=function(){var e=!1;try{window.postMessage({toString:function(){e=!0}},"*")}catch(t){}return e}(),at=function(){try{return new window.File(["a"],"test.jpg",{type:"image/jpeg"}),!0}catch(e){return!1}}(),st=null,ut=!1,ct={},lt=!!window.ProgressEvent&&!!window.FormData;nt('using "origin": %o',ot);var ft=function(e,t){var n=Object.assign({},e);nt("request(%o)",n),st||yt();var r=Qe();n.callback=r,n.supports_args=!0,n.supports_error_obj=!0,n.supports_progress=lt,n.method=String(n.method||"GET").toUpperCase(),nt("params object: %o",n);var o=new window.XMLHttpRequest;if(o.params=n,ct[r]=o,"function"==typeof t){var i=!1,a=function(e){if(!i){i=!0;var n=e.error||e.err||e;nt("error: ",n),nt("headers: ",e.headers),t(n,null,e.headers)}};o.addEventListener("load",(function(e){if(!i){i=!0;var n=e.response||o.response;nt("body: ",n),nt("headers: ",e.headers),t(null,n,e.headers)}})),o.addEventListener("abort",a),o.addEventListener("error",a)}return ut?dt(n):(nt("buffering API request since proxying <iframe> is not yet loaded"),Je.push(n)),o},pt=function(e,t){return"function"==typeof t?ft(e,t):new Promise((function(t,n){ft(e,(function(e,r){e?n(e):t(r)}))}))};function dt(e){nt("sending API request to proxy <iframe> %o",e),e.formData&&function(e){if(!window.chrome||!at)return;for(var t=0;t<e.length;t++){var n=mt(e[t][1]);n&&(e[t][1]=new window.File([n],n.name,{type:n.type}))}}(e.formData),st.contentWindow.postMessage(it?JSON.stringify(e):e,rt)}function ht(e){return e&&"[object File]"===Object.prototype.toString.call(e)}function mt(e){return ht(e)?e:"object"==typeof e&&ht(e.fileContents)?e.fileContents:null}function yt(){nt("install()"),st&&(nt("uninstall()"),window.removeEventListener("message",vt),document.body.removeChild(st),ut=!1,st=null),Je=[],window.addEventListener("message",vt),(st=document.createElement("iframe")).src=rt+"/wp-admin/rest-proxy/?v=2.0#"+ot,st.style.display="none",document.body.appendChild(st)}function vt(e){if(nt("onmessage"),e.origin===rt)if(e.source===st.contentWindow){var t=e.data;if(!t)return nt("no `data`, bailing");if("ready"!==t){if(it&&"string"==typeof t&&(t=JSON.parse(t)),t.upload||t.download)return function(e){nt('got "progress" event: %o',e);var t=ct[e.callbackId];if(t){var n=new tt.a("progress",e);(e.upload?t.upload:t).dispatchEvent(n)}}(t);if(!t.length)return nt("`e.data` doesn't appear to be an Array, bailing...");var n=t[t.length-1];if(!(n in ct))return nt("bailing, no matching request with callback: %o",n);var r=ct[n],o=r.params,i=t[0],a=t[1],s=t[2];if(207===a||delete ct[n],o.metaAPI?a="metaAPIupdated"===i?200:500:nt("got %o status code for URL: %o",a,o.path),"object"==typeof s&&(s.status=a),a&&2===Math.floor(a/100))!function(e,t,n){var r=new tt.a("load");r.data=r.body=r.response=t,r.headers=n,e.dispatchEvent(r)}(r,i,s);else!function(e,t,n){var r=new tt.a("error");r.error=r.err=t,r.headers=n,e.dispatchEvent(r)}(r,Ze()(o,a,i),s)}else!function(){if(nt('proxy <iframe> "load" event'),ut=!0,Je){for(var e=0;e<Je.length;e++)dt(Je[e]);Je=null}}()}else nt("ignoring message... iframe elements do not match");else nt("ignoring message... %o !== %o",e.origin,rt)}var gt=pt,bt=function(e){return{type:"WPCOM_REQUEST",request:e}},St=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},Et={WPCOM_REQUEST:function(e){var t=e.request;return gt(t)},FETCH_AND_PARSE:function(e){var t,n,r,o,i=e.resource,a=e.options;return t=void 0,n=void 0,o=function(){var e,t;return w(this,(function(n){switch(n.label){case 0:return[4,window.fetch(i,a)];case 1:return e=n.sent(),t={ok:e.ok},[4,e.json()];case 2:return[2,(t.body=n.sent(),t)]}}))},new((r=void 0)||(r=Promise))((function(e,i){function a(e){try{u(o.next(e))}catch(t){i(t)}}function s(e){try{u(o.throw(e))}catch(t){i(t)}}function u(t){t.done?e(t.value):new r((function(e){e(t.value)})).then(a,s)}u((o=o.apply(t,n||[])).next())}))},RELOAD_PROXY:function(){yt()},REQUEST_ALL_BLOGS_ACCESS:function(){return pt({metaAPI:{accessAllUsersBlogs:!0}})},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}},_t=function(e){var t,n;return w(this,(function(r){switch(r.label){case 0:t="https://public-api.wordpress.com/rest/v1.3/domains/"+encodeURIComponent(e)+"/is-available?is_cart_pre_check=true",r.label=1;case 1:return r.trys.push([1,3,,4]),[4,St(t)];case 2:return n=r.sent().body,[2,R(e,n)];case 3:return r.sent(),[2,R(e,{domain_name:e,mappable:"unknown",status:"unknown",supports_privacy:!1})];case 4:return[2]}}))};function wt(){var e;return w(this,(function(t){switch(t.label){case 0:return[4,St("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories")];case 1:return e=t.sent(),[2,F(e.body)]}}))}function Ot(e){var t,n;return w(this,(function(r){switch(r.label){case 0:return e.query?[4,L()]:[2,M("Empty query")];case 1:r.sent(),r.label=2;case 2:return r.trys.push([2,4,,5]),[4,bt({apiVersion:"1.1",path:"/domains/suggestions",query:Object(k.stringify)(e)})];case 3:return t=r.sent(),[3,5];case 4:return n=r.sent(),[2,M(n.message||Ve("Error while fetching server response"))];case 5:return t&&""!==t?[2,D(e,t)]:[2,M(Ve("Invalid response from the server"))]}}))}var Ct=function(e){function t(t,n){return E(E({include_wordpressdotcom:n.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:e},n),{query:t.trim().toLocaleLowerCase()})}return{getCategories:function(e){return function(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(O(arguments[t]));return e}(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1})),e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)})))},getDomainSuggestions:function(e,n,r){void 0===r&&(r={});var o=t(n,r);return Object(b.select)(S).__internalGetDomainSuggestions(o)},getDomainState:function(e){return e.domainSuggestions.state},getDomainErrorMessage:function(e){return e.domainSuggestions.errorMessage},getDomainSuggestionVendor:function(){return e},isLoadingDomainSuggestions:function(e,n,r){void 0===r&&(r={});var o=t(n,r);return Object(b.select)("core/data").isResolving(S,"__internalGetDomainSuggestions",[o])},__internalGetDomainSuggestions:function(e,t){return e.domainSuggestions.data[P(t)]},isAvailable:function(e,t){return e.availability[t]},getDomainAvailabilities:function(e){return e.availability}}},Tt=!1;function Nt(e){var t=e.vendor;return Tt||(Tt=!0,Object(b.registerStore)(S,{actions:r,controls:Et,reducer:I,resolvers:o,selectors:Ct(t)})),S}var At,xt="free_plan",Pt="personal-bundle",jt="value_bundle",It="business-bundle",Ft="ecommerce-bundle",Lt="automattic/onboard/plans",Rt=jt,Dt=[Pt,jt,It,Ft],Mt=["beginner","personal","premium","business","ecommerce"],kt=[xt,Pt,jt,It,Ft],Ut={USD:{format:"SYMBOL_THEN_AMOUNT",symbol:"$",decimal:2},GBP:{format:"SYMBOL_THEN_AMOUNT",symbol:"£",decimal:2},JPY:{format:"SYMBOL_THEN_AMOUNT",symbol:"¥",decimal:0},BRL:{format:"SYMBOL_THEN_AMOUNT",symbol:"R$",decimal:2},EUR:{format:"SYMBOL_THEN_AMOUNT",symbol:"€",decimal:2},NZD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NZ$",decimal:2},AUD:{format:"SYMBOL_THEN_AMOUNT",symbol:"A$",decimal:2},CAD:{format:"SYMBOL_THEN_AMOUNT",symbol:"C$",decimal:2},IDR:{format:"AMOUNT_THEN_SYMBOL",symbol:"Rp",decimal:0},INR:{format:"AMOUNT_THEN_SYMBOL",symbol:"₹",decimal:0},ILS:{format:"AMOUNT_THEN_SYMBOL",symbol:"₪",decimal:2},RUB:{format:"AMOUNT_THEN_SYMBOL",symbol:"₽",decimal:2},MXN:{format:"SYMBOL_THEN_AMOUNT",symbol:"MX$",decimal:2},SEK:{format:"AMOUNT_THEN_SYMBOL",symbol:"SEK",decimal:2},HUF:{format:"AMOUNT_THEN_SYMBOL",symbol:"Ft",decimal:0},CHF:{format:"AMOUNT_THEN_SYMBOL",symbol:"CHF",decimal:2},CZK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kč",decimal:2},DKK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Dkr",decimal:2},HKD:{format:"AMOUNT_THEN_SYMBOL",symbol:"HK$",decimal:2},NOK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kr",decimal:2},PHP:{format:"AMOUNT_THEN_SYMBOL",symbol:"₱",decimal:2},PLN:{format:"AMOUNT_THEN_SYMBOL",symbol:"PLN",decimal:2},SGD:{format:"SYMBOL_THEN_AMOUNT",symbol:"S$",decimal:2},TWD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NT$",decimal:0},THB:{format:"SYMBOL_THEN_AMOUNT",symbol:"฿",decimal:2},TRY:{format:"AMOUNT_THEN_SYMBOL",symbol:"TL",decimal:2}},Ht=((At={})[xt]="",At[Pt]="",At[jt]="",At[It]="",At[Ft]="",At),Bt=Object(b.combineReducers)({features:function(e,t){switch(void 0===e&&(e={}),t.type){case"SET_FEATURES":return t.features;default:return e}},featuresByType:function(e,t){switch(void 0===e&&(e=[]),t.type){case"SET_FEATURES_BY_TYPE":return t.featuresByType;default:return e}},plans:function(e,t){switch(void 0===e&&(e={}),t.type){case"SET_PLANS":return t.plans;default:return e}},prices:function(e,t){switch(void 0===e&&(e=Ht),t.type){case"SET_PRICES":return t.prices;default:return e}},supportedPlanSlugs:function(e,t){return void 0===e&&(e=kt),t.type,e}}),Vt=function(e){return{type:"SET_FEATURES",features:e}},Yt=function(e){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e}},zt=function(e){return{type:"SET_PLANS",plans:e}},qt=function(e){return{type:"SET_PRICES",prices:e}},Wt=function(){return{type:"RESET_PLAN"}},Gt=function(e){return e.features},$t=function(e){return e.featuresByType},Kt=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:void 0},Jt=function(){var e;return null===(e=Object(b.select)(Lt).getPlansDetails(""))||void 0===e?void 0:e.plans[Rt]},Qt=function(){var e;return null===(e=Object(b.select)(Lt).getPlansDetails(""))||void 0===e?void 0:e.plans[xt]},Xt=function(e){var t=[];return e.supportedPlanSlugs.forEach((function(n){n in e.plans&&t.push(e.plans[n])})),t},Zt=function(e,t){return t?Xt(e).find((function(e){return(null==e?void 0:e.pathSlug)===t})):void 0},en=function(e,t){return e},tn=function(e){return Xt(e).map((function(e){return null==e?void 0:e.pathSlug}))},nn=function(e,t){return e.prices},rn=function(e,t){return t===Ft},on=function(e,t){return t===xt};function an(e){var t,n,r;return void 0===e&&(e="en"),w(this,(function(o){switch(o.label){case 0:return[4,bt({path:"/plans",query:Object(k.stringify)({locale:e}),apiVersion:"1.5"})];case 1:return t=o.sent(),n=t.filter((function(e){return-1!==kt.indexOf(e.product_slug)})),r=n.reduce((function(e,t){return e[t.product_slug]=function(e){var t=Ut[e.currency_code],n=e.raw_price/12;return Number.isInteger(n)||(n=n.toFixed(t.decimal)),"AMOUNT_THEN_SYMBOL"===t.format?""+n+t.symbol:""+t.symbol+n}(t),e}),{}),[4,qt(r)];case 2:return o.sent(),[2]}}))}var sn={Free:xt,Personal:Pt,Premium:jt,Business:It,eCommerce:Ft};function un(e){var t,n,r;return void 0===e&&(e="en"),w(this,(function(o){switch(o.label){case 0:return o.trys.push([0,5,,6]),[4,St("https://public-api.wordpress.com/wpcom/v2/plans/details?locale="+encodeURIComponent(e),{mode:"cors",credentials:"omit"})];case 1:return t=o.sent().body,n={},r={},t.features.forEach((function(e){var t;r[e.id]={id:e.id,name:e.name,description:e.description,type:null!==(t=e.type)&&void 0!==t?t:"checkbox"}})),t.plans.forEach((function(e){var t,r={title:e.short_name,description:e.tagline,productId:e.products[0].plan_id,storeSlug:sn[e.nonlocalized_short_name],features:e.highlighted_features,pathSlug:null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase(),featuresSlugs:e.features.reduce((function(e,t){var n;return E(E({},e),((n={})[t]=!0,n))}),{}),storage:e.storage};"Free"===e.nonlocalized_short_name&&(r.isFree=!0),"Premium"===e.nonlocalized_short_name&&(r.isPopular=!0),n[sn[e.nonlocalized_short_name]]=r})),[4,zt(n)];case 2:return o.sent(),[4,Vt(r)];case 3:return o.sent(),[4,Yt(t.features_by_type)];case 4:return o.sent(),[3,6];case 5:return o.sent(),[2];case 6:return[2]}}))}var cn=!1;function ln(){return cn||(cn=!0,Object(b.registerStore)(Lt,{resolvers:u,actions:a,controls:Et,reducer:Bt,selectors:s})),Lt}var fn="automattic/site",pn=Object(b.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(e,t){switch(void 0===e&&(e=!1),t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),dn=Object(b.combineReducers)({newSite:pn,sites:function(e,t){var n,r;if(void 0===e&&(e={}),"RECEIVE_SITE"===t.type)return E(E({},e),((n={})[t.siteId]=t.response,n));if("RECEIVE_SITE_FAILED"===t.type){var o=e,i=t.siteId,a=(o[i],_(o,["symbol"==typeof i?i:i+""]));return E({},a)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?E(E({},e),((r={})[t.siteId]=E(E({},e[t.siteId]),{name:t.title}),r)):e},launchStatus:function(e,t){var n;return void 0===e&&(e={}),"LAUNCHED_SITE"===t.type?E(E({},e),((n={})[t.siteId]=!0,n)):e},sitesDomains:function(e,t){var n;return void 0===e&&(e={}),"RECEIVE_SITE_DOMAINS"===t.type?E(E({},e),((n={})[t.siteId]=t.domains,n)):e}});function hn(e){var t=function(){return{type:"FETCH_NEW_SITE"}},n=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},r=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};var o=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},i=function(e){return{type:"LAUNCHED_SITE",siteId:e}};return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:function(e,t){return w(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,4]),[4,bt({path:"/sites/"+encodeURIComponent(e)+"/settings",apiVersion:"1.4",body:{blogname:t},method:"POST"})];case 1:return n.sent(),[4,o(e,t)];case 2:return n.sent(),[3,4];case 3:return n.sent(),[3,4];case 4:return[2]}}))},receiveSiteTitle:o,fetchNewSite:t,receiveNewSite:n,receiveNewSiteFailed:r,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:function(t){var o,i,a,s,u,c;return w(this,(function(l){switch(l.label){case 0:return[4,{type:"FETCH_NEW_SITE"}];case 1:l.sent(),l.label=2;case 2:return l.trys.push([2,5,,7]),o=t.authToken,i=_(t,["authToken"]),a={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},s=E(E(E({},a),i),{validate:!1}),[4,bt({path:"/sites/new",apiVersion:"1.1",method:"post",body:s,token:o})];case 3:return u=l.sent(),[4,n(u)];case 4:return l.sent(),[2,!0];case 5:return c=l.sent(),[4,r(c)];case 6:return l.sent(),[2,!1];case 7:return[2]}}))},receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:function(e){return w(this,(function(t){switch(t.label){case 0:return[4,bt({path:"/sites/"+e+"/launch",apiVersion:"1.1",method:"post"})];case 1:return t.sent(),[4,i(e)];case 2:return t.sent(),[2,!0]}}))},launchedSite:i,getCart:function(e){return w(this,(function(t){switch(t.label){case 0:return[4,bt({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"})];case 1:return[2,t.sent()]}}))},setCart:function(e,t){return w(this,(function(n){switch(n.label){case 0:return[4,bt({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t})];case 1:return[2,n.sent()]}}))}}}function mn(e){var t;return w(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,5]),[4,bt({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"})];case 1:return t=n.sent(),[4,Object(b.dispatch)(fn).receiveSite(e,t)];case 2:return n.sent(),[3,5];case 3:return n.sent(),[4,Object(b.dispatch)(fn).receiveSiteFailed(e,void 0)];case 4:return n.sent(),[3,5];case 5:return[2]}}))}function yn(e){var t;return w(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,4]),[4,bt({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"})];case 1:return t=n.sent(),[4,Object(b.dispatch)(fn).receiveSiteDomains(e,null==t?void 0:t.domains)];case 2:return n.sent(),[3,4];case 3:return n.sent(),[3,4];case 4:return[2]}}))}var vn,gn=function(e){return e},bn=function(e){return e.newSite.data},Sn=function(e){return e.newSite.error},En=function(e){return e.newSite.isFetching},_n=function(e){return!!e.newSite.data},wn=function(e,t){return e.sites[t]},On=function(e,t){var n;return null===(n=Object(b.select)(fn).getSite(t))||void 0===n?void 0:n.name},Cn=function(e,t){return e.launchStatus[t]},Tn=function(e,t){return e.sitesDomains[t]},Nn=function(e,t){var n;return null===(n=Object(b.select)(fn).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},An=function(e,t){var n;return null===(n=Object(b.select)(fn).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))};!function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(vn||(vn={}));var xn=!1;function Pn(e){return xn||(xn=!0,Object(b.registerStore)(fn,{actions:hn(e),controls:Et,reducer:dn,resolvers:l,selectors:f})),fn}var jn=n(2),In="automattic/launch",Fn=window._currentSiteId,Ln={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},Rn=[Ln.Name,Ln.Domain,Ln.Plan,Ln.Final],Dn=Object(b.combineReducers)({step:function(e,t){return void 0===e&&(e=Ln.Name),"SET_STEP"===t.type?t.step:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(e,t){return void 0===e&&(e=!1),"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(e,t){return void 0===e&&(e=""),"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},plan:function(e,t){return"SET_PLAN"===t.type?t.plan:"UNSET_PLAN"!==t.type?e:void 0},isSidebarOpen:function(e,t){return void 0===e&&(e=!1),"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(e,t){return void 0===e&&(e=!1),"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isExperimental:function(e,t){return void 0===e&&(e=!1),"ENABLE_EXPERIMENTAL"===t.type||e},isFocusedLaunchOpen:function(e,t){return void 0===e&&(e=!1),"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(e,t){return void 0===e&&(e=!1),"SHOW_SITE_TITLE_STEP"===t.type||e}}),Mn=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},kn=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},Un=function(e){return{type:"SET_STEP",step:e}},Hn=function(e){return{type:"SET_DOMAIN",domain:e}},Bn=function(){return{type:"UNSET_DOMAIN"}},Vn=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},Yn=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},zn=function(e){return{type:"SET_PLAN",plan:e}},qn=function(){return{type:"UNSET_PLAN"}};function Wn(e){var t;return w(this,(function(n){switch(n.label){case 0:return[4,Object(jn.select)("automattic/onboard/plans","getPlanBySlug",e)];case 1:return t=n.sent(),[4,zn(t)];case 2:return n.sent(),[2]}}))}function Gn(){return w(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,Object(jn.dispatch)("automattic/site","launchSite",Fn)];case 1:return[2,e.sent()];case 2:return e.sent(),[3,3];case 3:return[2]}}))}var $n=function(){return{type:"OPEN_SIDEBAR"}},Kn=function(){return{type:"CLOSE_SIDEBAR"}},Jn=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},Qn=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},Xn=function(){return{type:"ENABLE_EXPERIMENTAL"}},Zn=function(){return{type:"SHOW_SITE_TITLE_STEP"}},er=function(){return Rn},tr=function(){return Ln},nr=function(e){return e},rr=function(e){return!!e.domain&&!e.domain.is_free},or=function(e){return e.domain},ir=function(e){return e.plan},ar=function(e,t){if(t===Ln.Plan)return!!ir(e);if(t===Ln.Name){var n=Object(b.select)("core").getEntityRecord("root","site",void 0);return!!(null==n?void 0:n.title)}return t===Ln.Domain&&(!!or(e)||e.confirmedDomainSelection)},sr=function(e){return Rn.slice(0,Rn.length-1).every((function(t){return ar(e,t)}))},ur=function(e){return Rn.some((function(t){return ar(e,t)}))},cr=function(e){return Rn.find((function(t){return!ar(e,t)}))},lr=function(e){return e.isSiteTitleStepVisible};var fr,pr,dr,hr,mr,yr,vr=(pr=fr="WP_LAUNCH",dr=fr+"_TS",hr={},mr={getItem:function(e){return hr.hasOwnProperty(e)?hr[e]:null},setItem:function(e,t){hr[e]=String(t)},removeItem:function(e){delete hr[e]}},yr=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:mr,{storageKey:pr,storage:{getItem:function(e){var t=yr.getItem(dr);return t&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(t)&&!new URLSearchParams(window.location.search).has("fresh")?yr.getItem(e):(yr.removeItem(pr),yr.removeItem(dr),null)},setItem:function(e,t){yr.setItem(dr,JSON.stringify(Date.now())),yr.setItem(e,t)}}});Object(b.use)(b.plugins.persistence,vr);var gr=!1;function br(){return gr||(gr=!0,Object(b.registerStore)(In,{actions:d,controls:jn.controls,reducer:Dn,selectors:h,persist:["domain","domainSearch","plan","confirmedDomainSelection","isExperimental","isSiteTitleStepVisible"]})),In}var Sr="automattic/wpcom-features",Er={domain:{id:"domain",minSupportedPlan:Pt},store:{id:"store",minSupportedPlan:Ft},seo:{id:"seo",minSupportedPlan:It},plugins:{id:"plugins",minSupportedPlan:It},"ad-free":{id:"ad-free",minSupportedPlan:Pt},"image-storage":{id:"image-storage",minSupportedPlan:jt},"video-storage":{id:"video-storage",minSupportedPlan:jt},support:{id:"support",minSupportedPlan:It}},_r=function(e){return void 0===e&&(e=Er),e},wr=function(e){return e},Or=function(e,t){var n=wr(e);return t.length?t.reduce((function(e,t){var r=n[t].minSupportedPlan;return Dt.indexOf(r)>Dt.indexOf(e)?r:e}),n[t[0]].minSupportedPlan):""},Cr=!1;function Tr(){return Cr||(Cr=!0,Object(b.registerStore)(Sr,{controls:jn.controls,reducer:_r,selectors:y})),Sr}i.register({vendor:"variation2_front"}),c.register(),p.register({client_id:"",client_secret:""}),m.register(),v.register()}]));
1
+ !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=87)}([function(e,t){!function(){e.exports=this.wp.data}()},function(e,t,n){var r=n(3);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}},function(e,t,n){"use strict";n.d(t,"d",(function(){return r})),n.d(t,"e",(function(){return o})),n.d(t,"f",(function(){return i})),n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return u})),n.d(t,"g",(function(){return s})),n.d(t,"a",(function(){return c})),n.d(t,"i",(function(){return l})),n.d(t,"j",(function(){return f})),n.d(t,"k",(function(){return p})),n.d(t,"h",(function(){return d}));var r="free_plan",o="personal-bundle",i="value_bundle",a="business-bundle",u="ecommerce-bundle",s="automattic/onboard/plans",c=i,l=[o,i,a,u],f=["beginner","personal","premium","business","ecommerce"],p=[r,o,i,a,u],d={USD:{format:"SYMBOL_THEN_AMOUNT",symbol:"$",decimal:2},GBP:{format:"SYMBOL_THEN_AMOUNT",symbol:"£",decimal:2},JPY:{format:"SYMBOL_THEN_AMOUNT",symbol:"¥",decimal:0},BRL:{format:"SYMBOL_THEN_AMOUNT",symbol:"R$",decimal:2},EUR:{format:"SYMBOL_THEN_AMOUNT",symbol:"€",decimal:2},NZD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NZ$",decimal:2},AUD:{format:"SYMBOL_THEN_AMOUNT",symbol:"A$",decimal:2},CAD:{format:"SYMBOL_THEN_AMOUNT",symbol:"C$",decimal:2},IDR:{format:"AMOUNT_THEN_SYMBOL",symbol:"Rp",decimal:0},INR:{format:"AMOUNT_THEN_SYMBOL",symbol:"₹",decimal:0},ILS:{format:"AMOUNT_THEN_SYMBOL",symbol:"₪",decimal:2},RUB:{format:"AMOUNT_THEN_SYMBOL",symbol:"₽",decimal:2},MXN:{format:"SYMBOL_THEN_AMOUNT",symbol:"MX$",decimal:2},SEK:{format:"AMOUNT_THEN_SYMBOL",symbol:"SEK",decimal:2},HUF:{format:"AMOUNT_THEN_SYMBOL",symbol:"Ft",decimal:0},CHF:{format:"AMOUNT_THEN_SYMBOL",symbol:"CHF",decimal:2},CZK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kč",decimal:2},DKK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Dkr",decimal:2},HKD:{format:"AMOUNT_THEN_SYMBOL",symbol:"HK$",decimal:2},NOK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kr",decimal:2},PHP:{format:"AMOUNT_THEN_SYMBOL",symbol:"₱",decimal:2},PLN:{format:"AMOUNT_THEN_SYMBOL",symbol:"PLN",decimal:2},SGD:{format:"SYMBOL_THEN_AMOUNT",symbol:"S$",decimal:2},TWD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NT$",decimal:0},THB:{format:"SYMBOL_THEN_AMOUNT",symbol:"฿",decimal:2},TRY:{format:"AMOUNT_THEN_SYMBOL",symbol:"TL",decimal:2}}},function(e,t){e.exports=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(e,t,n){"use strict";n.d(t,"c",(function(){return D})),n.d(t,"b",(function(){return M})),n.d(t,"a",(function(){return k}));var r=n(35),o=n.n(r),i="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),a=new Uint8Array(16);function u(){if(!i)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return i(a)}for(var s=[],c=0;c<256;++c)s[c]=(c+256).toString(16).substr(1);var l=function(e,t){var n=t||0,r=s;return[r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]]].join("")};var f,p=function(e,t,n){var r=t&&n||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var o=(e=e||{}).random||(e.rng||u)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,t)for(var i=0;i<16;++i)t[r+i]=o[i];return t||l(o)},d=n(36),h=n.n(d),m=n(18),g=n.n(m),v=n(12),y=n.n(v)()("wpcom-proxy-request"),b="https://public-api.wordpress.com",S=window.location.protocol+"//"+window.location.host,E=function(){var e=!1;try{window.postMessage({toString:function(){e=!0}},"*")}catch(t){}return e}(),_=function(){try{return new window.File(["a"],"test.jpg",{type:"image/jpeg"}),!0}catch(e){return!1}}(),O=null,w=!1,C={},T=!!window.ProgressEvent&&!!window.FormData;y('using "origin": %o',S);var x=function(e,t){var n=Object.assign({},e);y("request(%o)",n),O||P();var r=p();n.callback=r,n.supports_args=!0,n.supports_error_obj=!0,n.supports_progress=T,n.method=String(n.method||"GET").toUpperCase(),y("params object: %o",n);var o=new window.XMLHttpRequest;if(o.params=n,C[r]=o,"function"==typeof t){var i=!1,a=function(e){if(!i){i=!0;var n=e.error||e.err||e;y("error: ",n),y("headers: ",e.headers),t(n,null,e.headers)}};o.addEventListener("load",(function(e){if(!i){i=!0;var n=e.response||o.response;y("body: ",n),y("headers: ",e.headers),t(null,n,e.headers)}})),o.addEventListener("abort",a),o.addEventListener("error",a)}return w?N(n):(y("buffering API request since proxying <iframe> is not yet loaded"),f.push(n)),o},A=function(e,t){return"function"==typeof t?x(e,t):new Promise((function(t,n){x(e,(function(e,r){e?n(e):t(r)}))}))};function N(e){y("sending API request to proxy <iframe> %o",e),e.formData&&function(e){if(!window.chrome||!_)return;for(var t=0;t<e.length;t++){var n=I(e[t][1]);n&&(e[t][1]=new window.File([n],n.name,{type:n.type}))}}(e.formData),O.contentWindow.postMessage(E?JSON.stringify(e):e,b)}function j(e){return e&&"[object File]"===Object.prototype.toString.call(e)}function I(e){return j(e)?e:"object"==typeof e&&j(e.fileContents)?e.fileContents:null}function P(){y("install()"),O&&(y("uninstall()"),window.removeEventListener("message",R),document.body.removeChild(O),w=!1,O=null),f=[],window.addEventListener("message",R),(O=document.createElement("iframe")).src=b+"/wp-admin/rest-proxy/?v=2.0#"+S,O.style.display="none",document.body.appendChild(O)}function R(e){if(y("onmessage"),e.origin===b)if(e.source===O.contentWindow){var t=e.data;if(!t)return y("no `data`, bailing");if("ready"!==t){if(E&&"string"==typeof t&&(t=JSON.parse(t)),t.upload||t.download)return function(e){y('got "progress" event: %o',e);var t=C[e.callbackId];if(t){var n=new g.a("progress",e);(e.upload?t.upload:t).dispatchEvent(n)}}(t);if(!t.length)return y("`e.data` doesn't appear to be an Array, bailing...");var n=t[t.length-1];if(!(n in C))return y("bailing, no matching request with callback: %o",n);var r=C[n],o=r.params,i=t[0],a=t[1],u=t[2];if(207===a||delete C[n],o.metaAPI?a="metaAPIupdated"===i?200:500:y("got %o status code for URL: %o",a,o.path),"object"==typeof u&&(u.status=a),a&&2===Math.floor(a/100))!function(e,t,n){var r=new g.a("load");r.data=r.body=r.response=t,r.headers=n,e.dispatchEvent(r)}(r,i,u);else!function(e,t,n){var r=new g.a("error");r.error=r.err=t,r.headers=n,e.dispatchEvent(r)}(r,h()(o,a,i),u)}else!function(){if(y('proxy <iframe> "load" event'),w=!0,f){for(var e=0;e<f.length;e++)N(f[e]);f=null}}()}else y("ignoring message... iframe elements do not match");else y("ignoring message... %o !== %o",e.origin,b)}var L,F=A,D=function(e){return{type:"WPCOM_REQUEST",request:e}},M=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},k={WPCOM_REQUEST:function(e){var t=e.request;return F(t)},FETCH_AND_PARSE:(L=o()(regeneratorRuntime.mark((function e(t){var n,r,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return o=e.sent,e.t0=o.ok,e.next=7,o.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(e){return L.apply(this,arguments)}),RELOAD_PROXY:function(){P()},REQUEST_ALL_BLOGS_ACCESS:function(){return A({metaAPI:{accessAllUsersBlogs:!0}})},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},function(e,t,n){"use strict";n.d(t,"b",(function(){return o})),n.d(t,"a",(function(){return r}));var r,o="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},function(e,t,n){"use strict";n.r(t),n.d(t,"receiveCategories",(function(){return r})),n.d(t,"fetchDomainSuggestions",(function(){return o})),n.d(t,"receiveDomainAvailability",(function(){return i})),n.d(t,"receiveDomainSuggestionsSuccess",(function(){return a})),n.d(t,"receiveDomainSuggestionsError",(function(){return u}));var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},o=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},i=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},u=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},function(e,t){!function(){e.exports=this.React}()},function(e,t,n){"use strict";var r=n(24);n.d(t,"DomainSuggestions",(function(){return r}));var o=n(22);n.d(t,"Plans",(function(){return o}));var i=n(32);n.d(t,"Site",(function(){return i}));var a=n(33);n.d(t,"Launch",(function(){return a}));var u=n(34);n.d(t,"WPCOMFeatures",(function(){return u}))},function(e,t){!function(){e.exports=this.wp.dataControls}()},function(e,t,n){var r=n(64),o=n(65),i=n(27),a=n(66);e.exports=function(e){return r(e)||o(e)||i(e)||a()}},function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},o={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},i=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:o;return{storageKey:t,storage:{getItem:function(e){var r=i.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?i.getItem(e):(i.removeItem(t),i.removeItem(n),null)},setItem:function(e,t){i.setItem(n,JSON.stringify(Date.now())),i.setItem(e,t)}}}}n.d(t,"a",(function(){return r}))},function(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(63)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=n(38),o=n.n(r).a},function(e,t,n){"use strict";var r=n(68),o=n(69),i=n(28);e.exports={formats:i,parse:o,stringify:r}},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){!function(){e.exports=this.wp.element}()},function(e,t,n){var r=n(85);e.exports=function(e,t){if(null==e)return{};var n,o,i=r(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)n=a[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}},function(e,t){var n,r=window.ProgressEvent,o=!!r;try{n=new r("loaded"),o="loaded"===n.type,n=null}catch(i){o=!1}e.exports=o?r:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,o=Array.isArray,i=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var i=t[r],a=i.obj[i.prop],u=Object.keys(a),s=0;s<u.length;++s){var c=u[s],l=a[c];"object"==typeof l&&null!==l&&-1===n.indexOf(l)&&(t.push({obj:a,prop:c}),n.push(l))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(o(n)){for(var r=[],i=0;i<n.length;++i)void 0!==n[i]&&r.push(n[i]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(o){return r}},encode:function(e,t,n){if(0===e.length)return e;var r=e;if("symbol"==typeof e?r=Symbol.prototype.toString.call(e):"string"!=typeof e&&(r=String(e)),"iso-8859-1"===n)return escape(r).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var o="",a=0;a<r.length;++a){var u=r.charCodeAt(a);45===u||46===u||95===u||126===u||u>=48&&u<=57||u>=65&&u<=90||u>=97&&u<=122?o+=r.charAt(a):u<128?o+=i[u]:u<2048?o+=i[192|u>>6]+i[128|63&u]:u<55296||u>=57344?o+=i[224|u>>12]+i[128|u>>6&63]+i[128|63&u]:(a+=1,u=65536+((1023&u)<<10|1023&r.charCodeAt(a)),o+=i[240|u>>18]+i[128|u>>12&63]+i[128|u>>6&63]+i[128|63&u])}return o},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(o(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,i){if(!n)return t;if("object"!=typeof n){if(o(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(i&&(i.plainObjects||i.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var u=t;return o(t)&&!o(n)&&(u=a(t,i)),o(t)&&o(n)?(n.forEach((function(n,o){if(r.call(t,o)){var a=t[o];a&&"object"==typeof a&&n&&"object"==typeof n?t[o]=e(a,n,i):t.push(n)}else t[o]=n})),t):Object.keys(n).reduce((function(t,o){var a=n[o];return r.call(t,o)?t[o]=e(t[o],a,i):t[o]=a,t}),u)}}},function(e,t,n){"use strict";var r=n(31),o=n(30);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function u(e){return 1===e.length?"0"+e:e}function s(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=o,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),o=0;o<e.length;o+=2)n.push(parseInt(e[o]+e[o+1],16))}else for(var r=0,o=0;o<e.length;o++){var a=e.charCodeAt(o);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):i(e,o)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++o)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|128)}else for(o=0;o<e.length;o++)n[o]=0|e[o];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=u(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e[r];"little"===t&&(o=a(o)),n+=s(o.toString(16))}return n},t.zero2=u,t.zero8=s,t.join32=function(e,t,n,o){var i=n-t;r(i%4==0);for(var a=new Array(i/4),u=0,s=t;u<a.length;u++,s+=4){var c;c="big"===o?e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3]:e[s+3]<<24|e[s+2]<<16|e[s+1]<<8|e[s],a[u]=c>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,o=0;r<e.length;r++,o+=4){var i=e[r];"big"===t?(n[o]=i>>>24,n[o+1]=i>>>16&255,n[o+2]=i>>>8&255,n[o+3]=255&i):(n[o+3]=i>>>24,n[o+2]=i>>>16&255,n[o+1]=i>>>8&255,n[o]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,o){return e+t+n+r+o>>>0},t.sum64=function(e,t,n,r){var o=e[t],i=r+e[t+1]>>>0,a=(i<r?1:0)+n+o;e[t]=a>>>0,e[t+1]=i},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,o,i,a,u){var s=0,c=t;return s+=(c=c+r>>>0)<t?1:0,s+=(c=c+i>>>0)<i?1:0,e+n+o+a+(s+=(c=c+u>>>0)<u?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,o,i,a,u){return t+r+i+u>>>0},t.sum64_5_hi=function(e,t,n,r,o,i,a,u,s,c){var l=0,f=t;return l+=(f=f+r>>>0)<t?1:0,l+=(f=f+i>>>0)<i?1:0,l+=(f=f+u>>>0)<u?1:0,e+n+o+a+s+(l+=(f=f+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,o,i,a,u,s,c){return t+r+i+u+c>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t,n){"use strict";n.r(t),n.d(t,"PLAN_FREE",(function(){return s.d})),n.d(t,"PLAN_PERSONAL",(function(){return s.e})),n.d(t,"PLAN_PREMIUM",(function(){return s.f})),n.d(t,"PLAN_BUSINESS",(function(){return s.b})),n.d(t,"PLAN_ECOMMERCE",(function(){return s.c})),n.d(t,"plansPaths",(function(){return s.j})),n.d(t,"register",(function(){return B}));var r={};n.r(r),n.d(r,"setFeatures",(function(){return d})),n.d(r,"setFeaturesByType",(function(){return h})),n.d(r,"setPlans",(function(){return m})),n.d(r,"setPrices",(function(){return g})),n.d(r,"resetPlan",(function(){return v}));var o={};n.r(o),n.d(o,"getFeatures",(function(){return y})),n.d(o,"getFeaturesByType",(function(){return b})),n.d(o,"getPlanBySlug",(function(){return S})),n.d(o,"getDefaultPaidPlan",(function(){return E})),n.d(o,"getDefaultFreePlan",(function(){return _})),n.d(o,"getSupportedPlans",(function(){return O})),n.d(o,"getPlanByPath",(function(){return w})),n.d(o,"getPlansDetails",(function(){return C})),n.d(o,"getPlansPaths",(function(){return T})),n.d(o,"getPrices",(function(){return x})),n.d(o,"isPlanEcommerce",(function(){return A})),n.d(o,"isPlanFree",(function(){return N}));var i={};n.r(i),n.d(i,"getPrices",(function(){return M})),n.d(i,"getPlansDetails",(function(){return U}));var a,u=n(0),s=n(2),c=n(3),l=n.n(c),f=(a={},l()(a,s.d,""),l()(a,s.e,""),l()(a,s.f,""),l()(a,s.b,""),l()(a,s.c,""),a),p=Object(u.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return t.features;default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return t.featuresByType;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return t.plans;default:return e}},prices:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PRICES":return t.prices;default:return e}},supportedPlanSlugs:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s.k,t=arguments.length>1?arguments[1]:void 0;return t.type,e}}),d=function(e){return{type:"SET_FEATURES",features:e}},h=function(e){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e}},m=function(e){return{type:"SET_PLANS",plans:e}},g=function(e){return{type:"SET_PRICES",prices:e}},v=function(){return{type:"RESET_PLAN"}},y=function(e){return e.features},b=function(e){return e.featuresByType},S=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:void 0},E=function(e,t){var n;return null===(n=Object(u.select)(s.g).getPlansDetails(t))||void 0===n?void 0:n.plans[s.a]},_=function(e,t){var n;return null===(n=Object(u.select)(s.g).getPlansDetails(t))||void 0===n?void 0:n.plans[s.d]},O=function(e){var t=[];return e.supportedPlanSlugs.forEach((function(n){n in e.plans&&t.push(e.plans[n])})),t},w=function(e,t){return t?O(e).find((function(e){return(null==e?void 0:e.pathSlug)===t})):void 0},C=function(e,t){return e},T=function(e){return O(e).map((function(e){return null==e?void 0:e.pathSlug}))},x=function(e,t){return e.prices},A=function(e,t){return t===s.c},N=function(e,t){return t===s.d},j=n(1),I=n.n(j),P=n(14),R=n(4),L=regeneratorRuntime.mark(M),F=regeneratorRuntime.mark(U);function D(e){var t=s.h[e.currency_code],n=e.raw_price/12;return Number.isInteger(n)||(n=n.toFixed(t.decimal)),"AMOUNT_THEN_SYMBOL"===t.format?"".concat(n).concat(t.symbol):"".concat(t.symbol).concat(n)}function M(){var e,t,n,r,o=arguments;return regeneratorRuntime.wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return e=o.length>0&&void 0!==o[0]?o[0]:"en",i.next=3,Object(R.c)({path:"/plans",query:Object(P.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=i.sent,n=t.filter((function(e){return-1!==s.k.indexOf(e.product_slug)})),r=n.reduce((function(e,t){return e[t.product_slug]=D(t),e}),{}),i.next=8,g(r);case 8:case"end":return i.stop()}}),L)}var k={Free:s.d,Personal:s.e,Premium:s.f,Business:s.b,eCommerce:s.c};function U(){var e,t,n,r,o,i=arguments;return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return e=i.length>0&&void 0!==i[0]?i[0]:"en",a.prev=1,a.next=4,Object(R.b)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 4:return t=a.sent,n=t.body,r={},o={},n.features.forEach((function(e){var t;o[e.id]={id:e.id,name:e.name,description:e.description,type:null!==(t=e.type)&&void 0!==t?t:"checkbox"}})),n.plans.forEach((function(e){var t,n={title:e.short_name,description:e.tagline,productId:e.products[0].plan_id,storeSlug:k[e.nonlocalized_short_name],features:e.highlighted_features,pathSlug:null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase(),featuresSlugs:e.features.reduce((function(e,t){return I()(I()({},e),{},l()({},t,!0))}),{}),storage:e.storage};"Free"===e.nonlocalized_short_name&&(n.isFree=!0),"Premium"===e.nonlocalized_short_name&&(n.isPopular=!0),r[k[e.nonlocalized_short_name]]=n})),a.next=12,m(r);case 12:return a.next=14,d(o);case 14:return a.next=16,h(n.features_by_type);case 16:a.next=21;break;case 18:return a.prev=18,a.t0=a.catch(1),a.abrupt("return");case 21:case"end":return a.stop()}}),F,null,[[1,18]])}var H=!1;function B(){return H||(H=!0,Object(u.registerStore)(s.g,{resolvers:i,actions:r,controls:R.a,reducer:p,selectors:o})),s.g}},function(e,t,n){"use strict";var r,o="object"==typeof Reflect?Reflect:null,i=o&&"function"==typeof o.apply?o.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=o&&"function"==typeof o.ownKeys?o.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function u(){u.init.call(this)}e.exports=u,u.EventEmitter=u,u.prototype._events=void 0,u.prototype._eventsCount=0,u.prototype._maxListeners=void 0;var s=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function l(e){return void 0===e._maxListeners?u.defaultMaxListeners:e._maxListeners}function f(e,t,n,r){var o,i,a,u;if(c(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),a=i[t]),void 0===a)a=i[t]=n,++e._eventsCount;else if("function"==typeof a?a=i[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(o=l(e))>0&&a.length>o&&!a.warned){a.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=e,s.type=t,s.count=a.length,u=s,console&&console.warn&&console.warn(u)}return e}function p(){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 d(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},o=p.bind(r);return o.listener=n,r.wrapFn=o,o}function h(e,t,n){var r=e._events;if(void 0===r)return[];var o=r[t];return void 0===o?[]:"function"==typeof o?n?[o.listener||o]:[o]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(o):g(o,o.length)}function m(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function g(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(u,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),u.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},u.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},u.prototype.getMaxListeners=function(){return l(this)},u.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,o=this._events;if(void 0!==o)r=r&&void 0===o.error;else if(!r)return!1;if(r){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var s=o[e];if(void 0===s)return!1;if("function"==typeof s)i(s,this,t);else{var c=s.length,l=g(s,c);for(n=0;n<c;++n)i(l[n],this,t)}return!0},u.prototype.addListener=function(e,t){return f(this,e,t,!1)},u.prototype.on=u.prototype.addListener,u.prototype.prependListener=function(e,t){return f(this,e,t,!0)},u.prototype.once=function(e,t){return c(t),this.on(e,d(this,e,t)),this},u.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,d(this,e,t)),this},u.prototype.removeListener=function(e,t){var n,r,o,i,a;if(c(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(o=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){a=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,o),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},u.prototype.off=u.prototype.removeListener,u.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var o,i=Object.keys(n);for(r=0;r<i.length;++r)"removeListener"!==(o=i[r])&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},u.prototype.listeners=function(e){return h(this,e,!0)},u.prototype.rawListeners=function(e){return h(this,e,!1)},u.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):m.call(e,t)},u.prototype.listenerCount=m,u.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t,n){"use strict";n.r(t),n.d(t,"register",(function(){return d}));var r=n(0),o=n(5),i=n(37),a=n(6),u=n(52),s=n(50),c=n(4),l=n(25);for(var f in l)["default","register"].indexOf(f)<0&&function(e){n.d(t,e,(function(){return l[e]}))}(f);var p=!1;function d(e){var t=e.vendor;return p||(p=!0,Object(r.registerStore)(o.b,{actions:a,controls:c.a,reducer:i.a,resolvers:u,selectors:Object(s.a)(t)})),o.b}},function(e,t){},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){var r=n(26);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t,n){"use strict";var r=String.prototype.replace,o=/%20/g,i=n(19),a={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports=i.assign({default:a.RFC3986,formatters:{RFC1738:function(e){return r.call(e,o,"+")},RFC3986:function(e){return String(e)}}},a)},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t,n){"use strict";n.r(t),n.d(t,"Visibility",(function(){return O})),n.d(t,"register",(function(){return M}));var r={};n.r(r),n.d(r,"getSite",(function(){return E})),n.d(r,"getSiteDomains",(function(){return _}));var o={};n.r(o),n.d(o,"getState",(function(){return w})),n.d(o,"getNewSite",(function(){return C})),n.d(o,"getNewSiteError",(function(){return T})),n.d(o,"isFetchingSite",(function(){return x})),n.d(o,"isFetchingSiteDetails",(function(){return A})),n.d(o,"isNewSite",(function(){return N})),n.d(o,"getSite",(function(){return j})),n.d(o,"getSiteTitle",(function(){return I})),n.d(o,"isLaunched",(function(){return P})),n.d(o,"getSiteDomains",(function(){return R})),n.d(o,"getPrimarySiteDomain",(function(){return L})),n.d(o,"getSiteSubdomain",(function(){return F}));var i=n(0),a="automattic/site",u=n(17),s=n.n(u),c=n(51),l=n.n(c),f=n(3),p=n.n(f),d=n(1),h=n.n(d),m=Object(i.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),g=Object(i.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:m,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return h()(h()({},e),{},p()({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,r=(e[n],s()(e,[n].map(l.a)));return h()({},r)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?h()(h()({},e),{},p()({},t.siteId,h()(h()({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCHED_SITE"===t.type?h()(h()({},e),{},p()({},t.siteId,!0)):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?h()(h()({},e),{},p()({},t.siteId,t.domains)):e}}),v=n(4);function y(e){var t=regeneratorRuntime.mark(l),n=regeneratorRuntime.mark(d),r=regeneratorRuntime.mark(m),o=regeneratorRuntime.mark(g),i=regeneratorRuntime.mark(y),a=function(){return{type:"FETCH_NEW_SITE"}},u=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},c=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function l(n){var r,o,i,a,l;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,r=n.authToken,o=s()(n,["authToken"]),i={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},a=h()(h()(h()({},i),o),{},{validate:!1}),t.next=8,Object(v.c)({path:"/sites/new",apiVersion:"1.1",method:"post",body:a,token:r});case 8:return l=t.sent,t.next=11,u(l);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,c(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var f=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},p=function(e){return{type:"LAUNCHED_SITE",siteId:e}};function d(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,Object(v.c)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 2:return t.next=4,p(e);case 4:return t.abrupt("return",!0);case 5:case"end":return t.stop()}}),n)}function m(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(v.c)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),r)}function g(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,Object(v.c)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),o)}function y(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,Object(v.c)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,f(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),i,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:y,receiveSiteTitle:f,fetchNewSite:a,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:u,receiveNewSiteFailed:c,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:l,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:d,launchedSite:p,getCart:m,setCart:g}}var b=regeneratorRuntime.mark(E),S=regeneratorRuntime.mark(_);function E(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(i.dispatch)(a).fetchSite();case 2:return n.prev=2,n.next=5,Object(v.c)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,Object(i.dispatch)(a).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,Object(i.dispatch)(a).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),b,null,[[2,10]])}function _(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,Object(v.c)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,Object(i.dispatch)(a).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),S,null,[[0,8]])}var O,w=function(e){return e},C=function(e){return e.newSite.data},T=function(e){return e.newSite.error},x=function(e){return e.newSite.isFetching},A=function(e){return e.isFetchingSiteDetails},N=function(e){return!!e.newSite.data},j=function(e,t){return e.sites[t]},I=function(e,t){var n;return null===(n=Object(i.select)(a).getSite(t))||void 0===n?void 0:n.name},P=function(e,t){return e.launchStatus[t]},R=function(e,t){return e.sitesDomains[t]},L=function(e,t){var n;return null===(n=Object(i.select)(a).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},F=function(e,t){var n;return null===(n=Object(i.select)(a).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))};!function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(O||(O={}));var D=!1;function M(e){return D||(D=!0,Object(i.registerStore)(a,{actions:y(e),controls:v.a,reducer:g,resolvers:r,selectors:o})),a}},function(e,t,n){"use strict";n.r(t),n.d(t,"STORE_KEY",(function(){return u})),n.d(t,"register",(function(){return Z}));var r={};n.r(r),n.d(r,"setSidebarFullscreen",(function(){return h})),n.d(r,"unsetSidebarFullscreen",(function(){return m})),n.d(r,"setStep",(function(){return g})),n.d(r,"setDomain",(function(){return v})),n.d(r,"unsetDomain",(function(){return y})),n.d(r,"confirmDomainSelection",(function(){return b})),n.d(r,"setDomainSearch",(function(){return S})),n.d(r,"setPlan",(function(){return E})),n.d(r,"unsetPlan",(function(){return _})),n.d(r,"updatePlan",(function(){return O})),n.d(r,"launchSite",(function(){return w})),n.d(r,"openSidebar",(function(){return C})),n.d(r,"closeSidebar",(function(){return T})),n.d(r,"openFocusedLaunch",(function(){return x})),n.d(r,"closeFocusedLaunch",(function(){return A})),n.d(r,"enableExperimental",(function(){return N})),n.d(r,"showSiteTitleStep",(function(){return j})),n.d(r,"setModalDismissible",(function(){return I})),n.d(r,"unsetModalDismissible",(function(){return P})),n.d(r,"showModalTitle",(function(){return R})),n.d(r,"hideModalTitle",(function(){return L}));var o={};n.r(o),n.d(o,"getLaunchSequence",(function(){return F})),n.d(o,"getLaunchStep",(function(){return D})),n.d(o,"getState",(function(){return M})),n.d(o,"hasPaidDomain",(function(){return k})),n.d(o,"getSelectedDomain",(function(){return U})),n.d(o,"getSelectedPlan",(function(){return H})),n.d(o,"getPaidPlan",(function(){return B})),n.d(o,"isStepCompleted",(function(){return V})),n.d(o,"isFlowCompleted",(function(){return W})),n.d(o,"isFlowStarted",(function(){return Y})),n.d(o,"getFirstIncompleteStep",(function(){return z})),n.d(o,"isSiteTitleStepVisible",(function(){return q})),n.d(o,"isModalDismissible",(function(){return G})),n.d(o,"isModalTitleVisible",(function(){return $})),n.d(o,"isFocusedLaunchOpen",(function(){return K}));var i=n(9),a=n(0),u="automattic/launch",s=window._currentSiteId,c={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},l=[c.Name,c.Domain,c.Plan,c.Final],f=Object(a.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},plan:function(e,t){return"SET_PLAN"===t.type?t.plan:"UNSET_PLAN"!==t.type?e:void 0},paidPlan:function(e,t){var n;return"SET_PLAN"!==t.type||(null===(n=t.plan)||void 0===n?void 0:n.isFree)?e:t.plan},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isExperimental:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_EXPERIMENTAL"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}}),p=regeneratorRuntime.mark(O),d=regeneratorRuntime.mark(w),h=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},m=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},g=function(e){return{type:"SET_STEP",step:e}},v=function(e){return{type:"SET_DOMAIN",domain:e}},y=function(){return{type:"UNSET_DOMAIN"}},b=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},S=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},E=function(e){return{type:"SET_PLAN",plan:e}},_=function(){return{type:"UNSET_PLAN"}};function O(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(i.select)("automattic/onboard/plans","getPlanBySlug",e);case 2:return t=n.sent,n.next=5,E(t);case 5:case"end":return n.stop()}}),p)}function w(){var e;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,Object(i.dispatch)("automattic/site","launchSite",s);case 3:return e=t.sent,t.abrupt("return",e);case 7:t.prev=7,t.t0=t.catch(0);case 9:case"end":return t.stop()}}),d,null,[[0,7]])}var C=function(){return{type:"OPEN_SIDEBAR"}},T=function(){return{type:"CLOSE_SIDEBAR"}},x=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},A=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},N=function(){return{type:"ENABLE_EXPERIMENTAL"}},j=function(){return{type:"SHOW_SITE_TITLE_STEP"}},I=function(){return{type:"SET_MODAL_DISMISSIBLE"}},P=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},R=function(){return{type:"SHOW_MODAL_TITLE"}},L=function(){return{type:"HIDE_MODAL_TITLE"}},F=function(){return l},D=function(){return c},M=function(e){return e},k=function(e){return!!e.domain&&!e.domain.is_free},U=function(e){return e.domain},H=function(e){return e.plan},B=function(e){return e.paidPlan},V=function(e,t){if(t===c.Plan)return!!H(e);if(t===c.Name){var n=Object(a.select)("core").getEntityRecord("root","site",void 0);return!!(null==n?void 0:n.title)}return t===c.Domain&&(!!U(e)||e.confirmedDomainSelection)},W=function(e){return l.slice(0,l.length-1).every((function(t){return V(e,t)}))},Y=function(e){return l.some((function(t){return V(e,t)}))},z=function(e){return l.find((function(t){return!V(e,t)}))},q=function(e){return e.isSiteTitleStepVisible},G=function(e){return e.isModalDismissible},$=function(e){return e.isModalTitleVisible},K=function(e){return e.isFocusedLaunchOpen},J=n(11),Q=Object(J.a)("WP_LAUNCH");Object(a.use)(a.plugins.persistence,Q);var X=!1;function Z(){return X||(X=!0,Object(a.registerStore)(u,{actions:r,controls:i.controls,reducer:f,selectors:o,persist:["domain","domainSearch","plan","confirmedDomainSelection","isExperimental","isSiteTitleStepVisible"]})),u}},function(e,t,n){"use strict";n.r(t),n.d(t,"featuresList",(function(){return f})),n.d(t,"register",(function(){return g}));var r={};n.r(r),n.d(r,"getAllFeatures",(function(){return d})),n.d(r,"getRecommendedPlanSlug",(function(){return h}));var o=n(9),i=n(0),a="automattic/wpcom-features",u=n(2),s=u.e,c=u.f,l=u.b,f={domain:{id:"domain",minSupportedPlan:s},store:{id:"store",minSupportedPlan:u.c},seo:{id:"seo",minSupportedPlan:l},plugins:{id:"plugins",minSupportedPlan:l},"ad-free":{id:"ad-free",minSupportedPlan:s},"image-storage":{id:"image-storage",minSupportedPlan:c},"video-storage":{id:"video-storage",minSupportedPlan:c},support:{id:"support",minSupportedPlan:l}},p=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f;return e},d=function(e){return e},h=function(e,t){var n=d(e);return t.length?t.reduce((function(e,t){var r=n[t].minSupportedPlan;return u.i.indexOf(r)>u.i.indexOf(e)?r:e}),n[t[0]].minSupportedPlan):""},m=!1;function g(){return m||(m=!0,Object(i.registerStore)(a,{controls:o.controls,reducer:p,selectors:r})),a}},function(e,t){function n(e,t,n,r,o,i,a){try{var u=e[i](a),s=u.value}catch(c){return void n(c)}u.done?t(s):Promise.resolve(s).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,i){var a=e.apply(t,r);function u(e){n(a,o,i,u,s,"next",e)}function s(e){n(a,o,i,u,s,"throw",e)}u(void 0)}))}}},function(e,t,n){var r=n(60),o=n(62);function i(e,t){if(t)if("number"==typeof t)a(e,t);else{t.status_code&&a(e,t.status_code),t.error&&(e.name=s(t.error)),t.error_description&&(e.message=t.error_description);var n=t.errors;if(n)i(e,n.length?n[0]:n);for(var r in t)e[r]=t[r];e.status&&(t.method||t.path)&&u(e)}}function a(e,t){e.name=s(o[t]),e.status=e.statusCode=t,u(e)}function u(e){var t=e.status,n=e.method,r=e.path,o=t+" status code",i=n||r;i&&(o+=' for "'),n&&(o+=n),i&&(o+=" "),r&&(o+=r),i&&(o+='"'),e.message=o}function s(e){return r(String(e).replace(/error$/i,""),"error")}e.exports=function e(){for(var t=new Error,n=0;n<arguments.length;n++)i(t,arguments[n]);"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(t,e);return t}},function(e,t,n){"use strict";var r=n(3),o=n.n(r),i=n(1),a=n.n(i),u=n(0),s=n(5),c=n(13),l={state:s.a.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},f=Object(u.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?a()(a()({},e),{},{state:s.a.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?a()(a()({},e),{},{state:s.a.Success,data:a()(a()({},e.data),{},o()({},Object(c.a)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?a()(a()({},e),{},{state:s.a.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?a()(a()({},e),{},o()({},t.domainName,t.availability)):e}});t.a=f},function(e,t,n){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,o=t.cmp&&(n=t.cmp,function(e){return function(t,r){var o={key:t,value:e[t]},i={key:r,value:e[r]};return n(o,i)}}),i=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==i.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var u=i.push(t)-1,s=Object.keys(t).sort(o&&o(t));for(a="",n=0;n<s.length;n++){var c=s[n],l=e(t[c]);l&&(a&&(a+=","),a+=JSON.stringify(c)+":"+l)}return i.splice(u,1),"{"+a+"}"}}(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var 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},o=u(n(7)),i=u(n(70)),a=u(n(73));function u(e){return e&&e.__esModule?e:{default:e}}var s=void 0;function c(e,t){var n,a,u,l,f,p,d,h,m=[],g={};for(p=0;p<e.length;p++)if("string"!==(f=e[p]).type){if(!t.hasOwnProperty(f.value)||void 0===t[f.value])throw new Error("Invalid interpolation, missing component node: `"+f.value+"`");if("object"!==r(t[f.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+f.value+"`","\n> "+s);if("componentClose"===f.type)throw new Error("Missing opening component token: `"+f.value+"`");if("componentOpen"===f.type){n=t[f.value],u=p;break}m.push(t[f.value])}else m.push(f.value);return n&&(l=function(e,t){var n,r,o=t[e],i=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===o.value){if("componentOpen"===n.type){i++;continue}if("componentClose"===n.type){if(0===i)return r;i--}}throw new Error("Missing closing component token `"+o.value+"`")}(u,e),d=c(e.slice(u+1,l),t),a=o.default.cloneElement(n,{},d),m.push(a),l<e.length-1&&(h=c(e.slice(l+1),t),m=m.concat(h))),1===m.length?m[0]:(m.forEach((function(e,t){e&&(g["interpolation-child-"+t]=e)})),(0,i.default)(g))}t.default=function(e){var t=e.mixedString,n=e.components,o=e.throwErrors;if(s=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(o)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var i=(0,a.default)(t);try{return c(i,n)}catch(u){if(o)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+u.message+"`");return t}}},function(e,t,n){var r=n(23),o=n(30);function i(e){if(!(this instanceof i))return new i(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=i,o(i,r.EventEmitter),Object.defineProperty(i.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),i.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},i.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},i.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},i.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},i.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},i.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},i.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},i.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},function(e,t,n){"use strict";var r=n(20),o=n(74),i=n(75),a=r.rotl32,u=r.sum32,s=r.sum32_5,c=i.ft_1,l=o.BlockHash,f=[1518500249,1859775393,2400959708,3395469782];function p(){if(!(this instanceof p))return new p;l.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(p,l),e.exports=p,p.blockSize=512,p.outSize=160,p.hmacStrength=80,p.padLength=64,p.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var o=this.h[0],i=this.h[1],l=this.h[2],p=this.h[3],d=this.h[4];for(r=0;r<n.length;r++){var h=~~(r/20),m=s(a(o,5),c(h,i,l,p),d,n[r],f[h]);d=p,p=l,l=a(i,30),i=o,o=m}this.h[0]=u(this.h[0],o),this.h[1]=u(this.h[1],i),this.h[2]=u(this.h[2],l),this.h[3]=u(this.h[3],p),this.h[4]=u(this.h[4],d)},p.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(76);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(77),o=n(78),i=n(79);e.exports=function(e){var t=o();return function(){var n,o=r(e);if(t){var a=r(this).constructor;n=Reflect.construct(o,arguments,a)}else n=o.apply(this,arguments);return i(this,n)}}},function(e,t,n){var r=n(80),o=n(81),i=n(27),a=n(82);e.exports=function(e,t){return r(e)||o(e,t)||i(e,t)||a()}},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){"use strict";e.exports=n(83)},function(e,t){!function(){e.exports=this.wp.compose}()},function(e,t,n){"use strict";var r=n(1),o=n.n(r),i=n(10),a=n.n(i),u=n(0),s=n(5),c=n(13);t.a=function(e){function t(t,n){return o()(o()({include_wordpressdotcom:n.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:e},n),{},{query:t.trim().toLocaleLowerCase()})}return{getCategories:function(e){return[].concat(a()(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),a()(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},getDomainSuggestions:function(e,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=t(n,r);return Object(u.select)(s.b).__internalGetDomainSuggestions(o)},getDomainState:function(e){return e.domainSuggestions.state},getDomainErrorMessage:function(e){return e.domainSuggestions.errorMessage},getDomainSuggestionVendor:function(){return e},isLoadingDomainSuggestions:function(e,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=t(n,r);return Object(u.select)("core/data").isResolving(s.b,"__internalGetDomainSuggestions",[o])},__internalGetDomainSuggestions:function(e,t){return e.domainSuggestions.data[Object(c.a)(t)]},isAvailable:function(e,t){return e.availability[t]},getDomainAvailabilities:function(e){return e.availability}}}},function(e,t,n){var r=n(21),o=n(86);e.exports=function(e){var t=o(e,"string");return"symbol"===r(t)?t:String(t)}},function(e,t,n){"use strict";n.r(t),n.d(t,"isAvailable",(function(){return ve})),n.d(t,"getCategories",(function(){return ye})),n.d(t,"__internalGetDomainSuggestions",(function(){return be}));var r,o,i,a,u=n(14),s=n(10),c=n.n(s),l=n(3),f=n.n(l),p=n(12),d=n.n(p),h=n(39),m=n.n(h);r={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},o=["(","?"],i={")":["("],":":["?","?:"]},a=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var g={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function v(e){var t=function(e){for(var t,n,u,s,c=[],l=[];t=e.match(a);){for(n=t[0],(u=e.substr(0,t.index).trim())&&c.push(u);s=l.pop();){if(i[n]){if(i[n][0]===s){n=i[n][1]||n;break}}else if(o.indexOf(s)>=0||r[s]<r[n]){l.push(s);break}c.push(s)}i[n]||l.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&c.push(e),c.concat(l.reverse())}(e);return function(e){return function(e,t){var n,r,o,i,a,u,s=[];for(n=0;n<e.length;n++){if(a=e[n],i=g[a]){for(r=i.length,o=Array(r);r--;)o[r]=s.pop();try{u=i.apply(null,o)}catch(c){return c}}else u=t.hasOwnProperty(a)?t[a]:+a;s.push(u)}return s[0]}(t,e)}}var y={contextDelimiter:"",onMissingKey:null};function b(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},y)this.options[n]=void 0!==t&&n in t?t[n]:y[n]}b.prototype.getPluralForm=function(e,t){var n,r,o,i,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),i=v(r),o=function(e){return+i({n:e})}),a=this.pluralForms[e]=o),a(t)},b.prototype.dcnpgettext=function(e,t,n,r,o){var i,a,u;return i=void 0===o?0:this.getPluralForm(e,o),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[i]?u[i]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===i?n:r)};var S=n(40),E=n.n(S),_=n(41),O=n.n(_),w=n(23),C=/%(((\d+)\$)|(\(([$_a-zA-Z][$_a-zA-Z0-9]*)\)))?[ +0#-]*\d*(\.(\d+|\*))?(ll|[lhqL])?([cduxXefgsp%])/g;function T(e,t){var n;if(!Array.isArray(t))for(t=new Array(arguments.length-1),n=1;n<arguments.length;n++)t[n-1]=arguments[n];return n=1,e.replace(C,(function(){var e,r,o,i,a;return e=arguments[3],r=arguments[5],"%"===(i=arguments[9])?"%":("*"===(o=arguments[7])&&(o=t[n-1],n++),void 0!==r?t[0]&&"object"==typeof t[0]&&t[0].hasOwnProperty(r)&&(a=t[0][r]):(void 0===e&&(e=n),n++,a=t[e-1]),"f"===i?a=parseFloat(a)||0:"d"===i&&(a=parseInt(a)||0),void 0!==o&&("f"===i?a=a.toFixed(o):"s"===i&&(a=a.substr(0,o))),null!=a?a:"")}))}
2
+ /*
3
+ * Exposes number format capability
4
+ *
5
+ * @copyright Copyright (c) 2013 Kevin van Zonneveld (http://kvz.io) and Contributors (http://phpjs.org/authors).
6
+ * @license See CREDITS.md
7
+ * @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
8
+ */function x(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var o=isFinite(+e)?+e:0,i=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,u=void 0===n?".":n,s="";return(s=(i?function(e,t){var n=Math.pow(10,t);return""+(Math.round(e*n)/n).toFixed(t)}(o,i):""+Math.round(o)).split("."))[0].length>3&&(s[0]=s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,a)),(s[1]||"").length<i&&(s[1]=s[1]||"",s[1]+=new Array(i-s[1].length+1).join("0")),s.join(u)}var A=d()("i18n-calypso"),N="number_format_decimals",j="number_format_thousands_sep",I="messages",P=[function(e){return e}],R={};function L(){U.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function F(e){return Array.prototype.slice.call(e)}function D(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&L("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",F(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&L("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",F(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function M(e,t){return e.dcnpgettext(I,t.context,t.original,t.plural,t.count)}function k(e,t){for(var n=P.length-1;n>=0;n--){var r=P[n](Object.assign({},t)),o=r.context?r.context+""+r.original:r.original;if(e.state.locale[o])return M(e.state.tannin,r)}return null}function U(){if(!(this instanceof U))return new U;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:E()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new w.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}U.throwErrors=!1,U.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},U.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},U.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},U.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",o=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return x(e,n,r,o)},U.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},U.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],i=function(e,t){var n=!1===t?"":String(t);if(void 0!==R[n+e])return R[n+e];var r=O()().update(e).digest("hex");return R[n+e]=t?r.substr(0,t):r},a=function(e){return function(t){return t.context?(t.original=i(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=i(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)P.push(a(!1));else{var u=o.substr(5).indexOf("-");if(u<0){var s=Number(o.substr(5));P.push(a(s))}else for(var c=Number(o.substr(5,u)),l=Number(o.substr(6+u)),p=c;p<=l;p++)P.push(a(p))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new b(f()({},I,this.state.locale)),this.state.numberFormatSettings.decimal_point=M(this.state.tannin,D([N])),this.state.numberFormatSettings.thousands_sep=M(this.state.tannin,D([j])),this.state.numberFormatSettings.decimal_point===N&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===j&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},U.prototype.getLocale=function(){return this.state.locale},U.prototype.getLocaleSlug=function(){return this.state.localeSlug},U.prototype.getLocaleVariant=function(){return this.state.localeVariant},U.prototype.isRtl=function(){return"rtl"===this.state.textDirection},U.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},U.prototype.hasTranslation=function(){return!!k(this,D(arguments))},U.prototype.translate=function(){var e=D(arguments),t=k(this,e);if(t||(t=M(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=T.apply(void 0,c()(n))}catch(o){if(!window||!window.console)return;var r=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[r](o):window.console[r]("i18n sprintf error:",n)}}return e.components&&(t=m()({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},U.prototype.reRenderTranslations=function(){A("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},U.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},U.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)};var H=U,B=n(1),V=n.n(B),W=n(42),Y=n.n(W),z=n(43),q=n.n(z),G=n(15),$=n.n(G),K=n(44),J=n.n(K),Q=n(45),X=n.n(Q),Z=n(16),ee=n(7),te=n.n(ee),ne=n(46),re=n.n(ne),oe=n(47),ie=n.n(oe),ae=n(48),ue=n(49);var se,ce,le=new H,fe=(le.numberFormat.bind(le),le.translate.bind(le)),pe=(le.configure.bind(le),le.setLocale.bind(le),le.getLocale.bind(le),le.getLocaleSlug.bind(le),le.getLocaleVariant.bind(le),le.isRtl.bind(le),le.addTranslations.bind(le),le.reRenderTranslations.bind(le),le.registerComponentUpdateHook.bind(le),le.registerTranslateHook.bind(le),le.state,le.stateObserver,le.on.bind(le),le.off.bind(le),le.emit.bind(le),ce={numberFormat:(se=le).numberFormat.bind(se),translate:se.translate.bind(se)},function(e){function t(){var t=e.translate.bind(e);return Object.defineProperty(t,"localeSlug",{get:e.getLocaleSlug.bind(e)}),t}}(le),function(e){var t={getCurrentValue:function(){return e.isRtl()},subscribe:function(t){return e.on("change",t),function(){return e.off("change",t)}}};function n(){return Object(ae.useSubscription)(t)}var r=Object(ue.createHigherOrderComponent)((function(e){return Object(ee.forwardRef)((function(t,r){var o=n();return Object(Z.createElement)(e,ie()({},t,{isRtl:o,ref:r}))}))}),"WithRTL");return{useRtl:n,withRtl:r}}(le)),de=(pe.useRtl,pe.withRtl,n(6)),he=n(4),me=regeneratorRuntime.mark(ye),ge=regeneratorRuntime.mark(be),ve=regeneratorRuntime.mark((function e(t){var n,r,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n="https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(t),"/is-available?is_cart_pre_check=true"),e.prev=1,e.next=4,Object(he.b)(n);case 4:return r=e.sent,o=r.body,e.abrupt("return",Object(de.receiveDomainAvailability)(t,o));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",Object(de.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function ye(){var e;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,Object(he.b)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=t.sent,t.abrupt("return",Object(de.receiveCategories)(e.body));case 4:case"end":return t.stop()}}),me)}function be(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(e.query){n.next=2;break}return n.abrupt("return",Object(de.receiveDomainSuggestionsError)("Empty query"));case 2:return n.next=4,Object(de.fetchDomainSuggestions)();case 4:return n.prev=4,n.next=7,Object(he.c)({apiVersion:"1.1",path:"/domains/suggestions",query:Object(u.stringify)(e)});case 7:t=n.sent,n.next=13;break;case 10:return n.prev=10,n.t0=n.catch(4),n.abrupt("return",Object(de.receiveDomainSuggestionsError)(n.t0.message||fe("Error while fetching server response")));case 13:if(t&&""!==t){n.next=15;break}return n.abrupt("return",Object(de.receiveDomainSuggestionsError)(fe("Invalid response from the server")));case 15:return n.abrupt("return",Object(de.receiveDomainSuggestionsSuccess)(e,t));case 16:case"end":return n.stop()}}),ge,null,[[4,10]])}},,,,,,,,function(e,t,n){"use strict";var r=n(61);e.exports=function(){var e=r.apply(r,arguments);return e.charAt(0).toUpperCase()+e.slice(1)}},function(e,t,n){"use strict";e.exports=function(){var e=[].map.call(arguments,(function(e){return e.trim()})).filter((function(e){return e.length})).join("-");return e.length?1!==e.length&&/[_.\- ]+/.test(e)?e.replace(/^[_.\- ]+/,"").toLowerCase().replace(/[_.\- ]+(\w|$)/g,(function(e,t){return t.toUpperCase()})):e[0]===e[0].toLowerCase()&&e.slice(1)!==e.slice(1).toLowerCase()?e:e.toLowerCase():""}},function(e,t){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},function(e,t,n){var r=n(10);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return o.colors[Math.abs(t)%o.colors.length]}function o(e){var n;function r(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];if(r.enabled){var a=r,u=Number(new Date),s=u-(n||u);a.diff=s,a.prev=n,a.curr=u,n=u,t[0]=o.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var c=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;c++;var r=o.formatters[n];if("function"==typeof r){var i=t[c];e=r.call(a,i),t.splice(c,1),c--}return e})),o.formatArgs.call(a,t);var l=a.log||o.log;l.apply(a,t)}}return r.namespace=e,r.enabled=o.enabled(e),r.useColors=o.useColors(),r.color=t(e),r.destroy=i,r.extend=a,"function"==typeof o.init&&o.init(r),o.instances.push(r),r}function i(){var e=o.instances.indexOf(this);return-1!==e&&(o.instances.splice(e,1),!0)}function a(e,t){var n=o(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function u(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return o.debug=o,o.default=o,o.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},o.disable=function(){var e=[].concat(r(o.names.map(u)),r(o.skips.map(u).map((function(e){return"-"+e})))).join(",");return o.enable(""),e},o.enable=function(e){var t;o.save(e),o.names=[],o.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?o.skips.push(new RegExp("^"+e.substr(1)+"$")):o.names.push(new RegExp("^"+e+"$")));for(t=0;t<o.instances.length;t++){var i=o.instances[t];i.enabled=o.enabled(i.namespace)}},o.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=o.skips.length;t<n;t++)if(o.skips[t].test(e))return!1;for(t=0,n=o.names.length;t<n;t++)if(o.names[t].test(e))return!0;return!1},o.humanize=n(67),Object.keys(e).forEach((function(t){o[t]=e[t]})),o.instances=[],o.names=[],o.skips=[],o.formatters={},o.selectColor=t,o.enable(o.load()),o}},function(e,t,n){var r=n(26);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=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){var n=1e3,r=60*n,o=60*r,i=24*o,a=7*i,u=365.25*i;function s(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,t){t=t||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var s=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*u;case"weeks":case"week":case"w":return s*a;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*o;case"minutes":case"minute":case"mins":case"min":case"m":return s*r;case"seconds":case"second":case"secs":case"sec":case"s":return s*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===c&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=i)return s(e,t,i,"day");if(t>=o)return s(e,t,o,"hour");if(t>=r)return s(e,t,r,"minute");if(t>=n)return s(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=i)return Math.round(e/i)+"d";if(t>=o)return Math.round(e/o)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t,n){"use strict";var r=n(19),o=n(28),i=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},u=Array.isArray,s=Array.prototype.push,c=function(e,t){s.apply(e,u(t)?t:[t])},l=Date.prototype.toISOString,f=o.default,p={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:f,formatter:o.formatters[f],indices:!1,serializeDate:function(e){return l.call(e)},skipNulls:!1,strictNullHandling:!1},d=function e(t,n,o,i,a,s,l,f,d,h,m,g,v){var y,b=t;if("function"==typeof l?b=l(n,b):b instanceof Date?b=h(b):"comma"===o&&u(b)&&(b=r.maybeMap(b,(function(e){return e instanceof Date?h(e):e})).join(",")),null===b){if(i)return s&&!g?s(n,p.encoder,v,"key"):n;b=""}if("string"==typeof(y=b)||"number"==typeof y||"boolean"==typeof y||"symbol"==typeof y||"bigint"==typeof y||r.isBuffer(b))return s?[m(g?n:s(n,p.encoder,v,"key"))+"="+m(s(b,p.encoder,v,"value"))]:[m(n)+"="+m(String(b))];var S,E=[];if(void 0===b)return E;if(u(l))S=l;else{var _=Object.keys(b);S=f?_.sort(f):_}for(var O=0;O<S.length;++O){var w=S[O],C=b[w];if(!a||null!==C){var T=u(b)?"function"==typeof o?o(n,w):n:n+(d?"."+w:"["+w+"]");c(E,e(C,T,o,i,a,s,l,f,d,h,m,g,v))}}return E};e.exports=function(e,t){var n,r=e,s=function(e){if(!e)return p;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||p.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==e.format){if(!i.call(o.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=o.formatters[n],a=p.filter;return("function"==typeof e.filter||u(e.filter))&&(a=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:p.addQueryPrefix,allowDots:void 0===e.allowDots?p.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:p.charsetSentinel,delimiter:void 0===e.delimiter?p.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:p.encode,encoder:"function"==typeof e.encoder?e.encoder:p.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:p.encodeValuesOnly,filter:a,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:p.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:p.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:p.strictNullHandling}}(t);"function"==typeof s.filter?r=(0,s.filter)("",r):u(s.filter)&&(n=s.filter);var l,f=[];if("object"!=typeof r||null===r)return"";l=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var h=a[l];n||(n=Object.keys(r)),s.sort&&n.sort(s.sort);for(var m=0;m<n.length;++m){var g=n[m];s.skipNulls&&null===r[g]||c(f,d(r[g],g,h,s.strictNullHandling,s.skipNulls,s.encode?s.encoder:null,s.filter,s.sort,s.allowDots,s.serializeDate,s.formatter,s.encodeValuesOnly,s.charset))}var v=f.join(s.delimiter),y=!0===s.addQueryPrefix?"?":"";return s.charsetSentinel&&("iso-8859-1"===s.charset?y+="utf8=%26%2310003%3B&":y+="utf8=%E2%9C%93&"),v.length>0?y+v:""}},function(e,t,n){"use strict";var r=n(19),o=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},u=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},s=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var i=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,u=n.depth>0&&/(\[[^[\]]*])/.exec(i),c=u?i.slice(0,u.index):i,l=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;l.push(c)}for(var f=0;n.depth>0&&null!==(u=a.exec(i))&&f<n.depth;){if(f+=1,!n.plainObjects&&o.call(Object.prototype,u[1].slice(1,-1))&&!n.allowPrototypes)return;l.push(u[1])}return u&&l.push("["+i.slice(u.index)+"]"),function(e,t,n,r){for(var o=r?t:s(t,n),i=e.length-1;i>=0;--i){var a,u=e[i];if("[]"===u&&n.parseArrays)a=[].concat(o);else{a=n.plainObjects?Object.create(null):{};var c="["===u.charAt(0)&&"]"===u.charAt(u.length-1)?u.slice(1,-1):u,l=parseInt(c,10);n.parseArrays||""!==c?!isNaN(l)&&u!==c&&String(l)===c&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(a=[])[l]=o:a[c]=o:a={0:o}}o=a}return o}(l,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?a.charset:e.charset;return{allowDots:void 0===e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:a.comma,decoder:"function"==typeof e.decoder?e.decoder:a.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var l="string"==typeof e?function(e,t){var n,c={},l=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,f=t.parameterLimit===1/0?void 0:t.parameterLimit,p=l.split(t.delimiter,f),d=-1,h=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[n]?h="utf-8":"utf8=%26%2310003%3B"===p[n]&&(h="iso-8859-1"),d=n,n=p.length);for(n=0;n<p.length;++n)if(n!==d){var m,g,v=p[n],y=v.indexOf("]="),b=-1===y?v.indexOf("="):y+1;-1===b?(m=t.decoder(v,a.decoder,h,"key"),g=t.strictNullHandling?null:""):(m=t.decoder(v.slice(0,b),a.decoder,h,"key"),g=r.maybeMap(s(v.slice(b+1),t),(function(e){return t.decoder(e,a.decoder,h,"value")}))),g&&t.interpretNumericEntities&&"iso-8859-1"===h&&(g=u(g)),v.indexOf("[]=")>-1&&(g=i(g)?[g]:g),o.call(c,m)?c[m]=r.combine(c[m],g):c[m]=g}return c}(e,n):e,f=n.plainObjects?Object.create(null):{},p=Object.keys(l),d=0;d<p.length;++d){var h=p[d],m=c(h,l[h],n,"string"==typeof e);f=r.merge(f,m,n)}return r.compact(f)}},function(e,t,n){"use strict";var r=n(7),o="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,i=n(29),a=n(71),u=n(72),s="function"==typeof Symbol&&Symbol.iterator;function c(e,t){return e&&"object"==typeof e&&null!=e.key?(n=e.key,r={"=":"=0",":":"=2"},"$"+(""+n).replace(/[=:]/g,(function(e){return r[e]}))):t.toString(36);var n,r}function l(e,t,n,r){var i,u=typeof e;if("undefined"!==u&&"boolean"!==u||(e=null),null===e||"string"===u||"number"===u||"object"===u&&e.$$typeof===o)return n(r,e,""===t?"."+c(e,0):t),1;var f=0,p=""===t?".":t+":";if(Array.isArray(e))for(var d=0;d<e.length;d++)f+=l(i=e[d],p+c(i,d),n,r);else{var h=function(e){var t=e&&(s&&e[s]||e["@@iterator"]);if("function"==typeof t)return t}(e);if(h){0;for(var m,g=h.call(e),v=0;!(m=g.next()).done;)f+=l(i=m.value,p+c(i,v++),n,r)}else if("object"===u){0;var y=""+e;a(!1,"Objects are not valid as a React child (found: %s).%s","[object Object]"===y?"object with keys {"+Object.keys(e).join(", ")+"}":y,"")}}return f}var f=/\/+/g;function p(e){return(""+e).replace(f,"$&/")}var d,h,m=g,g=function(e){var t=this;if(t.instancePool.length){var n=t.instancePool.pop();return t.call(n,e),n}return new t(e)},v=function(e){var t=this;a(e instanceof t,"Trying to release an instance into a pool of a different type."),e.destructor(),t.instancePool.length<t.poolSize&&t.instancePool.push(e)};function y(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function b(e,t,n){var o,a,u=e.result,s=e.keyPrefix,c=e.func,l=e.context,f=c.call(l,t,e.count++);Array.isArray(f)?S(f,u,n,i.thatReturnsArgument):null!=f&&(r.isValidElement(f)&&(o=f,a=s+(!f.key||t&&t.key===f.key?"":p(f.key)+"/")+n,f=r.cloneElement(o,{key:a},void 0!==o.props?o.props.children:void 0)),u.push(f))}function S(e,t,n,r,o){var i="";null!=n&&(i=p(n)+"/");var a=y.getPooled(t,i,r,o);!function(e,t,n){null==e||l(e,"",t,n)}(e,b,a),y.release(a)}y.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},d=function(e,t,n,r){var o=this;if(o.instancePool.length){var i=o.instancePool.pop();return o.call(i,e,t,n,r),i}return new o(e,t,n,r)},(h=y).instancePool=[],h.getPooled=d||m,h.poolSize||(h.poolSize=10),h.release=v;e.exports=function(e){if("object"!=typeof e||!e||Array.isArray(e))return u(!1,"React.addons.createFragment only accepts a single object. Got: %s",e),e;if(r.isValidElement(e))return u(!1,"React.addons.createFragment does not accept a ReactElement without a wrapper object."),e;a(1!==e.nodeType,"React.addons.createFragment(...): Encountered an invalid child; DOM elements are not valid children of React components.");var t=[];for(var n in e)S(e[n],t,n,i.thatReturnsArgument);return t}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,i,a,u){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,o,i,a,u],l=0;(s=new Error(t.replace(/%s/g,(function(){return c[l++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},function(e,t,n){"use strict";var r=n(29);e.exports=r},function(e,t,n){"use strict";function r(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(r)}},function(e,t,n){"use strict";var r=n(20),o=n(31);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var o=0;o<e.length;o+=this._delta32)this._update(e,o,o+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),o(null===this.pending),this._digest(e)},i.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var o=1;o<n;o++)r[o]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)r[o++]=0;r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=e>>>24&255,r[o++]=e>>>16&255,r[o++]=e>>>8&255,r[o++]=255&e}else for(r[o++]=255&e,r[o++]=e>>>8&255,r[o++]=e>>>16&255,r[o++]=e>>>24&255,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,i=8;i<this.padLength;i++)r[o++]=0;return r}},function(e,t,n){"use strict";var r=n(20).rotr32;function o(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?o(t,n,r):1===e||3===e?a(t,n,r):2===e?i(t,n,r):void 0},t.ch32=o,t.maj32=i,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t){e.exports=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}},function(e,t,n){var r=n(21),o=n(15);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(s){o=!0,i=s}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}}},function(e,t){e.exports=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(e,t,n){"use strict";
9
  /** @license React v1.3.0
10
  * use-subscription.production.min.js
11
  *
13
  *
14
  * This source code is licensed under the MIT license found in the
15
  * LICENSE file in the root directory of this source tree.
16
+ */Object.defineProperty(t,"__esModule",{value:!0});var r=n(84),o=n(7);t.useSubscription=function(e){var t=e.getCurrentValue,n=e.subscribe,i=o.useState((function(){return{getCurrentValue:t,subscribe:n,value:t()}}));e=i[0];var a=i[1];return i=e.value,e.getCurrentValue===t&&e.subscribe===n||(i=t(),a({getCurrentValue:t,subscribe:n,value:i})),o.useDebugValue(i),o.useEffect((function(){function e(){if(!o){var e=t();a((function(o){return o.getCurrentValue!==t||o.subscribe!==n||o.value===e?o:r({},o,{value:e})}))}}var o=!1,i=n(e);return e(),function(){o=!0,i()}}),[t,n]),i}},function(e,t,n){"use strict";
17
  /*
18
  object-assign
19
  (c) Sindre Sorhus
20
  @license MIT
21
+ */var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(o){return!1}}()?Object.assign:function(e,t){for(var n,u,s=a(e),c=1;c<arguments.length;c++){for(var l in n=Object(arguments[c]))o.call(n,l)&&(s[l]=n[l]);if(r){u=r(n);for(var f=0;f<u.length;f++)i.call(n,u[f])&&(s[u[f]]=n[u[f]])}}return s}},function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}},function(e,t,n){var r=n(21);e.exports=function(e,t){if("object"!==r(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,t||"default");if("object"!==r(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}},function(e,t,n){"use strict";n.r(t);var r=n(8);r.DomainSuggestions.register({vendor:"variation2_front"}),r.Plans.register(),r.Site.register({client_id:"",client_secret:""}),r.Launch.register(),r.WPCOMFeatures.register()}]));
 
 
 
 
 
 
 
editor-gutenboarding-launch/dist/editor-gutenboarding-launch.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-hooks', 'wp-i18n', 'wp-polyfill'), 'version' => 'c4069a21920e42824fa99c5fce5d76c3');
1
+ <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-hooks', 'wp-i18n', 'wp-polyfill'), 'version' => 'e510daac81ee74d617e99eff84eac180');
editor-gutenboarding-launch/dist/editor-gutenboarding-launch.js CHANGED
@@ -1,7 +1,7 @@
1
- !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=26)}([function(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,i=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(i=r))})),t.splice(i,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(13)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t){!function(){e.exports=this.lodash}()},function(e,t){!function(){e.exports=this.wp.data}()},function(e,t,n){"use strict";
2
  /*!
3
  * cookie
4
  * Copyright(c) 2012-2014 Roman Shtylman
5
  * Copyright(c) 2015 Douglas Christopher Wilson
6
  * MIT Licensed
7
- */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var n={},i=t||{},s=e.split(o),u=i.decode||r,c=0;c<s.length;c++){var f=s[c],l=f.indexOf("=");if(!(l<0)){var h=f.substr(0,l).trim(),p=f.substr(++l,f.length).trim();'"'==p[0]&&(p=p.slice(1,-1)),null==n[h]&&(n[h]=a(p,u))}}return n},t.serialize=function(e,t,n){var r=n||{},o=r.encode||i;if("function"!=typeof o)throw new TypeError("option encode is invalid");if(!s.test(e))throw new TypeError("argument name is invalid");var a=o(t);if(a&&!s.test(a))throw new TypeError("argument val is invalid");var u=e+"="+a;if(null!=r.maxAge){var c=r.maxAge-0;if(isNaN(c))throw new Error("maxAge should be a Number");u+="; Max-Age="+Math.floor(c)}if(r.domain){if(!s.test(r.domain))throw new TypeError("option domain is invalid");u+="; Domain="+r.domain}if(r.path){if(!s.test(r.path))throw new TypeError("option path is invalid");u+="; Path="+r.path}if(r.expires){if("function"!=typeof r.expires.toUTCString)throw new TypeError("option expires is invalid");u+="; Expires="+r.expires.toUTCString()}r.httpOnly&&(u+="; HttpOnly");r.secure&&(u+="; Secure");if(r.sameSite){switch("string"==typeof r.sameSite?r.sameSite.toLowerCase():r.sameSite){case!0:u+="; SameSite=Strict";break;case"lax":u+="; SameSite=Lax";break;case"strict":u+="; SameSite=Strict";break;case"none":u+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return u};var r=decodeURIComponent,i=encodeURIComponent,o=/; */,s=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(n){return e}}},function(e,t,n){"use strict";var r=n(5),i=n(20);function o(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function a(e){return 1===e.length?"0"+e:e}function u(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=i,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),i=0;i<e.length;i+=2)n.push(parseInt(e[i]+e[i+1],16))}else for(var r=0,i=0;i<e.length;i++){var s=e.charCodeAt(i);s<128?n[r++]=s:s<2048?(n[r++]=s>>6|192,n[r++]=63&s|128):o(e,i)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++i)),n[r++]=s>>18|240,n[r++]=s>>12&63|128,n[r++]=s>>6&63|128,n[r++]=63&s|128):(n[r++]=s>>12|224,n[r++]=s>>6&63|128,n[r++]=63&s|128)}else for(i=0;i<e.length;i++)n[i]=0|e[i];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=a(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e[r];"little"===t&&(i=s(i)),n+=u(i.toString(16))}return n},t.zero2=a,t.zero8=u,t.join32=function(e,t,n,i){var o=n-t;r(o%4==0);for(var s=new Array(o/4),a=0,u=t;a<s.length;a++,u+=4){var c;c="big"===i?e[u]<<24|e[u+1]<<16|e[u+2]<<8|e[u+3]:e[u+3]<<24|e[u+2]<<16|e[u+1]<<8|e[u],s[a]=c>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r<e.length;r++,i+=4){var o=e[r];"big"===t?(n[i]=o>>>24,n[i+1]=o>>>16&255,n[i+2]=o>>>8&255,n[i+3]=255&o):(n[i+3]=o>>>24,n[i+2]=o>>>16&255,n[i+1]=o>>>8&255,n[i]=255&o)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],o=r+e[t+1]>>>0,s=(o<r?1:0)+n+i;e[t]=s>>>0,e[t+1]=o},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,o,s,a){var u=0,c=t;return u+=(c=c+r>>>0)<t?1:0,u+=(c=c+o>>>0)<o?1:0,e+n+i+s+(u+=(c=c+a>>>0)<a?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,i,o,s,a){return t+r+o+a>>>0},t.sum64_5_hi=function(e,t,n,r,i,o,s,a,u,c){var f=0,l=t;return f+=(l=l+r>>>0)<t?1:0,f+=(l=l+o>>>0)<o?1:0,f+=(l=l+a>>>0)<a?1:0,e+n+i+s+u+(f+=(l=l+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,i,o,s,a,u,c){return t+r+o+a+c>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){function n(e,t,n,r,i,o,s){try{var a=e[o](s),u=a.value}catch(c){return void n(c)}a.done?t(u):Promise.resolve(u).then(r,i)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(i,o){var s=e.apply(t,r);function a(e){n(s,i,o,a,u,"next",e)}function u(e){n(s,i,o,a,u,"throw",e)}a(void 0)}))}}},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t){!function(){e.exports=this.wp.domReady}()},function(e,t){!function(){e.exports=this.wp.hooks}()},function(e,t,n){"use strict";var r=n(4),i=n(21),o=n(22),s=n(5),a=r.sum32,u=r.sum32_4,c=r.sum32_5,f=o.ch32,l=o.maj32,h=o.s0_256,p=o.s1_256,d=o.g0_256,v=o.g1_256,g=i.BlockHash,m=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function y(){if(!(this instanceof y))return new y;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=m,this.W=new Array(64)}r.inherits(y,g),e.exports=y,y.blockSize=512,y.outSize=256,y.hmacStrength=192,y.padLength=64,y.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=u(v(n[r-2]),n[r-7],d(n[r-15]),n[r-16]);var i=this.h[0],o=this.h[1],g=this.h[2],m=this.h[3],y=this.h[4],w=this.h[5],C=this.h[6],b=this.h[7];for(s(this.k.length===n.length),r=0;r<n.length;r++){var _=c(b,p(y),f(y,w,C),this.k[r],n[r]),F=a(h(i),l(i,o,g));b=C,C=w,w=y,y=a(m,_),m=g,g=o,o=i,i=a(_,F)}this.h[0]=a(this.h[0],i),this.h[1]=a(this.h[1],o),this.h[2]=a(this.h[2],g),this.h[3]=a(this.h[3],m),this.h[4]=a(this.h[4],y),this.h[5]=a(this.h[5],w),this.h[6]=a(this.h[6],C),this.h[7]=a(this.h[7],b)},y.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t,n){"use strict";var r,i="object"==typeof Reflect?Reflect:null,o=i&&"function"==typeof i.apply?i.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=i&&"function"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var s=Number.isNaN||function(e){return e!=e};function a(){a.init.call(this)}e.exports=a,a.EventEmitter=a,a.prototype._events=void 0,a.prototype._eventsCount=0,a.prototype._maxListeners=void 0;var u=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function f(e){return void 0===e._maxListeners?a.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var i,o,s,a;if(c(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),s=o[t]),void 0===s)s=o[t]=n,++e._eventsCount;else if("function"==typeof s?s=o[t]=r?[n,s]:[s,n]:r?s.unshift(n):s.push(n),(i=f(e))>0&&s.length>i&&!s.warned){s.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=s.length,a=u,console&&console.warn&&console.warn(a)}return e}function h(){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 p(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=h.bind(r);return i.listener=n,r.wrapFn=i,i}function d(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):g(i,i.length)}function v(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function g(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(a,"defaultMaxListeners",{enumerable:!0,get:function(){return u},set:function(e){if("number"!=typeof e||e<0||s(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");u=e}}),a.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},a.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||s(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},a.prototype.getMaxListeners=function(){return f(this)},a.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=i[e];if(void 0===u)return!1;if("function"==typeof u)o(u,this,t);else{var c=u.length,f=g(u,c);for(n=0;n<c;++n)o(f[n],this,t)}return!0},a.prototype.addListener=function(e,t){return l(this,e,t,!1)},a.prototype.on=a.prototype.addListener,a.prototype.prependListener=function(e,t){return l(this,e,t,!0)},a.prototype.once=function(e,t){return c(t),this.on(e,p(this,e,t)),this},a.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,p(this,e,t)),this},a.prototype.removeListener=function(e,t){var n,r,i,o,s;if(c(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){s=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,s||t)}return this},a.prototype.off=a.prototype.removeListener,a.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},a.prototype.listeners=function(e){return d(this,e,!0)},a.prototype.rawListeners=function(e){return d(this,e,!1)},a.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):v.call(e,t)},a.prototype.listenerCount=v,a.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t,n){var r=n(14);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return i.colors[Math.abs(t)%i.colors.length]}function i(e){var n;function r(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];if(r.enabled){var s=r,a=Number(new Date),u=a-(n||a);s.diff=u,s.prev=n,s.curr=a,n=a,t[0]=i.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var c=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;c++;var r=i.formatters[n];if("function"==typeof r){var o=t[c];e=r.call(s,o),t.splice(c,1),c--}return e})),i.formatArgs.call(s,t);var f=s.log||i.log;f.apply(s,t)}}return r.namespace=e,r.enabled=i.enabled(e),r.useColors=i.useColors(),r.color=t(e),r.destroy=o,r.extend=s,"function"==typeof i.init&&i.init(r),i.instances.push(r),r}function o(){var e=i.instances.indexOf(this);return-1!==e&&(i.instances.splice(e,1),!0)}function s(e,t){var n=i(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function a(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return i.debug=i,i.default=i,i.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},i.disable=function(){var e=[].concat(r(i.names.map(a)),r(i.skips.map(a).map((function(e){return"-"+e})))).join(",");return i.enable(""),e},i.enable=function(e){var t;i.save(e),i.names=[],i.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?i.skips.push(new RegExp("^"+e.substr(1)+"$")):i.names.push(new RegExp("^"+e+"$")));for(t=0;t<i.instances.length;t++){var o=i.instances[t];o.enabled=i.enabled(o.namespace)}},i.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=i.skips.length;t<n;t++)if(i.skips[t].test(e))return!1;for(t=0,n=i.names.length;t<n;t++)if(i.names[t].test(e))return!0;return!1},i.humanize=n(19),Object.keys(e).forEach((function(t){i[t]=e[t]})),i.instances=[],i.names=[],i.skips=[],i.formatters={},i.selectColor=t,i.enable(i.load()),i}},function(e,t,n){var r=n(15),i=n(16),o=n(17),s=n(18);e.exports=function(e){return r(e)||i(e)||o(e)||s()}},function(e,t,n){var r=n(6);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t,n){var r=n(6);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t){e.exports=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){var n=1e3,r=60*n,i=60*r,o=24*i,s=7*o,a=365.25*o;function u(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}e.exports=function(e,t){t=t||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var u=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*a;case"weeks":case"week":case"w":return u*s;case"days":case"day":case"d":return u*o;case"hours":case"hour":case"hrs":case"hr":case"h":return u*i;case"minutes":case"minute":case"mins":case"min":case"m":return u*r;case"seconds":case"second":case"secs":case"sec":case"s":return u*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=o)return u(e,t,o,"day");if(t>=i)return u(e,t,i,"hour");if(t>=r)return u(e,t,r,"minute");if(t>=n)return u(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=o)return Math.round(e/o)+"d";if(t>=i)return Math.round(e/i)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t,n){"use strict";var r=n(4),i=n(5);function o(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=o,o.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var i=0;i<e.length;i+=this._delta32)this._update(e,i,i+this._delta32)}return this},o.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},o.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var i=1;i<n;i++)r[i]=0;if(e<<=3,"big"===this.endian){for(var o=8;o<this.padLength;o++)r[i++]=0;r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=e>>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,o=8;o<this.padLength;o++)r[i++]=0;return r}},function(e,t,n){"use strict";var r=n(4).rotr32;function i(e,t,n){return e&t^~e&n}function o(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?i(t,n,r):1===e||3===e?s(t,n,r):2===e?o(t,n,r):void 0},t.ch32=i,t.maj32=o,t.p32=s,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t){!function(){e.exports=this["a8c-fse-common-data-stores"]}()},function(e,t){!function(){e.exports=this.wp.editor}()},function(e,t,n){},function(e,t,n){"use strict";n.r(t);var r=n(7),i=n.n(r),o=n(8),s=n(9),a=n.n(s),u=n(10),c=n(2),f=n(0),l=n.n(f),h=l()("calypso:analytics");n(11);"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}));var p=function(){return(p=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)};var d=n(1),v=(n(3),n(12)),g=l()("lib/load-script/callback-handler"),m=new Map;function y(){return m}function w(e){return y().has(e)}function C(e,t){var n=y();w(e)?(g('Adding a callback for an existing script from "'.concat(e,'"')),n.get(e).add(t)):(g('Adding a callback for a new script from "'.concat(e,'"')),n.set(e,new Set([t])))}function b(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=y(),r=n.get(e);if(r){var i='Executing callbacks for "'.concat(e,'"')+(null===t?" with success":' with error "'.concat(t,'"'));g(i),r.forEach((function(e){"function"==typeof e&&e(t)})),n.delete(e)}}function _(){var e=this.getAttribute("src");g('Handling successful request for "'.concat(e,'"')),b(e),this.onload=null}function F(){var e=this.getAttribute("src");g('Handling failed request for "'.concat(e,'"')),b(e,new Error('Failed to load script "'.concat(e,'"'))),this.onerror=null}var x=l()("lib/load-script/dom-operations");l()("package/load-script");function S(e,t){var n;if(!w(e)&&(n=function(e){x('Creating script element for "'.concat(e,'"'));var t=document.createElement("script");return t.src=e,t.type="text/javascript",t.async=!0,t.onload=_,t.onerror=F,t}(e),x("Attaching element to head"),document.head.appendChild(n)),"function"!=typeof t)return new Promise((function(t,n){C(e,(function(e){null===e?t():n(e)}))}));C(e,t)}var L,O=["a8c_cookie_banner_ok","wcadmin_storeprofiler_create_jetpack_account","wcadmin_storeprofiler_connect_store","wcadmin_storeprofiler_login_jetpack_account","wcadmin_storeprofiler_payment_login","wcadmin_storeprofiler_payment_create_account"];Promise.resolve();function E(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&S("//stats.wp.com/w.js?61");var j=new v.EventEmitter;function A(e,t){if(h('Record event "%s" called with props %o',e,t=t||{}),e.startsWith("calypso_")||Object(d.includes)(O,e)){if(L){var n=L(t);t=p(p({},t),n)}t=Object(d.omitBy)(t,d.isUndefined),h('Recording event "%s" with actual props %o',e,t),E(["recordEvent",e,t]),j.emit("record-event",e,t)}else h('- Event name must be prefixed by "calypso_" or added to `EVENT_NAME_EXCEPTIONS`')}"undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),new Uint8Array(16);for(var k=[],T=0;T<256;++T)k[T]=(T+256).toString(16).substr(1);n(23),n(24),n(25);a()((function(){P(),Object(u.addAction)("setGutenboardingStatus","a8c-gutenboarding",P)}));var M=!1;function P(){var e,t,n,r,s,a,u=null===(e=window)||void 0===e||null===(t=e.calypsoifyGutenberg)||void 0===t?void 0:t.isGutenboarding;if(!M&&(null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.isSiteUnlaunched)&&(null===(s=window)||void 0===s||null===(a=s.calypsoifyGutenberg)||void 0===a?void 0:a.launchUrl)){M=!0;var f=setInterval((function(){var e,t,n,r,s=document.querySelector(".edit-post-header__settings");if(s){clearInterval(f);var a=null===(e=window)||void 0===e||null===(t=e.calypsoifyGutenberg)||void 0===t?void 0:t.isExperimental,l=null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.launchUrl,h=function(){var e=i()(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Object(c.dispatch)("core/editor").savePost();case 2:window.top.location.href=l;case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),p=document.querySelector("body");if(p){p.classList.add("editor-gutenberg-launch__fse-overrides");var d=s.querySelector(".editor-post-publish-button__button"),v=document.createElement("a");v.href=l,v.target="_top",v.className="editor-gutenberg-launch__launch-button components-button is-primary";var g=document.createTextNode(Object(o.__)("Launch","full-site-editing"));v.appendChild(g),v.addEventListener("click",(function(e){var t,n;e.preventDefault();var r=u,i=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.isFocusedLaunchFlow;A("calypso_newsite_editor_launch_click",{is_new_flow:r,is_experimental:a}),r?(a&&Object(c.dispatch)("automattic/launch").enableExperimental(),Object(c.dispatch)("automattic/launch").openSidebar(),setTimeout((function(){Object(c.dispatch)("core/editor").savePost()}),1e3)):i?(Object(c.dispatch)("automattic/launch").openFocusedLaunch(),setTimeout((function(){Object(c.dispatch)("core/editor").savePost()}),1e3)):h()})),s.prepend(v),d&&s.prepend(d)}}}))}}}]));
1
+ !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=32)}([function(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(17)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t){!function(){e.exports=this.wp.data}()},function(e,t){!function(){e.exports=this.lodash}()},function(e,t,n){"use strict";
2
  /*!
3
  * cookie
4
  * Copyright(c) 2012-2014 Roman Shtylman
5
  * Copyright(c) 2015 Douglas Christopher Wilson
6
  * MIT Licensed
7
+ */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var n={},o=t||{},s=e.split(i),u=o.decode||r,c=0;c<s.length;c++){var f=s[c],l=f.indexOf("=");if(!(l<0)){var p=f.substr(0,l).trim(),h=f.substr(++l,f.length).trim();'"'==h[0]&&(h=h.slice(1,-1)),null==n[p]&&(n[p]=a(h,u))}}return n},t.serialize=function(e,t,n){var r=n||{},i=r.encode||o;if("function"!=typeof i)throw new TypeError("option encode is invalid");if(!s.test(e))throw new TypeError("argument name is invalid");var a=i(t);if(a&&!s.test(a))throw new TypeError("argument val is invalid");var u=e+"="+a;if(null!=r.maxAge){var c=r.maxAge-0;if(isNaN(c))throw new Error("maxAge should be a Number");u+="; Max-Age="+Math.floor(c)}if(r.domain){if(!s.test(r.domain))throw new TypeError("option domain is invalid");u+="; Domain="+r.domain}if(r.path){if(!s.test(r.path))throw new TypeError("option path is invalid");u+="; Path="+r.path}if(r.expires){if("function"!=typeof r.expires.toUTCString)throw new TypeError("option expires is invalid");u+="; Expires="+r.expires.toUTCString()}r.httpOnly&&(u+="; HttpOnly");r.secure&&(u+="; Secure");if(r.sameSite){switch("string"==typeof r.sameSite?r.sameSite.toLowerCase():r.sameSite){case!0:u+="; SameSite=Strict";break;case"lax":u+="; SameSite=Lax";break;case"strict":u+="; SameSite=Strict";break;case"none":u+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return u};var r=decodeURIComponent,o=encodeURIComponent,i=/; */,s=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(n){return e}}},function(e,t,n){"use strict";var r=n(5),o=n(22);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function a(e){return 1===e.length?"0"+e:e}function u(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=o,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),o=0;o<e.length;o+=2)n.push(parseInt(e[o]+e[o+1],16))}else for(var r=0,o=0;o<e.length;o++){var s=e.charCodeAt(o);s<128?n[r++]=s:s<2048?(n[r++]=s>>6|192,n[r++]=63&s|128):i(e,o)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++o)),n[r++]=s>>18|240,n[r++]=s>>12&63|128,n[r++]=s>>6&63|128,n[r++]=63&s|128):(n[r++]=s>>12|224,n[r++]=s>>6&63|128,n[r++]=63&s|128)}else for(o=0;o<e.length;o++)n[o]=0|e[o];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=a(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e[r];"little"===t&&(o=s(o)),n+=u(o.toString(16))}return n},t.zero2=a,t.zero8=u,t.join32=function(e,t,n,o){var i=n-t;r(i%4==0);for(var s=new Array(i/4),a=0,u=t;a<s.length;a++,u+=4){var c;c="big"===o?e[u]<<24|e[u+1]<<16|e[u+2]<<8|e[u+3]:e[u+3]<<24|e[u+2]<<16|e[u+1]<<8|e[u],s[a]=c>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,o=0;r<e.length;r++,o+=4){var i=e[r];"big"===t?(n[o]=i>>>24,n[o+1]=i>>>16&255,n[o+2]=i>>>8&255,n[o+3]=255&i):(n[o+3]=i>>>24,n[o+2]=i>>>16&255,n[o+1]=i>>>8&255,n[o]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,o){return e+t+n+r+o>>>0},t.sum64=function(e,t,n,r){var o=e[t],i=r+e[t+1]>>>0,s=(i<r?1:0)+n+o;e[t]=s>>>0,e[t+1]=i},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,o,i,s,a){var u=0,c=t;return u+=(c=c+r>>>0)<t?1:0,u+=(c=c+i>>>0)<i?1:0,e+n+o+s+(u+=(c=c+a>>>0)<a?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,o,i,s,a){return t+r+i+a>>>0},t.sum64_5_hi=function(e,t,n,r,o,i,s,a,u,c){var f=0,l=t;return f+=(l=l+r>>>0)<t?1:0,f+=(l=l+i>>>0)<i?1:0,f+=(l=l+a>>>0)<a?1:0,e+n+o+s+u+(f+=(l=l+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,o,i,s,a,u,c){return t+r+i+a+c>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t,n){var r=n(18),o=n(19),i=n(9),s=n(20);e.exports=function(e){return r(e)||o(e)||i(e)||s()}},function(e,t,n){var r=n(28);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){var r=n(8);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t){function n(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(c){return void n(c)}a.done?t(u):Promise.resolve(u).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,i){var s=e.apply(t,r);function a(e){n(s,o,i,a,u,"next",e)}function u(e){n(s,o,i,a,u,"throw",e)}a(void 0)}))}}},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t){!function(){e.exports=this.wp.domReady}()},function(e,t){!function(){e.exports=this.wp.hooks}()},function(e,t,n){"use strict";var r=n(4),o=n(23),i=n(24),s=n(5),a=r.sum32,u=r.sum32_4,c=r.sum32_5,f=i.ch32,l=i.maj32,p=i.s0_256,h=i.s1_256,d=i.g0_256,v=i.g1_256,g=o.BlockHash,m=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function y(){if(!(this instanceof y))return new y;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=m,this.W=new Array(64)}r.inherits(y,g),e.exports=y,y.blockSize=512,y.outSize=256,y.hmacStrength=192,y.padLength=64,y.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=u(v(n[r-2]),n[r-7],d(n[r-15]),n[r-16]);var o=this.h[0],i=this.h[1],g=this.h[2],m=this.h[3],y=this.h[4],b=this.h[5],w=this.h[6],C=this.h[7];for(s(this.k.length===n.length),r=0;r<n.length;r++){var _=c(C,h(y),f(y,b,w),this.k[r],n[r]),x=a(p(o),l(o,i,g));C=w,w=b,b=y,y=a(m,_),m=g,g=i,i=o,o=a(_,x)}this.h[0]=a(this.h[0],o),this.h[1]=a(this.h[1],i),this.h[2]=a(this.h[2],g),this.h[3]=a(this.h[3],m),this.h[4]=a(this.h[4],y),this.h[5]=a(this.h[5],b),this.h[6]=a(this.h[6],w),this.h[7]=a(this.h[7],C)},y.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t,n){var r=n(25),o=n(26),i=n(9),s=n(27);e.exports=function(e,t){return r(e)||o(e,t)||i(e,t)||s()}},function(e,t,n){"use strict";var r,o="object"==typeof Reflect?Reflect:null,i=o&&"function"==typeof o.apply?o.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=o&&"function"==typeof o.ownKeys?o.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var s=Number.isNaN||function(e){return e!=e};function a(){a.init.call(this)}e.exports=a,a.EventEmitter=a,a.prototype._events=void 0,a.prototype._eventsCount=0,a.prototype._maxListeners=void 0;var u=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function f(e){return void 0===e._maxListeners?a.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var o,i,s,a;if(c(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),s=i[t]),void 0===s)s=i[t]=n,++e._eventsCount;else if("function"==typeof s?s=i[t]=r?[n,s]:[s,n]:r?s.unshift(n):s.push(n),(o=f(e))>0&&s.length>o&&!s.warned){s.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=s.length,a=u,console&&console.warn&&console.warn(a)}return e}function p(){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(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},o=p.bind(r);return o.listener=n,r.wrapFn=o,o}function d(e,t,n){var r=e._events;if(void 0===r)return[];var o=r[t];return void 0===o?[]:"function"==typeof o?n?[o.listener||o]:[o]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(o):g(o,o.length)}function v(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function g(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(a,"defaultMaxListeners",{enumerable:!0,get:function(){return u},set:function(e){if("number"!=typeof e||e<0||s(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");u=e}}),a.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},a.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||s(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},a.prototype.getMaxListeners=function(){return f(this)},a.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,o=this._events;if(void 0!==o)r=r&&void 0===o.error;else if(!r)return!1;if(r){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=o[e];if(void 0===u)return!1;if("function"==typeof u)i(u,this,t);else{var c=u.length,f=g(u,c);for(n=0;n<c;++n)i(f[n],this,t)}return!0},a.prototype.addListener=function(e,t){return l(this,e,t,!1)},a.prototype.on=a.prototype.addListener,a.prototype.prependListener=function(e,t){return l(this,e,t,!0)},a.prototype.once=function(e,t){return c(t),this.on(e,h(this,e,t)),this},a.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,h(this,e,t)),this},a.prototype.removeListener=function(e,t){var n,r,o,i,s;if(c(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(o=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){s=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,o),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,s||t)}return this},a.prototype.off=a.prototype.removeListener,a.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var o,i=Object.keys(n);for(r=0;r<i.length;++r)"removeListener"!==(o=i[r])&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},a.prototype.listeners=function(e){return d(this,e,!0)},a.prototype.rawListeners=function(e){return d(this,e,!1)},a.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):v.call(e,t)},a.prototype.listenerCount=v,a.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t,n){var r=n(6);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return o.colors[Math.abs(t)%o.colors.length]}function o(e){var n;function r(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];if(r.enabled){var s=r,a=Number(new Date),u=a-(n||a);s.diff=u,s.prev=n,s.curr=a,n=a,t[0]=o.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var c=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;c++;var r=o.formatters[n];if("function"==typeof r){var i=t[c];e=r.call(s,i),t.splice(c,1),c--}return e})),o.formatArgs.call(s,t);var f=s.log||o.log;f.apply(s,t)}}return r.namespace=e,r.enabled=o.enabled(e),r.useColors=o.useColors(),r.color=t(e),r.destroy=i,r.extend=s,"function"==typeof o.init&&o.init(r),o.instances.push(r),r}function i(){var e=o.instances.indexOf(this);return-1!==e&&(o.instances.splice(e,1),!0)}function s(e,t){var n=o(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function a(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return o.debug=o,o.default=o,o.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},o.disable=function(){var e=[].concat(r(o.names.map(a)),r(o.skips.map(a).map((function(e){return"-"+e})))).join(",");return o.enable(""),e},o.enable=function(e){var t;o.save(e),o.names=[],o.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?o.skips.push(new RegExp("^"+e.substr(1)+"$")):o.names.push(new RegExp("^"+e+"$")));for(t=0;t<o.instances.length;t++){var i=o.instances[t];i.enabled=o.enabled(i.namespace)}},o.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=o.skips.length;t<n;t++)if(o.skips[t].test(e))return!1;for(t=0,n=o.names.length;t<n;t++)if(o.names[t].test(e))return!0;return!1},o.humanize=n(21),Object.keys(e).forEach((function(t){o[t]=e[t]})),o.instances=[],o.names=[],o.skips=[],o.formatters={},o.selectColor=t,o.enable(o.load()),o}},function(e,t,n){var r=n(8);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=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){var n=1e3,r=60*n,o=60*r,i=24*o,s=7*i,a=365.25*i;function u(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,t){t=t||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var u=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*a;case"weeks":case"week":case"w":return u*s;case"days":case"day":case"d":return u*i;case"hours":case"hour":case"hrs":case"hr":case"h":return u*o;case"minutes":case"minute":case"mins":case"min":case"m":return u*r;case"seconds":case"second":case"secs":case"sec":case"s":return u*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=i)return u(e,t,i,"day");if(t>=o)return u(e,t,o,"hour");if(t>=r)return u(e,t,r,"minute");if(t>=n)return u(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=i)return Math.round(e/i)+"d";if(t>=o)return Math.round(e/o)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t,n){"use strict";var r=n(4),o=n(5);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var o=0;o<e.length;o+=this._delta32)this._update(e,o,o+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),o(null===this.pending),this._digest(e)},i.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var o=1;o<n;o++)r[o]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)r[o++]=0;r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=e>>>24&255,r[o++]=e>>>16&255,r[o++]=e>>>8&255,r[o++]=255&e}else for(r[o++]=255&e,r[o++]=e>>>8&255,r[o++]=e>>>16&255,r[o++]=e>>>24&255,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,i=8;i<this.padLength;i++)r[o++]=0;return r}},function(e,t,n){"use strict";var r=n(4).rotr32;function o(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?o(t,n,r):1===e||3===e?s(t,n,r):2===e?i(t,n,r):void 0},t.ch32=o,t.maj32=i,t.p32=s,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var s,a=e[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!t||n.length!==t);r=!0);}catch(u){o=!0,i=u}finally{try{r||null==a.return||a.return()}finally{if(o)throw i}}return n}}},function(e,t){e.exports=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(e,t){e.exports=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(e,t){!function(){e.exports=this["a8c-fse-common-data-stores"]}()},function(e,t){!function(){e.exports=this.wp.editor}()},function(e,t,n){},function(e,t,n){"use strict";n.r(t);var r=n(10),o=n.n(r),i=n(11),s=n(12),a=n.n(s),u=n(13),c=n(1),f=n(0),l=n.n(f),p=l()("calypso:analytics");n(14);"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}));n(15);var h=n(7),d=n.n(h),v=(n(6),n(2)),g=(n(3),n(16)),m=l()("lib/load-script/callback-handler"),y=new Map;function b(){return y}function w(e){return b().has(e)}function C(e,t){var n=b();w(e)?(m('Adding a callback for an existing script from "'.concat(e,'"')),n.get(e).add(t)):(m('Adding a callback for a new script from "'.concat(e,'"')),n.set(e,new Set([t])))}function _(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=b(),r=n.get(e);if(r){var o='Executing callbacks for "'.concat(e,'"')+(null===t?" with success":' with error "'.concat(t,'"'));m(o),r.forEach((function(e){"function"==typeof e&&e(t)})),n.delete(e)}}function x(){var e=this.getAttribute("src");m('Handling successful request for "'.concat(e,'"')),_(e),this.onload=null}function F(){var e=this.getAttribute("src");m('Handling failed request for "'.concat(e,'"')),_(e,new Error('Failed to load script "'.concat(e,'"'))),this.onerror=null}var O=l()("lib/load-script/dom-operations");l()("package/load-script");function S(e,t){var n;if(!w(e)&&(n=function(e){O('Creating script element for "'.concat(e,'"'));var t=document.createElement("script");return t.src=e,t.type="text/javascript",t.async=!0,t.onload=x,t.onerror=F,t}(e),O("Attaching element to head"),document.head.appendChild(n)),"function"!=typeof t)return new Promise((function(t,n){C(e,(function(e){null===e?t():n(e)}))}));C(e,t)}var j,E=["a8c_cookie_banner_ok","wcadmin_storeprofiler_create_jetpack_account","wcadmin_storeprofiler_connect_store","wcadmin_storeprofiler_login_jetpack_account","wcadmin_storeprofiler_payment_login","wcadmin_storeprofiler_payment_create_account"];Promise.resolve();function L(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&S("//stats.wp.com/w.js?61");var A=new g.EventEmitter;function k(e,t){if(p('Record event "%s" called with props %o',e,t=t||{}),e.startsWith("calypso_")||Object(v.includes)(E,e)){if(j){var n=j(t);t=d()(d()({},t),n)}t=Object(v.omitBy)(t,v.isUndefined),p('Recording event "%s" with actual props %o',e,t),L(["recordEvent",e,t]),A.emit("record-event",e,t)}else p('- Event name must be prefixed by "calypso_" or added to `EVENT_NAME_EXCEPTIONS`')}"undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),new Uint8Array(16);for(var P=[],T=0;T<256;++T)P[T]=(T+256).toString(16).substr(1);n(29),n(30),n(31);a()((function(){R(),Object(u.addAction)("setGutenboardingStatus","a8c-gutenboarding",R)}));var M=!1;function R(){var e,t,n,r,s,a,u=null===(e=window)||void 0===e||null===(t=e.calypsoifyGutenberg)||void 0===t?void 0:t.isGutenboarding;if(!M&&(null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.isSiteUnlaunched)&&(null===(s=window)||void 0===s||null===(a=s.calypsoifyGutenberg)||void 0===a?void 0:a.launchUrl)){var f;M=!0;var l=setInterval((function(){(f=Object(c.select)("automattic/site").getSite(window._currentSiteId))&&clearInterval(l)}),100),p=setInterval((function(){var e,t,n,r,s=document.querySelector(".edit-post-header__settings");if(s){clearInterval(p);var a=null===(e=window)||void 0===e||null===(t=e.calypsoifyGutenberg)||void 0===t?void 0:t.isExperimental,l=null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.launchUrl,h=function(){var e=o()(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Object(c.dispatch)("core/editor").savePost();case 2:window.top.location.href=l;case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),d=document.querySelector("body");if(d){d.classList.add("editor-gutenberg-launch__fse-overrides");var v=s.querySelector(".editor-post-publish-button__button"),g=document.createElement("a");g.href=l,g.target="_top",g.className="editor-gutenberg-launch__launch-button components-button is-primary";var m=document.createTextNode(Object(i.__)("Launch","full-site-editing"));g.appendChild(m),g.addEventListener("click",(function(e){var t,n;e.preventDefault();var r,o,i=u&&(null===(r=f)||void 0===r||null===(o=r.plan)||void 0===o?void 0:o.is_free),s=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.isFocusedLaunchFlow;k("calypso_newsite_editor_launch_click",{is_new_flow:i,is_experimental:a}),i?(a&&Object(c.dispatch)("automattic/launch").enableExperimental(),Object(c.dispatch)("automattic/launch").openSidebar(),setTimeout((function(){Object(c.dispatch)("core/editor").savePost()}),1e3)):s?(Object(c.dispatch)("automattic/launch").openFocusedLaunch(),setTimeout((function(){Object(c.dispatch)("core/editor").savePost()}),1e3)):h()})),s.prepend(g),v&&s.prepend(v)}}}))}}}]));
editor-gutenboarding-launch/index.ts CHANGED
@@ -4,9 +4,10 @@
4
  import { __ } from '@wordpress/i18n';
5
  import domReady from '@wordpress/dom-ready';
6
  import { addAction } from '@wordpress/hooks';
7
- import { dispatch } from '@wordpress/data';
8
  import { recordTracksEvent } from '@automattic/calypso-analytics';
9
  import 'a8c-fse-common-data-stores';
 
10
 
11
  // Depend on `core/editor` store.
12
  import '@wordpress/editor';
@@ -50,6 +51,18 @@ function updateEditor() {
50
 
51
  handled = true;
52
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  const awaitSettingsBar = setInterval( () => {
54
  const settingsBar = document.querySelector( '.edit-post-header__settings' );
55
  if ( ! settingsBar ) {
@@ -82,7 +95,7 @@ function updateEditor() {
82
  * the control launch flow gets replaced by the "Step by Step" launch flow,
83
  * displayed in a modal on top of the editor (no redirect needed)
84
  */
85
- const shouldOpenStepByStepLaunch = isGutenboarding;
86
 
87
  // This currently comes from a feature flag, but should eventually be
88
  // replaced with A/B testing logic
4
  import { __ } from '@wordpress/i18n';
5
  import domReady from '@wordpress/dom-ready';
6
  import { addAction } from '@wordpress/hooks';
7
+ import { select, dispatch } from '@wordpress/data';
8
  import { recordTracksEvent } from '@automattic/calypso-analytics';
9
  import 'a8c-fse-common-data-stores';
10
+ import type { Site } from '@automattic/data-stores';
11
 
12
  // Depend on `core/editor` store.
13
  import '@wordpress/editor';
51
 
52
  handled = true;
53
 
54
+ // Asynchronously load site data to check if site is on a free or paid plan
55
+ // 'select' function is first returning 'undefined' so we retry every 100ms
56
+ let site: Site.SiteDetails | undefined;
57
+ const awaitSiteData = setInterval( () => {
58
+ site = select( 'automattic/site' ).getSite( window._currentSiteId );
59
+ if ( ! site ) {
60
+ return;
61
+ }
62
+ clearInterval( awaitSiteData );
63
+ }, 100 );
64
+ const getIsFreePlan = () => site?.plan?.is_free;
65
+
66
  const awaitSettingsBar = setInterval( () => {
67
  const settingsBar = document.querySelector( '.edit-post-header__settings' );
68
  if ( ! settingsBar ) {
95
  * the control launch flow gets replaced by the "Step by Step" launch flow,
96
  * displayed in a modal on top of the editor (no redirect needed)
97
  */
98
+ const shouldOpenStepByStepLaunch = isGutenboarding && getIsFreePlan();
99
 
100
  // This currently comes from a feature flag, but should eventually be
101
  // replaced with A/B testing logic
editor-site-launch/dist/editor-site-launch.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => 'a908318f95bcb7910e3da4368b431928');
1
+ <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => '5acced11b0fb50b184c771d1adff12b6');
editor-site-launch/dist/editor-site-launch.css CHANGED
@@ -1 +1 @@
1
- .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media (min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media (min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media (min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media (min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media (min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-left:-24px;margin-right:-24px;position:-webkit-sticky;position:sticky;bottom:0}@media (min-width:600px){.nux-launch-step__footer{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-step__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media (min-width:782px){.nux-launch-step__footer{display:none}}.nux-launch-step__input{position:relative;margin-bottom:20px}.nux-launch-step__input input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.nux-launch-step__input input[type=text].components-text-control__input:-ms-input-placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.nux-launch-step__input svg{position:absolute;top:6px;right:8px}.nux-launch-step__input-hint{display:flex;align-items:center;color:var(--studio-gray-50);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;line-height:14px}.nux-launch-step__input-hint>.components-tip svg{margin-right:10px}.onboarding-title{font-size:32px;color:var(--mainColor);margin:0}@media (min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media (min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media (min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #ddd;background-color:#fff;position:fixed;bottom:0;right:0;left:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media (min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-left:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-left:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-left:0}}.action-buttons.no-sticky{padding:0;margin-left:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-left:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-left:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}@media (min-width:600px){button.action_buttons__button.components-button{min-width:160px}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:after{top:0;left:0}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9eff5;--studio-blue-5:#c5d9ed;--studio-blue-10:#9ec2e6;--studio-blue-20:#72aee6;--studio-blue-30:#5198d9;--studio-blue-40:#3582c4;--studio-blue-50:#2271b1;--studio-blue-60:#135e96;--studio-blue-70:#0a4b78;--studio-blue-80:#043959;--studio-blue-90:#01263a;--studio-blue-100:#00131c;--studio-blue:#2271b1;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d4;--studio-celadon-10:#63d6b6;--studio-celadon-20:#2ebd99;--studio-celadon-30:#09a884;--studio-celadon-40:#009172;--studio-celadon-50:#007e65;--studio-celadon-60:#006753;--studio-celadon-70:#005042;--studio-celadon-80:#003b30;--studio-celadon-90:#002721;--studio-celadon-100:#001c17;--studio-celadon:#007e65;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#2fb41f;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,239,245;--studio-blue-5-rgb:197,217,237;--studio-blue-10-rgb:158,194,230;--studio-blue-20-rgb:114,174,230;--studio-blue-30-rgb:81,152,217;--studio-blue-40-rgb:53,130,196;--studio-blue-50-rgb:34,113,177;--studio-blue-60-rgb:19,94,150;--studio-blue-70-rgb:10,75,120;--studio-blue-80-rgb:4,57,89;--studio-blue-90-rgb:1,38,58;--studio-blue-100-rgb:0,19,28;--studio-blue-rgb:34,113,177;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,212;--studio-celadon-10-rgb:99,214,182;--studio-celadon-20-rgb:46,189,153;--studio-celadon-30-rgb:9,168,132;--studio-celadon-40-rgb:0,145,114;--studio-celadon-50-rgb:0,126,101;--studio-celadon-60-rgb:0,103,83;--studio-celadon-70-rgb:0,80,66;--studio-celadon-80-rgb:0,59,48;--studio-celadon-90-rgb:0,39,33;--studio-celadon-100-rgb:0,28,23;--studio-celadon-rgb:0,126,101;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:47,180,31;--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-pink-50);--color-accent-rgb:var(--studio-pink-50-rgb);--color-accent-dark:var(--studio-pink-70);--color-accent-dark-rgb:var(--studio-pink-70-rgb);--color-accent-light:var(--studio-pink-30);--color-accent-light-rgb:var(--studio-pink-30-rgb);--color-accent-0:var(--studio-pink-0);--color-accent-0-rgb:var(--studio-pink-0-rgb);--color-accent-5:var(--studio-pink-5);--color-accent-5-rgb:var(--studio-pink-5-rgb);--color-accent-10:var(--studio-pink-10);--color-accent-10-rgb:var(--studio-pink-10-rgb);--color-accent-20:var(--studio-pink-20);--color-accent-20-rgb:var(--studio-pink-20-rgb);--color-accent-30:var(--studio-pink-30);--color-accent-30-rgb:var(--studio-pink-30-rgb);--color-accent-40:var(--studio-pink-40);--color-accent-40-rgb:var(--studio-pink-40-rgb);--color-accent-50:var(--studio-pink-50);--color-accent-50-rgb:var(--studio-pink-50-rgb);--color-accent-60:var(--studio-pink-60);--color-accent-60-rgb:var(--studio-pink-60-rgb);--color-accent-70:var(--studio-pink-70);--color-accent-70-rgb:var(--studio-pink-70-rgb);--color-accent-80:var(--studio-pink-80);--color-accent-80-rgb:var(--studio-pink-80-rgb);--color-accent-90:var(--studio-pink-90);--color-accent-90-rgb:var(--studio-pink-90-rgb);--color-accent-100:var(--studio-pink-100);--color-accent-100-rgb:var(--studio-pink-100-rgb);--color-neutral:var(--studio-gray-50);--color-neutral-rgb:var(--studio-gray-50-rgb);--color-neutral-dark:var(--studio-gray-70);--color-neutral-dark-rgb:var(--studio-gray-70-rgb);--color-neutral-light:var(--studio-gray-30);--color-neutral-light-rgb:var(--studio-gray-30-rgb);--color-neutral-0:var(--studio-gray-0);--color-neutral-0-rgb:var(--studio-gray-0-rgb);--color-neutral-5:var(--studio-gray-5);--color-neutral-5-rgb:var(--studio-gray-5-rgb);--color-neutral-10:var(--studio-gray-10);--color-neutral-10-rgb:var(--studio-gray-10-rgb);--color-neutral-20:var(--studio-gray-20);--color-neutral-20-rgb:var(--studio-gray-20-rgb);--color-neutral-30:var(--studio-gray-30);--color-neutral-30-rgb:var(--studio-gray-30-rgb);--color-neutral-40:var(--studio-gray-40);--color-neutral-40-rgb:var(--studio-gray-40-rgb);--color-neutral-50:var(--studio-gray-50);--color-neutral-50-rgb:var(--studio-gray-50-rgb);--color-neutral-60:var(--studio-gray-60);--color-neutral-60-rgb:var(--studio-gray-60-rgb);--color-neutral-70:var(--studio-gray-70);--color-neutral-70-rgb:var(--studio-gray-70-rgb);--color-neutral-80:var(--studio-gray-80);--color-neutral-80-rgb:var(--studio-gray-80-rgb);--color-neutral-90:var(--studio-gray-90);--color-neutral-90-rgb:var(--studio-gray-90-rgb);--color-neutral-100:var(--studio-gray-100);--color-neutral-100-rgb:var(--studio-gray-100-rgb);--color-success:var(--studio-green-50);--color-success-rgb:var(--studio-green-50-rgb);--color-success-dark:var(--studio-green-70);--color-success-dark-rgb:var(--studio-green-70-rgb);--color-success-light:var(--studio-green-30);--color-success-light-rgb:var(--studio-green-30-rgb);--color-success-0:var(--studio-green-0);--color-success-0-rgb:var(--studio-green-0-rgb);--color-success-5:var(--studio-green-5);--color-success-5-rgb:var(--studio-green-5-rgb);--color-success-10:var(--studio-green-10);--color-success-10-rgb:var(--studio-green-10-rgb);--color-success-20:var(--studio-green-20);--color-success-20-rgb:var(--studio-green-20-rgb);--color-success-30:var(--studio-green-30);--color-success-30-rgb:var(--studio-green-30-rgb);--color-success-40:var(--studio-green-40);--color-success-40-rgb:var(--studio-green-40-rgb);--color-success-50:var(--studio-green-50);--color-success-50-rgb:var(--studio-green-50-rgb);--color-success-60:var(--studio-green-60);--color-success-60-rgb:var(--studio-green-60-rgb);--color-success-70:var(--studio-green-70);--color-success-70-rgb:var(--studio-green-70-rgb);--color-success-80:var(--studio-green-80);--color-success-80-rgb:var(--studio-green-80-rgb);--color-success-90:var(--studio-green-90);--color-success-90-rgb:var(--studio-green-90-rgb);--color-success-100:var(--studio-green-100);--color-success-100-rgb:var(--studio-green-100-rgb);--color-warning:var(--studio-yellow-50);--color-warning-rgb:var(--studio-yellow-50-rgb);--color-warning-dark:var(--studio-yellow-70);--color-warning-dark-rgb:var(--studio-yellow-70-rgb);--color-warning-light:var(--studio-yellow-30);--color-warning-light-rgb:var(--studio-yellow-30-rgb);--color-warning-0:var(--studio-yellow-0);--color-warning-0-rgb:var(--studio-yellow-0-rgb);--color-warning-5:var(--studio-yellow-5);--color-warning-5-rgb:var(--studio-yellow-5-rgb);--color-warning-10:var(--studio-yellow-10);--color-warning-10-rgb:var(--studio-yellow-10-rgb);--color-warning-20:var(--studio-yellow-20);--color-warning-20-rgb:var(--studio-yellow-20-rgb);--color-warning-30:var(--studio-yellow-30);--color-warning-30-rgb:var(--studio-yellow-30-rgb);--color-warning-40:var(--studio-yellow-40);--color-warning-40-rgb:var(--studio-yellow-40-rgb);--color-warning-50:var(--studio-yellow-50);--color-warning-50-rgb:var(--studio-yellow-50-rgb);--color-warning-60:var(--studio-yellow-60);--color-warning-60-rgb:var(--studio-yellow-60-rgb);--color-warning-70:var(--studio-yellow-70);--color-warning-70-rgb:var(--studio-yellow-70-rgb);--color-warning-80:var(--studio-yellow-80);--color-warning-80-rgb:var(--studio-yellow-80-rgb);--color-warning-90:var(--studio-yellow-90);--color-warning-90-rgb:var(--studio-yellow-90-rgb);--color-warning-100:var(--studio-yellow-100);--color-warning-100-rgb:var(--studio-yellow-100-rgb);--color-error:var(--studio-red-50);--color-error-rgb:var(--studio-red-50-rgb);--color-error-dark:var(--studio-red-70);--color-error-dark-rgb:var(--studio-red-70-rgb);--color-error-light:var(--studio-red-30);--color-error-light-rgb:var(--studio-red-30-rgb);--color-error-0:var(--studio-red-0);--color-error-0-rgb:var(--studio-red-0-rgb);--color-error-5:var(--studio-red-5);--color-error-5-rgb:var(--studio-red-5-rgb);--color-error-10:var(--studio-red-10);--color-error-10-rgb:var(--studio-red-10-rgb);--color-error-20:var(--studio-red-20);--color-error-20-rgb:var(--studio-red-20-rgb);--color-error-30:var(--studio-red-30);--color-error-30-rgb:var(--studio-red-30-rgb);--color-error-40:var(--studio-red-40);--color-error-40-rgb:var(--studio-red-40-rgb);--color-error-50:var(--studio-red-50);--color-error-50-rgb:var(--studio-red-50-rgb);--color-error-60:var(--studio-red-60);--color-error-60-rgb:var(--studio-red-60-rgb);--color-error-70:var(--studio-red-70);--color-error-70-rgb:var(--studio-red-70-rgb);--color-error-80:var(--studio-red-80);--color-error-80-rgb:var(--studio-red-80-rgb);--color-error-90:var(--studio-red-90);--color-error-90-rgb:var(--studio-red-90-rgb);--color-error-100:var(--studio-red-100);--color-error-100-rgb:var(--studio-red-100-rgb);--color-surface:var(--studio-white);--color-surface-rgb:var(--studio-white-rgb);--color-surface-backdrop:var(--studio-gray-0);--color-surface-backdrop-rgb:var(--studio-gray-0-rgb);--color-text:var(--studio-gray-80);--color-text-rgb:var(--studio-gray-80-rgb);--color-text-subtle:var(--studio-gray-50);--color-text-subtle-rgb:var(--studio-gray-50-rgb);--color-text-inverted:var(--studio-white);--color-text-inverted-rgb:var(--studio-white-rgb);--color-border:var(--color-neutral-20);--color-border-rgb:var(--color-neutral-20-rgb);--color-border-subtle:var(--color-neutral-5);--color-border-subtle-rgb:var(--color-neutral-5-rgb);--color-border-shadow:var(--color-neutral-0);--color-border-shadow-rgb:var(--color-neutral-0-rgb);--color-border-inverted:var(--studio-white);--color-border-inverted-rgb:var(--studio-white-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-plan-free:var(--studio-gray-30);--color-plan-blogger:var(--studio-celadon-30);--color-plan-personal:var(--studio-blue-30);--color-plan-premium:var(--studio-yellow-30);--color-plan-business:var(--studio-orange-30);--color-plan-ecommerce:var(--studio-purple-30);--color-premium-domain:var(--studio-wordpress-blue-60);--color-jetpack-plan-free:var(--studio-blue-30);--color-jetpack-plan-personal:var(--studio-yellow-30);--color-jetpack-plan-premium:var(--studio-jetpack-green-30);--color-jetpack-plan-professional:var(--studio-purple-30);--color-masterbar-background:var(--studio-blue-60);--color-masterbar-border:var(--studio-blue-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-70);--color-masterbar-item-active-background:var(--studio-blue-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-jetpack-masterbar-background:var(--studio-white);--color-jetpack-masterbar-border:var(--studio-gray-5);--color-jetpack-masterbar-text:var(--studio-gray-50);--color-jetpack-masterbar-item-hover-background:var(--studio-gray-5);--color-jetpack-masterbar-item-active-background:var(--studio-gray-20);--color-sidebar-background:var(--color-surface);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-rgb:var(--studio-gray-80-rgb);--color-sidebar-text-alternative:var(--studio-gray-50);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-blue-5);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-5-rgb);--color-sidebar-menu-selected-text:var(--studio-blue-70);--color-sidebar-menu-selected-text-rgb:var(--studio-blue-70-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-jetpack-onboarding-text:var(--studio-white);--color-jetpack-onboarding-text-rgb:var(--studio-white-rgb);--color-jetpack-onboarding-background:var(--studio-blue-100);--color-jetpack-onboarding-background-rgb:var(--studio-blue-100-rgb);--color-automattic:var(--studio-blue-40);--color-jetpack:var(--studio-jetpack-green);--color-simplenote:var(--studio-simplenote-blue);--color-woocommerce:var(--studio-woocommerce-purple);--color-wordpress-com:var(--studio-wordpress-blue);--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var(--studio-gray-0);--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21}.color-scheme.is-aquatic{--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-celadon-50);--color-accent-rgb:var(--studio-celadon-50-rgb);--color-accent-dark:var(--studio-celadon-70);--color-accent-dark-rgb:var(--studio-celadon-70-rgb);--color-accent-light:var(--studio-celadon-30);--color-accent-light-rgb:var(--studio-celadon-30-rgb);--color-accent-0:var(--studio-celadon-0);--color-accent-0-rgb:var(--studio-celadon-0-rgb);--color-accent-5:var(--studio-celadon-5);--color-accent-5-rgb:var(--studio-celadon-5-rgb);--color-accent-10:var(--studio-celadon-10);--color-accent-10-rgb:var(--studio-celadon-10-rgb);--color-accent-20:var(--studio-celadon-20);--color-accent-20-rgb:var(--studio-celadon-20-rgb);--color-accent-30:var(--studio-celadon-30);--color-accent-30-rgb:var(--studio-celadon-30-rgb);--color-accent-40:var(--studio-celadon-40);--color-accent-40-rgb:var(--studio-celadon-40-rgb);--color-accent-50:var(--studio-celadon-50);--color-accent-50-rgb:var(--studio-celadon-50-rgb);--color-accent-60:var(--studio-celadon-60);--color-accent-60-rgb:var(--studio-celadon-60-rgb);--color-accent-70:var(--studio-celadon-70);--color-accent-70-rgb:var(--studio-celadon-70-rgb);--color-accent-80:var(--studio-celadon-80);--color-accent-80-rgb:var(--studio-celadon-80-rgb);--color-accent-90:var(--studio-celadon-90);--color-accent-90-rgb:var(--studio-celadon-90-rgb);--color-accent-100:var(--studio-celadon-100);--color-accent-100-rgb:var(--studio-celadon-100-rgb);--color-link:var(--studio-celadon-50);--color-link-rgb:var(--studio-celadon-50-rgb);--color-link-dark:var(--studio-celadon-70);--color-link-dark-rgb:var(--studio-celadon-70-rgb);--color-link-light:var(--studio-celadon-30);--color-link-light-rgb:var(--studio-celadon-30-rgb);--color-link-0:var(--studio-celadon-0);--color-link-0-rgb:var(--studio-celadon-0-rgb);--color-link-5:var(--studio-celadon-5);--color-link-5-rgb:var(--studio-celadon-5-rgb);--color-link-10:var(--studio-celadon-10);--color-link-10-rgb:var(--studio-celadon-10-rgb);--color-link-20:var(--studio-celadon-20);--color-link-20-rgb:var(--studio-celadon-20-rgb);--color-link-30:var(--studio-celadon-30);--color-link-30-rgb:var(--studio-celadon-30-rgb);--color-link-40:var(--studio-celadon-40);--color-link-40-rgb:var(--studio-celadon-40-rgb);--color-link-50:var(--studio-celadon-50);--color-link-50-rgb:var(--studio-celadon-50-rgb);--color-link-60:var(--studio-celadon-60);--color-link-60-rgb:var(--studio-celadon-60-rgb);--color-link-70:var(--studio-celadon-70);--color-link-70-rgb:var(--studio-celadon-70-rgb);--color-link-80:var(--studio-celadon-80);--color-link-80-rgb:var(--studio-celadon-80-rgb);--color-link-90:var(--studio-celadon-90);--color-link-90-rgb:var(--studio-celadon-90-rgb);--color-link-100:var(--studio-celadon-100);--color-link-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--studio-blue-80);--color-masterbar-border:var(--studio-blue-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-90);--color-masterbar-item-active-background:var(--studio-blue-100);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-blue-60);--color-sidebar-background-rgb:var(--studio-blue-60-rgb);--color-sidebar-border:var(--studio-blue-70);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-blue-5);--color-sidebar-gridicon-fill:var(--studio-blue-5);--color-sidebar-menu-selected-background:var(--studio-yellow-20);--color-sidebar-menu-selected-background-rgb:var(--studio-yellow-20-rgb);--color-sidebar-menu-selected-text:var(--studio-blue-90);--color-sidebar-menu-selected-text-rgb:var(--studio-blue-90-rgb);--color-sidebar-menu-hover-background:var(--studio-blue-50);--color-sidebar-menu-hover-background-rgb:var(--studio-blue-50-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-blue,.color-scheme.is-blue .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-classic-blue{--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-orange-50);--color-accent-rgb:var(--studio-orange-50-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--studio-blue-60);--color-masterbar-border:var(--studio-blue-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-70);--color-masterbar-item-active-background:var(--studio-blue-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-5);--color-sidebar-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-border:var(--studio-gray-10);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-alternative:var(--studio-gray-50);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-gray-60);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--color-surface);--color-sidebar-menu-hover-background-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-text:var(--studio-blue-50)}.color-scheme.is-classic-dark{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-pink-50);--color-accent-rgb:var(--studio-pink-50-rgb);--color-accent-dark:var(--studio-pink-70);--color-accent-dark-rgb:var(--studio-pink-70-rgb);--color-accent-light:var(--studio-pink-30);--color-accent-light-rgb:var(--studio-pink-30-rgb);--color-accent-0:var(--studio-pink-0);--color-accent-0-rgb:var(--studio-pink-0-rgb);--color-accent-5:var(--studio-pink-5);--color-accent-5-rgb:var(--studio-pink-5-rgb);--color-accent-10:var(--studio-pink-10);--color-accent-10-rgb:var(--studio-pink-10-rgb);--color-accent-20:var(--studio-pink-20);--color-accent-20-rgb:var(--studio-pink-20-rgb);--color-accent-30:var(--studio-pink-30);--color-accent-30-rgb:var(--studio-pink-30-rgb);--color-accent-40:var(--studio-pink-40);--color-accent-40-rgb:var(--studio-pink-40-rgb);--color-accent-50:var(--studio-pink-50);--color-accent-50-rgb:var(--studio-pink-50-rgb);--color-accent-60:var(--studio-pink-60);--color-accent-60-rgb:var(--studio-pink-60-rgb);--color-accent-70:var(--studio-pink-70);--color-accent-70-rgb:var(--studio-pink-70-rgb);--color-accent-80:var(--studio-pink-80);--color-accent-80-rgb:var(--studio-pink-80-rgb);--color-accent-90:var(--studio-pink-90);--color-accent-90-rgb:var(--studio-pink-90-rgb);--color-accent-100:var(--studio-pink-100);--color-accent-100-rgb:var(--studio-pink-100-rgb);--color-neutral:var(--studio-gray-50);--color-neutral-rgb:var(--studio-gray-50-rgb);--color-neutral-dark:var(--studio-gray-70);--color-neutral-dark-rgb:var(--studio-gray-70-rgb);--color-neutral-light:var(--studio-gray-30);--color-neutral-light-rgb:var(--studio-gray-30-rgb);--color-neutral-0:var(--studio-gray-0);--color-neutral-0-rgb:var(--studio-gray-0-rgb);--color-neutral-5:var(--studio-gray-5);--color-neutral-5-rgb:var(--studio-gray-5-rgb);--color-neutral-10:var(--studio-gray-10);--color-neutral-10-rgb:var(--studio-gray-10-rgb);--color-neutral-20:var(--studio-gray-20);--color-neutral-20-rgb:var(--studio-gray-20-rgb);--color-neutral-30:var(--studio-gray-30);--color-neutral-30-rgb:var(--studio-gray-30-rgb);--color-neutral-40:var(--studio-gray-40);--color-neutral-40-rgb:var(--studio-gray-40-rgb);--color-neutral-50:var(--studio-gray-50);--color-neutral-50-rgb:var(--studio-gray-50-rgb);--color-neutral-60:var(--studio-gray-60);--color-neutral-60-rgb:var(--studio-gray-60-rgb);--color-neutral-70:var(--studio-gray-70);--color-neutral-70-rgb:var(--studio-gray-70-rgb);--color-neutral-80:var(--studio-gray-80);--color-neutral-80-rgb:var(--studio-gray-80-rgb);--color-neutral-90:var(--studio-gray-90);--color-neutral-90-rgb:var(--studio-gray-90-rgb);--color-neutral-100:var(--studio-gray-100);--color-neutral-100-rgb:var(--studio-gray-100-rgb);--color-success:var(--studio-green-50);--color-success-rgb:var(--studio-green-50-rgb);--color-success-dark:var(--studio-green-70);--color-success-dark-rgb:var(--studio-green-70-rgb);--color-success-light:var(--studio-green-30);--color-success-light-rgb:var(--studio-green-30-rgb);--color-success-0:var(--studio-green-0);--color-success-0-rgb:var(--studio-green-0-rgb);--color-success-5:var(--studio-green-5);--color-success-5-rgb:var(--studio-green-5-rgb);--color-success-10:var(--studio-green-10);--color-success-10-rgb:var(--studio-green-10-rgb);--color-success-20:var(--studio-green-20);--color-success-20-rgb:var(--studio-green-20-rgb);--color-success-30:var(--studio-green-30);--color-success-30-rgb:var(--studio-green-30-rgb);--color-success-40:var(--studio-green-40);--color-success-40-rgb:var(--studio-green-40-rgb);--color-success-50:var(--studio-green-50);--color-success-50-rgb:var(--studio-green-50-rgb);--color-success-60:var(--studio-green-60);--color-success-60-rgb:var(--studio-green-60-rgb);--color-success-70:var(--studio-green-70);--color-success-70-rgb:var(--studio-green-70-rgb);--color-success-80:var(--studio-green-80);--color-success-80-rgb:var(--studio-green-80-rgb);--color-success-90:var(--studio-green-90);--color-success-90-rgb:var(--studio-green-90-rgb);--color-success-100:var(--studio-green-100);--color-success-100-rgb:var(--studio-green-100-rgb);--color-warning:var(--studio-yellow-50);--color-warning-rgb:var(--studio-yellow-50-rgb);--color-warning-dark:var(--studio-yellow-70);--color-warning-dark-rgb:var(--studio-yellow-70-rgb);--color-warning-light:var(--studio-yellow-30);--color-warning-light-rgb:var(--studio-yellow-30-rgb);--color-warning-0:var(--studio-yellow-0);--color-warning-0-rgb:var(--studio-yellow-0-rgb);--color-warning-5:var(--studio-yellow-5);--color-warning-5-rgb:var(--studio-yellow-5-rgb);--color-warning-10:var(--studio-yellow-10);--color-warning-10-rgb:var(--studio-yellow-10-rgb);--color-warning-20:var(--studio-yellow-20);--color-warning-20-rgb:var(--studio-yellow-20-rgb);--color-warning-30:var(--studio-yellow-30);--color-warning-30-rgb:var(--studio-yellow-30-rgb);--color-warning-40:var(--studio-yellow-40);--color-warning-40-rgb:var(--studio-yellow-40-rgb);--color-warning-50:var(--studio-yellow-50);--color-warning-50-rgb:var(--studio-yellow-50-rgb);--color-warning-60:var(--studio-yellow-60);--color-warning-60-rgb:var(--studio-yellow-60-rgb);--color-warning-70:var(--studio-yellow-70);--color-warning-70-rgb:var(--studio-yellow-70-rgb);--color-warning-80:var(--studio-yellow-80);--color-warning-80-rgb:var(--studio-yellow-80-rgb);--color-warning-90:var(--studio-yellow-90);--color-warning-90-rgb:var(--studio-yellow-90-rgb);--color-warning-100:var(--studio-yellow-100);--color-warning-100-rgb:var(--studio-yellow-100-rgb);--color-error:var(--studio-red-50);--color-error-rgb:var(--studio-red-50-rgb);--color-error-dark:var(--studio-red-70);--color-error-dark-rgb:var(--studio-red-70-rgb);--color-error-light:var(--studio-red-30);--color-error-light-rgb:var(--studio-red-30-rgb);--color-error-0:var(--studio-red-0);--color-error-0-rgb:var(--studio-red-0-rgb);--color-error-5:var(--studio-red-5);--color-error-5-rgb:var(--studio-red-5-rgb);--color-error-10:var(--studio-red-10);--color-error-10-rgb:var(--studio-red-10-rgb);--color-error-20:var(--studio-red-20);--color-error-20-rgb:var(--studio-red-20-rgb);--color-error-30:var(--studio-red-30);--color-error-30-rgb:var(--studio-red-30-rgb);--color-error-40:var(--studio-red-40);--color-error-40-rgb:var(--studio-red-40-rgb);--color-error-50:var(--studio-red-50);--color-error-50-rgb:var(--studio-red-50-rgb);--color-error-60:var(--studio-red-60);--color-error-60-rgb:var(--studio-red-60-rgb);--color-error-70:var(--studio-red-70);--color-error-70-rgb:var(--studio-red-70-rgb);--color-error-80:var(--studio-red-80);--color-error-80-rgb:var(--studio-red-80-rgb);--color-error-90:var(--studio-red-90);--color-error-90-rgb:var(--studio-red-90-rgb);--color-error-100:var(--studio-red-100);--color-error-100-rgb:var(--studio-red-100-rgb);--color-surface:var(--studio-white);--color-surface-rgb:var(--studio-white-rgb);--color-surface-backdrop:var(--studio-gray-0);--color-surface-backdrop-rgb:var(--studio-gray-0-rgb);--color-text:var(--studio-gray-80);--color-text-rgb:var(--studio-gray-80-rgb);--color-text-subtle:var(--studio-gray-50);--color-text-subtle-rgb:var(--studio-gray-50-rgb);--color-text-inverted:var(--studio-white);--color-text-inverted-rgb:var(--studio-white-rgb);--color-border:var(--color-neutral-20);--color-border-rgb:var(--color-neutral-20-rgb);--color-border-subtle:var(--color-neutral-5);--color-border-subtle-rgb:var(--color-neutral-5-rgb);--color-border-shadow:var(--color-neutral-0);--color-border-shadow-rgb:var(--color-neutral-0-rgb);--color-border-inverted:var(--studio-white);--color-border-inverted-rgb:var(--studio-white-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-plan-free:var(--studio-gray-30);--color-plan-blogger:var(--studio-celadon-30);--color-plan-personal:var(--studio-blue-30);--color-plan-premium:var(--studio-yellow-30);--color-plan-business:var(--studio-orange-30);--color-plan-ecommerce:var(--studio-purple-30);--color-premium-domain:var(--studio-wordpress-blue-60);--color-jetpack-plan-free:var(--studio-blue-30);--color-jetpack-plan-personal:var(--studio-yellow-30);--color-jetpack-plan-premium:var(--studio-jetpack-green-30);--color-jetpack-plan-professional:var(--studio-purple-30);--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-jetpack-masterbar-background:var(--studio-white);--color-jetpack-masterbar-border:var(--studio-gray-5);--color-jetpack-masterbar-text:var(--studio-gray-50);--color-jetpack-masterbar-item-hover-background:var(--studio-gray-5);--color-jetpack-masterbar-item-active-background:var(--studio-gray-20);--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var(--studio-white);--color-jetpack-onboarding-text-rgb:var(--studio-white-rgb);--color-jetpack-onboarding-background:var(--studio-blue-100);--color-jetpack-onboarding-background-rgb:var(--studio-blue-100-rgb);--color-automattic:var(--studio-blue-40);--color-jetpack:var(--studio-jetpack-green);--color-simplenote:var(--studio-simplenote-blue);--color-woocommerce:var(--studio-woocommerce-purple);--color-wordpress-com:var(--studio-wordpress-blue);--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var(--studio-gray-0);--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799}.color-scheme.is-coffee,.color-scheme.is-coffee .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-orange-70);--color-primary-dark-rgb:var(--studio-orange-70-rgb);--color-primary-light:var(--studio-orange-30);--color-primary-light-rgb:var(--studio-orange-30-rgb);--color-primary-0:var(--studio-orange-0);--color-primary-0-rgb:var(--studio-orange-0-rgb);--color-primary-5:var(--studio-orange-5);--color-primary-5-rgb:var(--studio-orange-5-rgb);--color-primary-10:var(--studio-orange-10);--color-primary-10-rgb:var(--studio-orange-10-rgb);--color-primary-20:var(--studio-orange-20);--color-primary-20-rgb:var(--studio-orange-20-rgb);--color-primary-30:var(--studio-orange-30);--color-primary-30-rgb:var(--studio-orange-30-rgb);--color-primary-40:var(--studio-orange-40);--color-primary-40-rgb:var(--studio-orange-40-rgb);--color-primary-50:var(--studio-orange-50);--color-primary-50-rgb:var(--studio-orange-50-rgb);--color-primary-60:var(--studio-orange-60);--color-primary-60-rgb:var(--studio-orange-60-rgb);--color-primary-70:var(--studio-orange-70);--color-primary-70-rgb:var(--studio-orange-70-rgb);--color-primary-80:var(--studio-orange-80);--color-primary-80-rgb:var(--studio-orange-80-rgb);--color-primary-90:var(--studio-orange-90);--color-primary-90-rgb:var(--studio-orange-90-rgb);--color-primary-100:var(--studio-orange-100);--color-primary-100-rgb:var(--studio-orange-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-0);--color-sidebar-gridicon-fill:var(--studio-gray-0);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-menu-hover:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-contrast{--color-primary:var(--studio-gray-80);--color-primary-rgb:var(--studio-gray-80-rgb);--color-primary-dark:var(--studio-gray-100);--color-primary-dark-rgb:var(--studio-gray-100-rgb);--color-primary-light:var(--studio-gray-60);--color-primary-light-rgb:var(--studio-gray-60-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-70);--color-accent-rgb:var(--studio-blue-70-rgb);--color-accent-dark:var(--studio-blue-90);--color-accent-dark-rgb:var(--studio-blue-90-rgb);--color-accent-light:var(--studio-blue-50);--color-accent-light-rgb:var(--studio-blue-50-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-surface-backdrop:var(--studio-white);--color-surface-backdrop-rgb:var(--studio-white-rgb);--color-text:var(--studio-gray-100);--color-text-rgb:var(--studio-gray-100-rgb);--color-text-subtle:var(--studio-gray-70);--color-text-subtle-rgb:var(--studio-gray-70-rgb);--color-link:var(--studio-blue-70);--color-link-rgb:var(--studio-blue-70-rgb);--color-link-dark:var(--studio-blue-100);--color-link-dark-rgb:var(--studio-blue-100-rgb);--color-link-light:var(--studio-blue-50);--color-link-light-rgb:var(--studio-blue-50-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-premium-domain:var(--studio-gray-100);--color-masterbar-background:var(--studio-gray-100);--color-masterbar-border:var(--studio-gray-90);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-60);--color-masterbar-item-new-editor-background:var(--studio-gray-70);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-90);--color-masterbar-unread-dot-background:var(--studio-yellow-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-70);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-70);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--color-surface);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-90);--color-sidebar-text-rgb:var(--studio-gray-90-rgb);--color-sidebar-text-alternative:var(--studio-gray-90);--color-sidebar-gridicon-fill:var(--studio-gray-90);--color-sidebar-menu-selected-background:var(--studio-gray-100);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-100-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-60);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--ectoplasm-green-70);--color-primary-dark-rgb:var(--ectoplasm-green-70-rgb);--color-primary-light:var(--ectoplasm-green-30);--color-primary-light-rgb:var(--ectoplasm-green-30-rgb);--color-primary-0:var(--ectoplasm-green-0);--color-primary-0-rgb:var(--ectoplasm-green-0-rgb);--color-primary-5:var(--ectoplasm-green-5);--color-primary-5-rgb:var(--ectoplasm-green-5-rgb);--color-primary-10:var(--ectoplasm-green-10);--color-primary-10-rgb:var(--ectoplasm-green-10-rgb);--color-primary-20:var(--ectoplasm-green-20);--color-primary-20-rgb:var(--ectoplasm-green-20-rgb);--color-primary-30:var(--ectoplasm-green-30);--color-primary-30-rgb:var(--ectoplasm-green-30-rgb);--color-primary-40:var(--ectoplasm-green-40);--color-primary-40-rgb:var(--ectoplasm-green-40-rgb);--color-primary-50:var(--ectoplasm-green-50);--color-primary-50-rgb:var(--ectoplasm-green-50-rgb);--color-primary-60:var(--ectoplasm-green-60);--color-primary-60-rgb:var(--ectoplasm-green-60-rgb);--color-primary-70:var(--ectoplasm-green-70);--color-primary-70-rgb:var(--ectoplasm-green-70-rgb);--color-primary-80:var(--ectoplasm-green-80);--color-primary-80-rgb:var(--ectoplasm-green-80-rgb);--color-primary-90:var(--ectoplasm-green-90);--color-primary-90-rgb:var(--ectoplasm-green-90-rgb);--color-primary-100:var(--ectoplasm-green-100);--color-primary-100-rgb:var(--ectoplasm-green-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--ectoplasm-green-70);--color-accent-dark-rgb:var(--ectoplasm-green-70-rgb);--color-accent-light:var(--ectoplasm-green-30);--color-accent-light-rgb:var(--ectoplasm-green-30-rgb);--color-accent-0:var(--ectoplasm-green-0);--color-accent-0-rgb:var(--ectoplasm-green-0-rgb);--color-accent-5:var(--ectoplasm-green-5);--color-accent-5-rgb:var(--ectoplasm-green-5-rgb);--color-accent-10:var(--ectoplasm-green-10);--color-accent-10-rgb:var(--ectoplasm-green-10-rgb);--color-accent-20:var(--ectoplasm-green-20);--color-accent-20-rgb:var(--ectoplasm-green-20-rgb);--color-accent-30:var(--ectoplasm-green-30);--color-accent-30-rgb:var(--ectoplasm-green-30-rgb);--color-accent-40:var(--ectoplasm-green-40);--color-accent-40-rgb:var(--ectoplasm-green-40-rgb);--color-accent-50:var(--ectoplasm-green-50);--color-accent-50-rgb:var(--ectoplasm-green-50-rgb);--color-accent-60:var(--ectoplasm-green-60);--color-accent-60-rgb:var(--ectoplasm-green-60-rgb);--color-accent-70:var(--ectoplasm-green-70);--color-accent-70-rgb:var(--ectoplasm-green-70-rgb);--color-accent-80:var(--ectoplasm-green-80);--color-accent-80-rgb:var(--ectoplasm-green-80-rgb);--color-accent-90:var(--ectoplasm-green-90);--color-accent-90-rgb:var(--ectoplasm-green-90-rgb);--color-accent-100:var(--ectoplasm-green-100);--color-accent-100-rgb:var(--ectoplasm-green-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--theme-text-color);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-light,.color-scheme.is-light .is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-black);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-90);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-90);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color);--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light .is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--color-primary:var(--studio-gray-70);--color-primary-rgb:var(--studio-gray-70-rgb);--color-primary-dark:var(--studio-gray-80);--color-primary-dark-rgb:var(--studio-gray-80-rgb);--color-primary-light:var(--studio-gray-50);--color-primary-light-rgb:var(--studio-gray-50-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-red-60);--color-link-rgb:var(--studio-red-60-rgb);--color-link-dark:var(--studio-red-70);--color-link-dark-rgb:var(--studio-red-70-rgb);--color-link-light:var(--studio-red-30);--color-link-light-rgb:var(--studio-red-30-rgb);--color-link-0:var(--studio-red-0);--color-link-0-rgb:var(--studio-red-0-rgb);--color-link-5:var(--studio-red-5);--color-link-5-rgb:var(--studio-red-5-rgb);--color-link-10:var(--studio-red-10);--color-link-10-rgb:var(--studio-red-10-rgb);--color-link-20:var(--studio-red-20);--color-link-20-rgb:var(--studio-red-20-rgb);--color-link-30:var(--studio-red-30);--color-link-30-rgb:var(--studio-red-30-rgb);--color-link-40:var(--studio-red-40);--color-link-40-rgb:var(--studio-red-40-rgb);--color-link-50:var(--studio-red-50);--color-link-50-rgb:var(--studio-red-50-rgb);--color-link-60:var(--studio-red-60);--color-link-60-rgb:var(--studio-red-60-rgb);--color-link-70:var(--studio-red-70);--color-link-70-rgb:var(--studio-red-70-rgb);--color-link-80:var(--studio-red-80);--color-link-80-rgb:var(--studio-red-80-rgb);--color-link-90:var(--studio-red-90);--color-link-90-rgb:var(--studio-red-90-rgb);--color-link-100:var(--studio-red-100);--color-link-100-rgb:var(--studio-red-100-rgb);--color-masterbar-background:var(--studio-gray-70);--color-masterbar-border:var(--studio-gray-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-90);--color-sidebar-background-rgb:var(--studio-gray-90-rgb);--color-sidebar-border:var(--studio-gray-80);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-gray-20);--color-sidebar-gridicon-fill:var(--studio-gray-10);--color-sidebar-menu-selected-background:var(--studio-red-50);--color-sidebar-menu-selected-background-rgb:var(--studio-red-50-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-80);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-80-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-modern,.color-scheme.is-modern .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--color-link:var(--theme-highlight-color);--color-link-dark:#183ad6;--color-link-light:#667fee;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-10);--color-sidebar-gridicon-fill:var(--studio-gray-0);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--studio-blue-100);--color-masterbar-border:var(--studio-blue-100);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-90);--color-masterbar-item-active-background:var(--studio-blue-80);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-blue-80);--color-sidebar-background-rgb:var(--studio-blue-80-rgb);--color-sidebar-border:var(--studio-blue-90);--color-sidebar-text:var(--studio-blue-5);--color-sidebar-text-rgb:var(--studio-blue-5-rgb);--color-sidebar-text-alternative:var(--studio-blue-20);--color-sidebar-gridicon-fill:var(--studio-blue-10);--color-sidebar-menu-selected-background:var(--studio-blue-100);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-100-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-blue-70);--color-sidebar-menu-hover-background-rgb:var(--studio-blue-70-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-ocean,.color-scheme.is-ocean .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-celadon-70);--color-primary-dark-rgb:var(--studio-celadon-70-rgb);--color-primary-light:var(--studio-celadon-30);--color-primary-light-rgb:var(--studio-celadon-30-rgb);--color-primary-0:var(--studio-celadon-0);--color-primary-0-rgb:var(--studio-celadon-0-rgb);--color-primary-5:var(--studio-celadon-5);--color-primary-5-rgb:var(--studio-celadon-5-rgb);--color-primary-10:var(--studio-celadon-10);--color-primary-10-rgb:var(--studio-celadon-10-rgb);--color-primary-20:var(--studio-celadon-20);--color-primary-20-rgb:var(--studio-celadon-20-rgb);--color-primary-30:var(--studio-celadon-30);--color-primary-30-rgb:var(--studio-celadon-30-rgb);--color-primary-40:var(--studio-celadon-40);--color-primary-40-rgb:var(--studio-celadon-40-rgb);--color-primary-50:var(--studio-celadon-50);--color-primary-50-rgb:var(--studio-celadon-50-rgb);--color-primary-60:var(--studio-celadon-60);--color-primary-60-rgb:var(--studio-celadon-60-rgb);--color-primary-70:var(--studio-celadon-70);--color-primary-70-rgb:var(--studio-celadon-70-rgb);--color-primary-80:var(--studio-celadon-80);--color-primary-80-rgb:var(--studio-celadon-80-rgb);--color-primary-90:var(--studio-celadon-90);--color-primary-90-rgb:var(--studio-celadon-90-rgb);--color-primary-100:var(--studio-celadon-100);--color-primary-100-rgb:var(--studio-celadon-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-celadon-70);--color-accent-dark-rgb:var(--studio-celadon-70-rgb);--color-accent-light:var(--studio-celadon-30);--color-accent-light-rgb:var(--studio-celadon-30-rgb);--color-accent-0:var(--studio-celadon-0);--color-accent-0-rgb:var(--studio-celadon-0-rgb);--color-accent-5:var(--studio-celadon-5);--color-accent-5-rgb:var(--studio-celadon-5-rgb);--color-accent-10:var(--studio-celadon-10);--color-accent-10-rgb:var(--studio-celadon-10-rgb);--color-accent-20:var(--studio-celadon-20);--color-accent-20-rgb:var(--studio-celadon-20-rgb);--color-accent-30:var(--studio-celadon-30);--color-accent-30-rgb:var(--studio-celadon-30-rgb);--color-accent-40:var(--studio-celadon-40);--color-accent-40-rgb:var(--studio-celadon-40-rgb);--color-accent-50:var(--studio-celadon-50);--color-accent-50-rgb:var(--studio-celadon-50-rgb);--color-accent-60:var(--studio-celadon-60);--color-accent-60-rgb:var(--studio-celadon-60-rgb);--color-accent-70:var(--studio-celadon-70);--color-accent-70-rgb:var(--studio-celadon-70-rgb);--color-accent-80:var(--studio-celadon-80);--color-accent-80-rgb:var(--studio-celadon-80-rgb);--color-accent-90:var(--studio-celadon-90);--color-accent-90-rgb:var(--studio-celadon-90-rgb);--color-accent-100:var(--studio-celadon-100);--color-accent-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--theme-text-color);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-powder-snow{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--studio-gray-100);--color-masterbar-border:var(--studio-gray-90);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-70);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-5);--color-sidebar-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-border:var(--studio-gray-10);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-rgb:var(--studio-gray-80-rgb);--color-sidebar-text-alternative:var(--studio-gray-60);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-gray-60);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--color-surface);--color-sidebar-menu-hover-background-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-text:var(--studio-blue-60)}.color-scheme.is-sakura{--color-primary:var(--studio-celadon-50);--color-primary-rgb:var(--studio-celadon-50-rgb);--color-primary-dark:var(--studio-celadon-70);--color-primary-dark-rgb:var(--studio-celadon-70-rgb);--color-primary-light:var(--studio-celadon-30);--color-primary-light-rgb:var(--studio-celadon-30-rgb);--color-primary-0:var(--studio-celadon-0);--color-primary-0-rgb:var(--studio-celadon-0-rgb);--color-primary-5:var(--studio-celadon-5);--color-primary-5-rgb:var(--studio-celadon-5-rgb);--color-primary-10:var(--studio-celadon-10);--color-primary-10-rgb:var(--studio-celadon-10-rgb);--color-primary-20:var(--studio-celadon-20);--color-primary-20-rgb:var(--studio-celadon-20-rgb);--color-primary-30:var(--studio-celadon-30);--color-primary-30-rgb:var(--studio-celadon-30-rgb);--color-primary-40:var(--studio-celadon-40);--color-primary-40-rgb:var(--studio-celadon-40-rgb);--color-primary-50:var(--studio-celadon-50);--color-primary-50-rgb:var(--studio-celadon-50-rgb);--color-primary-60:var(--studio-celadon-60);--color-primary-60-rgb:var(--studio-celadon-60-rgb);--color-primary-70:var(--studio-celadon-70);--color-primary-70-rgb:var(--studio-celadon-70-rgb);--color-primary-80:var(--studio-celadon-80);--color-primary-80-rgb:var(--studio-celadon-80-rgb);--color-primary-90:var(--studio-celadon-90);--color-primary-90-rgb:var(--studio-celadon-90-rgb);--color-primary-100:var(--studio-celadon-100);--color-primary-100-rgb:var(--studio-celadon-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-celadon-50);--color-link-rgb:var(--studio-celadon-50-rgb);--color-link-dark:var(--studio-celadon-70);--color-link-dark-rgb:var(--studio-celadon-70-rgb);--color-link-light:var(--studio-celadon-30);--color-link-light-rgb:var(--studio-celadon-30-rgb);--color-link-0:var(--studio-celadon-0);--color-link-0-rgb:var(--studio-celadon-0-rgb);--color-link-5:var(--studio-celadon-5);--color-link-5-rgb:var(--studio-celadon-5-rgb);--color-link-10:var(--studio-celadon-10);--color-link-10-rgb:var(--studio-celadon-10-rgb);--color-link-20:var(--studio-celadon-20);--color-link-20-rgb:var(--studio-celadon-20-rgb);--color-link-30:var(--studio-celadon-30);--color-link-30-rgb:var(--studio-celadon-30-rgb);--color-link-40:var(--studio-celadon-40);--color-link-40-rgb:var(--studio-celadon-40-rgb);--color-link-50:var(--studio-celadon-50);--color-link-50-rgb:var(--studio-celadon-50-rgb);--color-link-60:var(--studio-celadon-60);--color-link-60-rgb:var(--studio-celadon-60-rgb);--color-link-70:var(--studio-celadon-70);--color-link-70-rgb:var(--studio-celadon-70-rgb);--color-link-80:var(--studio-celadon-80);--color-link-80-rgb:var(--studio-celadon-80-rgb);--color-link-90:var(--studio-celadon-90);--color-link-90-rgb:var(--studio-celadon-90-rgb);--color-link-100:var(--studio-celadon-100);--color-link-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--studio-celadon-70);--color-masterbar-border:var(--studio-celadon-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-celadon-80);--color-masterbar-item-active-background:var(--studio-celadon-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-pink-5);--color-sidebar-background-rgb:var(--studio-pink-5-rgb);--color-sidebar-border:var(--studio-pink-10);--color-sidebar-text:var(--studio-pink-80);--color-sidebar-text-rgb:var(--studio-pink-80-rgb);--color-sidebar-text-alternative:var(--studio-pink-60);--color-sidebar-gridicon-fill:var(--studio-pink-70);--color-sidebar-menu-selected-background:var(--studio-blue-50);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-50-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-pink-10);--color-sidebar-menu-hover-background-rgb:var(--studio-pink-10-rgb);--color-sidebar-menu-hover-text:var(--studio-pink-90)}.color-scheme.is-sunrise,.color-scheme.is-sunrise .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-orange-70);--color-primary-dark-rgb:var(--studio-orange-70-rgb);--color-primary-light:var(--studio-orange-30);--color-primary-light-rgb:var(--studio-orange-30-rgb);--color-primary-0:var(--studio-orange-0);--color-primary-0-rgb:var(--studio-orange-0-rgb);--color-primary-5:var(--studio-orange-5);--color-primary-5-rgb:var(--studio-orange-5-rgb);--color-primary-10:var(--studio-orange-10);--color-primary-10-rgb:var(--studio-orange-10-rgb);--color-primary-20:var(--studio-orange-20);--color-primary-20-rgb:var(--studio-orange-20-rgb);--color-primary-30:var(--studio-orange-30);--color-primary-30-rgb:var(--studio-orange-30-rgb);--color-primary-40:var(--studio-orange-40);--color-primary-40-rgb:var(--studio-orange-40-rgb);--color-primary-50:var(--studio-orange-50);--color-primary-50-rgb:var(--studio-orange-50-rgb);--color-primary-60:var(--studio-orange-60);--color-primary-60-rgb:var(--studio-orange-60-rgb);--color-primary-70:var(--studio-orange-70);--color-primary-70-rgb:var(--studio-orange-70-rgb);--color-primary-80:var(--studio-orange-80);--color-primary-80-rgb:var(--studio-orange-80-rgb);--color-primary-90:var(--studio-orange-90);--color-primary-90-rgb:var(--studio-orange-90-rgb);--color-primary-100:var(--studio-orange-100);--color-primary-100-rgb:var(--studio-orange-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-0);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-sunset{--color-primary:var(--studio-red-50);--color-primary-rgb:var(--studio-red-50-rgb);--color-primary-dark:var(--studio-red-70);--color-primary-dark-rgb:var(--studio-red-70-rgb);--color-primary-light:var(--studio-red-30);--color-primary-light-rgb:var(--studio-red-30-rgb);--color-primary-0:var(--studio-red-0);--color-primary-0-rgb:var(--studio-red-0-rgb);--color-primary-5:var(--studio-red-5);--color-primary-5-rgb:var(--studio-red-5-rgb);--color-primary-10:var(--studio-red-10);--color-primary-10-rgb:var(--studio-red-10-rgb);--color-primary-20:var(--studio-red-20);--color-primary-20-rgb:var(--studio-red-20-rgb);--color-primary-30:var(--studio-red-30);--color-primary-30-rgb:var(--studio-red-30-rgb);--color-primary-40:var(--studio-red-40);--color-primary-40-rgb:var(--studio-red-40-rgb);--color-primary-50:var(--studio-red-50);--color-primary-50-rgb:var(--studio-red-50-rgb);--color-primary-60:var(--studio-red-60);--color-primary-60-rgb:var(--studio-red-60-rgb);--color-primary-70:var(--studio-red-70);--color-primary-70-rgb:var(--studio-red-70-rgb);--color-primary-80:var(--studio-red-80);--color-primary-80-rgb:var(--studio-red-80-rgb);--color-primary-90:var(--studio-red-90);--color-primary-90-rgb:var(--studio-red-90-rgb);--color-primary-100:var(--studio-red-100);--color-primary-100-rgb:var(--studio-red-100-rgb);--color-accent:var(--studio-orange-50);--color-accent-rgb:var(--studio-orange-50-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-link:var(--studio-orange-50);--color-link-rgb:var(--studio-orange-50-rgb);--color-link-dark:var(--studio-orange-70);--color-link-dark-rgb:var(--studio-orange-70-rgb);--color-link-light:var(--studio-orange-30);--color-link-light-rgb:var(--studio-orange-30-rgb);--color-link-0:var(--studio-orange-0);--color-link-0-rgb:var(--studio-orange-0-rgb);--color-link-5:var(--studio-orange-5);--color-link-5-rgb:var(--studio-orange-5-rgb);--color-link-10:var(--studio-orange-10);--color-link-10-rgb:var(--studio-orange-10-rgb);--color-link-20:var(--studio-orange-20);--color-link-20-rgb:var(--studio-orange-20-rgb);--color-link-30:var(--studio-orange-30);--color-link-30-rgb:var(--studio-orange-30-rgb);--color-link-40:var(--studio-orange-40);--color-link-40-rgb:var(--studio-orange-40-rgb);--color-link-50:var(--studio-orange-50);--color-link-50-rgb:var(--studio-orange-50-rgb);--color-link-60:var(--studio-orange-60);--color-link-60-rgb:var(--studio-orange-60-rgb);--color-link-70:var(--studio-orange-70);--color-link-70-rgb:var(--studio-orange-70-rgb);--color-link-80:var(--studio-orange-80);--color-link-80-rgb:var(--studio-orange-80-rgb);--color-link-90:var(--studio-orange-90);--color-link-90-rgb:var(--studio-orange-90-rgb);--color-link-100:var(--studio-orange-100);--color-link-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--studio-red-80);--color-masterbar-border:var(--studio-red-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-red-90);--color-masterbar-item-active-background:var(--studio-red-100);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-red-70);--color-sidebar-background-rgb:var(--studio-red-70-rgb);--color-sidebar-border:var(--studio-red-80);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-red-10);--color-sidebar-gridicon-fill:var(--studio-red-5);--color-sidebar-menu-selected-background:var(--studio-yellow-20);--color-sidebar-menu-selected-background-rgb:var(--studio-yellow-20-rgb);--color-sidebar-menu-selected-text:var(--studio-yellow-80);--color-sidebar-menu-selected-text-rgb:var(--studio-yellow-80-rgb);--color-sidebar-menu-hover-background:var(--studio-red-80);--color-sidebar-menu-hover-background-rgb:var(--studio-red-80-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var(--studio-jetpack-green);--color-primary-rgb:var(--studio-jetpack-green-rgb);--color-primary-dark:var(--studio-jetpack-green-70);--color-primary-dark-rgb:var(--studio-jetpack-green-70-rgb);--color-primary-light:var(--studio-jetpack-green-30);--color-primary-light-rgb:var(--studio-jetpack-green-30-rgb);--color-primary-0:var(--studio-jetpack-green-0);--color-primary-0-rgb:var(--studio-jetpack-green-0-rgb);--color-primary-5:var(--studio-jetpack-green-5);--color-primary-5-rgb:var(--studio-jetpack-green-5-rgb);--color-primary-10:var(--studio-jetpack-green-10);--color-primary-10-rgb:var(--studio-jetpack-green-10-rgb);--color-primary-20:var(--studio-jetpack-green-20);--color-primary-20-rgb:var(--studio-jetpack-green-20-rgb);--color-primary-30:var(--studio-jetpack-green-30);--color-primary-30-rgb:var(--studio-jetpack-green-30-rgb);--color-primary-40:var(--studio-jetpack-green-40);--color-primary-40-rgb:var(--studio-jetpack-green-40-rgb);--color-primary-50:var(--studio-jetpack-green-50);--color-primary-50-rgb:var(--studio-jetpack-green-50-rgb);--color-primary-60:var(--studio-jetpack-green-60);--color-primary-60-rgb:var(--studio-jetpack-green-60-rgb);--color-primary-70:var(--studio-jetpack-green-70);--color-primary-70-rgb:var(--studio-jetpack-green-70-rgb);--color-primary-80:var(--studio-jetpack-green-80);--color-primary-80-rgb:var(--studio-jetpack-green-80-rgb);--color-primary-90:var(--studio-jetpack-green-90);--color-primary-90-rgb:var(--studio-jetpack-green-90-rgb);--color-primary-100:var(--studio-jetpack-green-100);--color-primary-100-rgb:var(--studio-jetpack-green-100-rgb);--color-accent:var(--studio-jetpack-green);--color-accent-rgb:var(--studio-jetpack-green-rgb);--color-accent-dark:var(--studio-jetpack-green-70);--color-accent-dark-rgb:var(--studio-jetpack-green-70-rgb);--color-accent-light:var(--studio-jetpack-green-30);--color-accent-light-rgb:var(--studio-jetpack-green-30-rgb);--color-accent-0:var(--studio-jetpack-green-0);--color-accent-0-rgb:var(--studio-jetpack-green-0-rgb);--color-accent-5:var(--studio-jetpack-green-5);--color-accent-5-rgb:var(--studio-jetpack-green-5-rgb);--color-accent-10:var(--studio-jetpack-green-10);--color-accent-10-rgb:var(--studio-jetpack-green-10-rgb);--color-accent-20:var(--studio-jetpack-green-20);--color-accent-20-rgb:var(--studio-jetpack-green-20-rgb);--color-accent-30:var(--studio-jetpack-green-30);--color-accent-30-rgb:var(--studio-jetpack-green-30-rgb);--color-accent-40:var(--studio-jetpack-green-40);--color-accent-40-rgb:var(--studio-jetpack-green-40-rgb);--color-accent-50:var(--studio-jetpack-green-50);--color-accent-50-rgb:var(--studio-jetpack-green-50-rgb);--color-accent-60:var(--studio-jetpack-green-60);--color-accent-60-rgb:var(--studio-jetpack-green-60-rgb);--color-accent-70:var(--studio-jetpack-green-70);--color-accent-70-rgb:var(--studio-jetpack-green-70-rgb);--color-accent-80:var(--studio-jetpack-green-80);--color-accent-80-rgb:var(--studio-jetpack-green-80-rgb);--color-accent-90:var(--studio-jetpack-green-90);--color-accent-90-rgb:var(--studio-jetpack-green-90-rgb);--color-accent-100:var(--studio-jetpack-green-100);--color-accent-100-rgb:var(--studio-jetpack-green-100-rgb);--color-link:var(--studio-jetpack-green-40);--color-link-rgb:var(--studio-jetpack-green-40-rgb);--color-link-dark:var(--studio-jetpack-green-60);--color-link-dark-rgb:var(--studio-jetpack-green-60-rgb);--color-link-light:var(--studio-jetpack-green-20);--color-link-light-rgb:var(--studio-jetpack-green-20-rgb);--color-link-0:var(--studio-jetpack-green-0);--color-link-0-rgb:var(--studio-jetpack-green-0-rgb);--color-link-5:var(--studio-jetpack-green-5);--color-link-5-rgb:var(--studio-jetpack-green-5-rgb);--color-link-10:var(--studio-jetpack-green-10);--color-link-10-rgb:var(--studio-jetpack-green-10-rgb);--color-link-20:var(--studio-jetpack-green-20);--color-link-20-rgb:var(--studio-jetpack-green-20-rgb);--color-link-30:var(--studio-jetpack-green-30);--color-link-30-rgb:var(--studio-jetpack-green-30-rgb);--color-link-40:var(--studio-jetpack-green-40);--color-link-40-rgb:var(--studio-jetpack-green-40-rgb);--color-link-50:var(--studio-jetpack-green-50);--color-link-50-rgb:var(--studio-jetpack-green-50-rgb);--color-link-60:var(--studio-jetpack-green-60);--color-link-60-rgb:var(--studio-jetpack-green-60-rgb);--color-link-70:var(--studio-jetpack-green-70);--color-link-70-rgb:var(--studio-jetpack-green-70-rgb);--color-link-80:var(--studio-jetpack-green-80);--color-link-80-rgb:var(--studio-jetpack-green-80-rgb);--color-link-90:var(--studio-jetpack-green-90);--color-link-90-rgb:var(--studio-jetpack-green-90-rgb);--color-link-100:var(--studio-jetpack-green-100);--color-link-100-rgb:var(--studio-jetpack-green-100-rgb);--color-masterbar-background:var(--studio-white);--color-masterbar-border:var(--studio-gray-5);--color-masterbar-text:var(--studio-gray-50);--color-masterbar-item-hover-background:var(--studio-white);--color-masterbar-item-active-background:var(--studio-white);--color-masterbar-item-new-editor-background:var(--studio-white);--color-masterbar-item-new-editor-hover-background:var(--studio-white);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-white);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-60);--color-sidebar-text-rgb:var(--studio-gray-60-rgb);--color-sidebar-text-alternative:var(--studio-gray-60);--color-sidebar-gridicon-fill:var(--studio-gray-60);--color-sidebar-menu-selected-text:var(--studio-jetpack-green-50);--color-sidebar-menu-selected-text-rgb:var(--studio-jetpack-green-50-rgb);--color-sidebar-menu-selected-background:var(--studio-jetpack-green-5);--color-sidebar-menu-selected-background-rgb:var(--studio-jetpack-green-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-rgb);--color-scary-0:var(--studio-red-0);--color-scary-5:var(--studio-red-5);--color-scary-40:var(--studio-red-40);--color-scary-50:var(--studio-red-50);--color-scary-60:var(--studio-red-60)}.domain-picker__empty-state{display:flex;justify-content:center;flex-direction:column}.domain-picker__empty-state--text{max-width:320px;font-size:.875rem;margin:10px 0;color:#555d66}@media (min-width:480px){.domain-picker__empty-state{flex-direction:row;align-items:center}.domain-picker__empty-state--text{margin:15px 10px}}.domain-picker__show-more{margin-top:20px;text-align:center}.domain-picker__search{position:relative;margin-bottom:20px}.domain-picker__search input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.domain-picker__search input[type=text].components-text-control__input:-ms-input-placeholder{color:#000;color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input::placeholder{color:#000;color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px #5198d9;box-shadow:0 0 0 2px var(--studio-blue-30);background:#fff;background:var(--studio-white)}.domain-picker__search svg{position:absolute;top:6px;right:8px}.domain-picker__suggestion-item-group{flex-grow:1}.domain-picker__suggestion-sections{flex:1}.domain-picker__suggestion-group-label{margin:1.5em 0 .5em;text-transform:uppercase;color:#787c82;color:var(--studio-gray-40);font-size:.75rem;letter-spacing:1px;font-weight:700}.domain-picker__suggestion-item{font-size:.875rem;line-height:17px;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:58px;background:#fff;background:var(--studio-white);border:1px solid #dcdcde;border:1px solid var(--studio-gray-5);padding:10px 14px;position:relative;text-align:left;cursor:pointer}.domain-picker__suggestion-item.type-individual-item{min-height:64px;border-width:2px}.domain-picker__suggestion-item.type-individual-item.is-selected,.domain-picker__suggestion-item.type-individual-item:hover{border-color:#117ac9}.domain-picker__suggestion-item.placeholder{cursor:default}.domain-picker__suggestion-item.type-individual-item,.domain-picker__suggestion-item:first-of-type{border-top-left-radius:5px;border-top-right-radius:5px}.domain-picker__suggestion-item.type-individual-item,.domain-picker__suggestion-item:last-of-type{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.domain-picker__suggestion-item+.domain-picker__suggestion-item{margin-top:-1px}.domain-picker__suggestion-item+.domain-picker__suggestion-item.type-individual-item{margin:12px 0}.domain-picker__suggestion-item.is-unavailable{color:#787c82;color:var(--studio-gray-40)}.domain-picker__suggestion-item:nth-child(7){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:0ms}.domain-picker__suggestion-item:nth-child(8){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:40ms}.domain-picker__suggestion-item:nth-child(9){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:80ms}.domain-picker__suggestion-item:nth-child(10){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.12s}.domain-picker__suggestion-item:nth-child(11){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.16s}.domain-picker__suggestion-item:nth-child(12){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.2s}.domain-picker__suggestion-item:nth-child(13){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.24s}.domain-picker__suggestion-item:nth-child(14){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.28s}@keyframes domain-picker-item-slide-up{to{transform:translateY(0);opacity:1}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:16px;height:16px;min-width:16px;padding:0;margin:1px 12px 0 0;vertical-align:middle;position:relative}@media (prefers-reduced-motion:reduce){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{transition-duration:0s}}@media (min-width:600px){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{font-size:13px;line-height:normal}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:focus{border-color:#007cba;border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px #007cba;box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:-ms-input-placeholder{color:rgba(30,30,30,.62)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-moz-placeholder{opacity:1;color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{width:7px;height:7px;margin:8px 0 0 8px;background-color:#fff;border:3px solid #fff}@media (min-width:782px){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{width:6px;height:6px;margin:4px 0 0 4px}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:focus{box-shadow:0 0 0 2px #fff,0 0 0 3.5px #007cba;box-shadow:0 0 0 2px #fff,0 0 0 3.5px var(--wp-admin-theme-color);outline:2px solid transparent}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked{background:#007cba;background:var(--wp-admin-theme-color);border-color:#007cba;border-color:var(--wp-admin-theme-color);border-color:#5198d9;border-color:var(--studio-blue-30);background-color:#5198d9;background-color:var(--studio-blue-30)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{display:none}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:after{content:"";width:14px;height:14px;border:2px solid #fff;border-radius:50%;position:absolute;margin:0;background:transparent}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:focus,.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:not(:disabled):focus,.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:not(:disabled):hover{border-color:#5198d9;border-color:var(--studio-blue-30);box-shadow:0 0 0 1px #5198d9;box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:disabled{border-color:#787c82;border-color:var(--studio-gray-40)}.domain-picker__suggestion-item.type-individual-item input[type=radio].domain-picker__suggestion-radio-button{display:none}.domain-picker__suggestion-item .components-spinner{margin:1px 10px 0 0}.domain-picker__suggestion-item-name{flex-grow:2;flex-basis:2px;letter-spacing:.4px;margin-right:10px}@media (min-width:782px){.domain-picker__suggestion-item-name{margin-right:24px}}.domain-picker__suggestion-item-name .domain-picker__suggestion-item-name-inner{display:flex;align-items:center;flex-wrap:wrap}.domain-picker__suggestion-item-name .domain-picker__domain-name{word-break:break-word}.domain-picker__suggestion-item-name.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;max-width:30%;margin-right:auto}.domain-picker__suggestion-item-name.placeholder:after{content:"\00a0"}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__suggestion-item-name{color:#117ac9}.domain-picker__domain-tld{color:#3582c4;color:var(--studio-blue-40)}.domain-picker__domain-tld.with-margin{margin-right:10px}.domain-picker__suggestion-item.is-unavailable .domain-picker__domain-tld{color:#787c82;color:var(--studio-gray-40)}.domain-picker__suggestion-item.type-individual-item .domain-picker__domain-tld{font-weight:500;color:unset}.domain-picker__info-tooltip{margin-right:10px;cursor:pointer;z-index:1}.domain-picker__badge{display:inline-flex;border-radius:2px;padding:0 10px;line-height:20px;height:20px;align-items:center;font-size:10px;text-transform:uppercase;vertical-align:middle;background-color:#2271b1;background-color:var(--studio-blue-50);color:#fff;color:var(--color-text-inverted);margin:2px 0}.domain-picker__suggestion-item.type-individual-item .domain-picker__badge{color:#00450c;color:var(--studio-green-80);background-color:#b8e6bf;background-color:var(--studio-green-5);border-radius:4px;text-transform:unset;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__badge{color:#0f6cb3;background-color:#ddebf8}.domain-picker__price{color:#787c82;color:var(--studio-gray-40);text-align:right;flex-basis:0;flex-grow:1;transition:opacity .2s ease-in-out}.domain-picker__price:not(.is-paid){display:none}.domain-picker__price:not(:last-child){text-align:left}@media (min-width:600px){.domain-picker__price{flex-basis:1px}.domain-picker__price:not(.is-paid){display:inline}}.domain-picker__price.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;min-width:64px}.domain-picker__price.placeholder:after{content:"\00a0"}.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:flex;flex-direction:column-reverse}.domain-picker__suggestion-item.type-individual-item .domain-picker__price:not(.is-paid){display:block}@media (min-width:782px){.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:block}}.domain-picker__price-inclusive{color:#00a32a;color:var(--studio-green-40);display:none}@media (min-width:600px){.domain-picker__price-inclusive{display:inline}}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive{display:block;line-height:20px}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive strong{font-weight:500}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-inclusive{color:#117ac9}.domain-picker__price-cost{text-decoration:line-through}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-cost{color:#117ac9;opacity:.68}.domain-picker__body{display:flex}@media (max-width:480px){.domain-picker__body{display:block}.domain-picker__body .domain-picker__aside{width:100%;padding:0}}.domain-picker__aside{width:220px;padding-right:30px}.domain-picker__change-subdomain-tip{font-size:.75rem;color:#787c82;color:var(--studio-gray-40)}.domain-picker__error{margin-top:24px}.domain-picker__error .domain-picker__error-message{font-size:.875rem;line-height:17px}.domain-picker__error .domain-picker__error-retry-btn{margin-top:16px}.domain-picker__suggestion-select-button.components-button.is-secondary{min-width:140px;justify-content:center}.domain-picker__suggestion-select-button.components-button.is-secondary:not(:hover):not(.is-selected){box-shadow:inset 0 0 0 1px #c3c4c7;box-shadow:inset 0 0 0 1px var(--studio-gray-10);color:var(--mainColor)}.domain-picker__suggestion-select-button.components-button.is-secondary.is-selected{box-shadow:inset 0 0 0 1px #006ba1;box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);color:#006ba1;color:var(--wp-admin-theme-color-darker-10)}.info-tooltip.components-button.has-icon.has-text svg{margin-right:0}.info-tooltip .components-popover__content>div{color:var(--color-neutral-50);font-size:.875rem;padding:16px;text-align:left}.info-tooltip .components-popover__content>div a{color:var(--studio-blue-40)}@media (max-width:480px){.domain-categories{margin-bottom:20px}.domain-categories .domain-categories__dropdown-button.components-button{display:block;margin-bottom:0}.domain-categories .domain-categories__item-group{display:none}.domain-categories.is-open .domain-categories__item-group{display:block}}.domain-categories__dropdown-button.components-button{width:100%;text-align:center;margin-bottom:8px;height:40px;border:1px solid var(--studio-gray-5);display:none}.domain-categories__dropdown-button.components-button>*{vertical-align:middle}.domain-categories__dropdown-button.components-button svg{margin-left:5px}@media (max-width:480px){.domain-categories__item-group{text-align:center;border:1px solid var(--studio-gray-5);margin-top:-1px}}.domain-categories__item .components-button{color:var(--studio-gray-100);width:100%;text-align:left}.domain-categories__item .components-button:focus,.domain-categories__item .components-button:hover{color:var(--studio-gray-100);box-shadow:none;font-weight:600;text-decoration:underline}.domain-categories__item.is-selected .components-button{font-weight:600;text-decoration:underline}@media (max-width:480px){.domain-categories__item .components-button{display:block;text-align:center}}html:not(.accessible-focus) .domain-categories__item .components-button:focus{box-shadow:none}.nux-launch-modal.step-plan .nux-launch-step__body,.nux-launch-modal.step-plan .plans-grid{margin-bottom:0}.nux-launch-modal.step-plan .plans-grid__details-container{position:relative;margin-left:-24px;margin-right:-24px;width:calc(100% + 48px)}@media (min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-96px;margin-right:-96px}}@media (min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{width:calc(100% + 96px)}}@media (min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{width:calc(100% + 192px)}}.plans-grid{margin-bottom:85px}@media (min-width:600px){.plans-grid{margin-bottom:0}}.plans-grid__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media (min-width:600px){.plans-grid__header{margin:64px 0 51.2px}}@media (min-width:782px){.plans-grid__header{margin:80px 0 64px}}.plans-grid__details{margin-top:70px}.plans-grid__details-container{padding-bottom:120px}@media (max-width:1440px){.plans-grid__details-container{overflow-x:auto;width:100%;position:absolute;left:0;padding-left:24px;padding-right:24px}}@media (max-width:1440px) and (min-width:600px){.plans-grid__details-container{padding-left:48px;padding-right:48px}}@media (max-width:1440px) and (min-width:782px){.plans-grid__details-container{padding-left:96px;padding-right:96px}}.plans-grid__details-heading .plans-ui-title{color:var(--studio-black);margin-bottom:40px;font-size:32px;line-height:40px;letter-spacing:.2px}.plans-accordion__actions{text-align:center}.plans-accordion__plan-item-group{width:100%;display:flex;flex-direction:column}.plans-accordion__toggle-all-button.components-button.is-link{margin:22px auto;color:#555d66}@media (min-width:782px){.plans-accordion__toggle-all-button.components-button.is-link{margin:32px auto}}.plans-accordion__recommend-hint{color:var(--studio-gray-40);font-size:.875rem;text-align:right;margin-bottom:16px}.plans-accordion__recommend-hint svg{fill:var(--studio-yellow-30);margin-right:8px;position:relative;top:2px}.plans-accordion__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion__placeholder:after{content:"\00a0"}.plans-accordion__placeholder--narrow{width:32px}.plans-accordion__placeholder--wide{width:96px}.plans-accordion-item{display:block;flex-grow:1;flex-basis:0;flex-direction:column}.plans-accordion-item.is-disabled{background-color:var(--studio-gray-5)}.plans-accordion-item__viewport{width:100%;height:100%;padding:20px;border:1px solid var(--studio-gray-5)}.plans-accordion-item+.plans-accordion-item .plans-accordion-item__viewport{border-top:0}@media (min-width:600px){.plans-accordion-item__viewport{padding:32px}}.plans-accordion-item:first-of-type .plans-accordion-item__viewport{border-top-left-radius:5px;border-top-right-radius:5px}.plans-accordion-item:last-of-type .plans-accordion-item__viewport{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}@media (min-width:600px){.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:1px}}.plans-accordion-item:not(.is-open) .plans-accordion-item__viewport{padding:0}.plans-accordion-item__name{display:inline-block;font-size:1rem;line-height:1.2}@media (min-width:600px){.plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}@media (min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}}.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.25rem}@media (min-width:600px){.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item__description{font-size:.875rem;color:var(--studio-gray-50);margin-top:4px;display:none}.plans-accordion-item:not(.is-open) .plans-accordion-item__description{display:none}@media (min-width:600px){.plans-accordion-item__description{display:block}}.plans-accordion-item__domain-name{font-size:.875rem}ul.plans-accordion-item__feature-item-group{margin:0;column-count:1}@media (min-width:600px){ul.plans-accordion-item__feature-item-group{column-count:2}}@media (min-width:960px){ul.plans-accordion-item__feature-item-group{column-count:3}}.plans-accordion-item__badge{border-top-left-radius:5px;border-top-right-radius:5px;margin-bottom:-1px}.plans-accordion-item__badge>span{display:block;height:24px;line-height:24px;padding:0 14px;background:#000;color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.5px;text-align:center;text-transform:uppercase}@media (min-width:600px){.plans-accordion-item__badge{position:relative;top:-12px;height:0;overflow:visible;text-align:center;border-radius:0}.plans-accordion-item__badge>span{display:inline-block;border-radius:2px}}.plans-accordion-item__price-amount{font-size:1.5rem}@media (min-width:600px){.plans-accordion-item__price-amount{font-size:2rem}}.plans-accordion-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}@media (min-width:600px){.plans-accordion-item__price-amount.is-loading{max-width:none}}.plans-accordion-item__price-amount.is-loading:after{content:"\00a0"}.plans-accordion-item__price-amount>span{display:none;font-size:1rem;line-height:1.2;color:var(--studio-gray-40);position:relative;top:-1px;margin-left:1px}@media (min-width:600px){.plans-accordion-item__price-amount>span{display:inline-block}}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount{font-size:.875rem;line-height:1.2}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount>span{display:none}.plans-accordion-item__header{display:block;width:100%;cursor:pointer}.plans-accordion-item:not(.is-open) .plans-accordion-item__header{display:flex;align-items:baseline;padding:16px 12px}@media (min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__header{padding:16px 24px}}.plans-accordion-item.is-primary .plans-accordion-item__header{cursor:default}@media (min-width:600px){.plans-accordion-item__header{display:flex}}.plans-accordion-item__price{margin-top:12px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price{margin-top:0;margin-left:8px;color:var(--studio-gray-40)}@media (min-width:600px){.plans-accordion-item__price{margin-top:0;margin-left:auto}}.plans-accordion-item__disabled-label{margin-left:8px;color:var(--studio-gray-40)}.plans-accordion-item__price-note{display:block;font-size:.75rem;line-height:1.5;color:var(--studio-gray-40)}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-note{display:none}.plans-accordion-item__actions{margin-top:16px}@media (min-width:600px){.plans-accordion-item__actions{margin-top:24px}}.plans-accordion-item__dropdown-chevron{flex:1;text-align:right;position:relative;top:-2px}@media (min-width:600px){.plans-accordion-item__dropdown-chevron{right:-8px}}.plans-accordion-item.is-open .plans-accordion-item__dropdown-chevron{display:none}.plans-accordion-item__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion-item__placeholder:after{content:"\00a0"}.plans-accordion-item__placeholder--narrow{width:32px}.plans-accordion-item__placeholder--wide{width:96px}.plans-feature-list{margin-top:24px}@media (min-width:600px){.plans-feature-list{margin-top:36px}}ul.plans-feature-list__item-group{margin:0}ul.plans-feature-list__item-group--columns{display:flex;flex-wrap:wrap}@media (min-width:480px){@supports (display:grid){ul.plans-feature-list__item-group--columns{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}}ul.plans-feature-list__item-group--columns .plans-feature-list__item{margin-right:10px}.plans-feature-list__item{flex:300px 0 1;font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;color:#555d66}.plans-feature-list__item svg{margin-right:1px;vertical-align:middle}.plans-feature-list__item>svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.plans-feature-list__item--disabled-message{font-weight:700;color:var(--studio-orange-40)}.plans-feature-list__item--disabled-message>svg path{fill:var(--studio-orange-40);stroke:var(--studio-orange-40)}.plans-feature-list__domain-summary{font-size:.875rem;line-height:22px;margin-top:10px}.plans-feature-list__domain-summary.components-button.is-link{text-decoration:none;font-size:.875rem;color:var(--studio-blue-40);padding:0;display:flex}.plans-feature-list__domain-summary.components-button.is-link.is-free{font-weight:700;color:var(--studio-orange-40);text-decoration:line-through}.plans-feature-list__domain-summary.components-button.is-link.is-free svg path{fill:var(--studio-orange-40);stroke:var(--studio-orange-40)}.plans-feature-list__domain-summary.components-button.is-link>svg{flex-shrink:0}.plans-feature-list__domain-summary .plans-feature-list__item-url{word-break:break-all}.plans-feature-list__domain-summary svg:first-child{margin-right:5px;vertical-align:middle}.plans-feature-list__domain-summary svg:first-child path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.plans-feature-list__domain-summary.is-picked{font-weight:700}.plans-feature-list__domain-summary.is-cta{font-weight:700;padding:0}.plans-feature-list__domain-summary.is-cta.components-button.is-link{color:var(--studio-blue-40)}.plans-feature-list__domain-summary.is-cta svg:first-child path{fill:var(--studio-green-40);stroke:var(--studio-green-40);margin-top:5px}.plans-feature-list__domain-summary.is-cta svg:last-child{fill:var(--studio-blue-40);stroke:var(--studio-blue-40);margin-left:8px}.plans-feature-list__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:200px}.plans-feature-list__placeholder:after{content:"\00a0"}.plans-table{width:100%;display:flex;flex-wrap:wrap}.plan-item{display:inline-flex;min-width:250px;flex-grow:1;flex-basis:0;flex-direction:column;margin-top:30px}@media (min-width:480px){.plan-item+.plan-item{margin-left:-1px}}@media (max-width:480px){.plan-item:not(.is-popular){margin-top:-1px}.plan-item.is-open:not(.is-popular){margin-bottom:30px}}.plan-item__viewport{width:100%;height:100%;flex:1;border:1px solid #999;padding:20px}.plan-item:not(.is-popular) .plan-item__heading{display:flex;align-items:center}@media (max-width:480px){.plan-item:not(.is-popular) .plan-item__heading{font-size:1em}}.plan-item__name{font-weight:700;font-size:18px;line-height:24px;display:inline-block}@media (max-width:480px){.plan-item__name{font-size:14px}}@media (max-width:480px){.plan-item:not(.is-popular) .plan-item__name{font-weight:400}}.plan-item__mobile-expand-all-plans.components-button.is-link{margin:20px auto;color:#555d66}.plan-item__badge{position:relative;display:block;background:#000;text-align:center;text-transform:uppercase;color:#fff;padding:0 5px;font-size:.75rem;margin:-24px 0 0;height:24px;line-height:24px}.plan-item__price-amount{font-weight:600;font-size:32px;line-height:24px}.plan-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.plan-item__price-amount.is-loading:after{content:"\00a0"}@media (max-width:480px){.plan-item:not(.is-open) .plan-item__price-amount{font-weight:400;font-size:1em}}.plan-item__summary{width:100%}.plan-item__summary::-webkit-details-marker{display:none}@media (min-width:480px){.plan-item.is-popular .plan-item__summary,.plan-item__summary{pointer-events:none}}@media (max-width:480px){.plan-item:not(.is-open) .plan-item__summary{display:flex}}.plan-item__price-note{font-size:12px;line-height:19px;letter-spacing:-.4px;color:var(--studio-gray-40);margin-top:8px;margin-bottom:10px}.plan-item__details .plan-item__summary .plan-item__price{margin-top:16px;margin-bottom:8px}.plan-item:not(.is-open) .plan-item__summary .plan-item__price{margin-top:0;margin-bottom:0;margin-left:10px;color:#555d66}.plan-item__actions{margin-bottom:16px}.plan-item__dropdown-chevron{flex:1;text-align:right}.plan-item.is-open .plan-item__dropdown-chevron{display:none}@media (max-width:480px){.plan-item.is-popular{order:-3}}.plan-item__select-button.components-button.is-primary{padding:0 24px;height:40px}.plan-item__select-button.components-button.is-primary:disabled{opacity:.5}.plan-item__select-button.components-button.is-primary svg{margin-left:-8px;margin-right:10px}.plans-grid__details-heading{margin-bottom:20px}.plans-details__table{width:100%;border-spacing:0}.plans-details__table td,.plans-details__table th{padding:13px 24px}.plans-details__table td:first-child,.plans-details__table th:first-child{padding-left:0;width:20%}@media (min-width:480px){.plans-details__table td:first-child,.plans-details__table th:first-child{width:40%}}.plans-details__table td:not(:first-child),.plans-details__table th:not(:first-child){white-space:nowrap}.plans-details__table .hidden{display:none}.plans-details__header-row th{font-weight:600;font-size:.875rem;line-height:20px;text-transform:uppercase;color:var(--studio-gray-20);padding-top:5px;padding-bottom:5px;border-bottom:1px solid #eaeaeb;text-align:left}thead .plans-details__header-row th:not(:first-child){text-align:center}.plans-details__feature-row td,.plans-details__feature-row th{font-size:.875rem;font-weight:400;line-height:17px;letter-spacing:.2px;border-bottom:1px solid #eaeaeb;vertical-align:middle}.plans-details__feature-row th{text-align:left}.plans-details__feature-row td{text-align:center}.plans-details__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-details__placeholder:after{content:"\00a0"}.plans-details__placeholder--narrow{width:32px}.plans-details__placeholder--wide{width:96px}.plans-details__select-button.components-button{height:36px;padding:0 18px}@media (min-width:600px){.plans-details__select-button.components-button{height:40px;padding:0 24px}}.nux-launch__feature-list{padding:20px}.nux-launch__feature-list p{margin:10px 0 0}.nux-launch__feature-list-title{margin:0 0 10px;color:#555d66;font-weight:400}ul.nux-launch__feature-item-group{margin:0}.nux-launch__feature-item{font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;vertical-align:middle;color:#555d66;display:flex;align-items:flex-start}.nux-launch__feature-item svg{display:block;margin-right:6px;margin-top:2px}.nux-launch__feature-item svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.nux-launch__submit-button.components-button.is-primary{background:var(--color-accent);border:1px solid var(--color-accent-dark);width:100%;justify-content:center}.nux-launch__submit-button.components-button.is-primary:active,.nux-launch__submit-button.components-button.is-primary:hover{background:var(--color-accent-dark)}.nux-launch__submit-button.components-button.is-primary:disabled{color:#fff;opacity:.5}.nux-launch__submit-button.components-button.is-primary:disabled:hover{background:var(--color-accent)}.nux-launch__summary-item p{margin:0;word-break:break-word}.nux-launch__summary-item .components-tip{margin-top:10px}.nux-launch__summary-item .components-tip svg{align-self:flex-start}.nux-launch__summary-item__plan-name{color:var(--color-text)}.nux-launch__summary-item__domain-name{font-weight:600}.nux-launch__summary-item__domain-name.is-loading{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.nux-launch__summary-item__domain-name.is-loading:after{content:"\00a0"}.nux-launch-menu h4{text-transform:uppercase;margin-bottom:16px}.nux-launch-menu__item-group{margin:0 -12px}.nux-launch-menu__item.components-button.is-link{font-size:.875rem;line-height:17px;display:flex;color:var(--studio-gray-30);width:100%;text-align:left;text-decoration:none;padding:16px 14px}.nux-launch-menu__item.components-button.is-link:hover{color:initial}.nux-launch-menu__item.components-button.is-link:focus{box-shadow:none}.nux-launch-menu__item.components-button.is-link svg{margin-right:10px;color:var(--studio-gray-10);position:relative;top:1px;left:-1px}@media (min-width:782px){.nux-launch-menu__item.components-button.is-link.is-current{background:var(--studio-blue-0);color:initial}.nux-launch-menu__item.components-button.is-link.is-current svg{color:initial}}.nux-launch-menu__item.components-button.is-link.is-completed svg{color:var(--studio-green-40);top:0;left:0}.nux-launch-sidebar{margin-left:24px;margin-right:24px;display:flex;flex-direction:column;height:100%;background:var(--studio-white);padding-top:60px}@media (min-width:600px){.nux-launch-sidebar{margin-left:48px;margin-right:48px}}@media (min-width:782px){.nux-launch-sidebar{margin-left:96px;margin-right:96px;display:block;height:auto;margin:0 24px;padding-top:0}}@media (min-width:782px){.nux-launch-sidebar h1.onboarding-title{font-size:1.5rem}.nux-launch-sidebar h2.onboarding-subtitle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5;color:var(--studio-gray-60)}}.nux-launch-sidebar__header{margin:48px 0 38.4px}@media (min-width:600px){.nux-launch-sidebar__header{margin:64px 0 51.2px}}@media (min-width:782px){.nux-launch-sidebar__header{margin:80px 0 64px}}.nux-launch-sidebar__body{flex-grow:1;margin:0 0 48px}@media (min-width:600px){.nux-launch-sidebar__body{margin:0 0 64px}}@media (min-width:782px){.nux-launch-sidebar__body{margin:0 0 80px}}.nux-launch-sidebar__footer{margin-left:-24px;margin-right:-24px;position:-webkit-sticky;position:sticky;bottom:0}@media (min-width:600px){.nux-launch-sidebar__footer{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-sidebar__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-sidebar__footer .action-buttons{position:relative;justify-content:flex-end}@media (min-width:782px){.nux-launch-sidebar__footer{display:none}}.nux-launch-progress{display:flex;align-items:center;font-weight:600}body.has-nux-launch-modal{overflow:hidden}.nux-launch-modal.components-modal__frame{transform:none}.nux-launch-modal .components-modal__header{display:none}.nux-launch-modal .components-modal__content{left:0;height:100%;padding:0;overflow:auto}.nux-launch-modal-header,.nux-launch-modal .components-modal__content{position:fixed;top:0;display:flex;background:var(--studio-white);width:100%}.nux-launch-modal-header{margin-left:-24px;margin-right:-24px;height:60px;border-bottom:1px solid #ddd;z-index:10}@media (min-width:600px){.nux-launch-modal-header{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-modal-header{margin-left:-96px;margin-right:-96px;position:relative;border-bottom:none}}.nux-launch-modal-header .nux-launch-progress{height:60px}@media (min-width:782px){.nux-launch-modal-header .nux-launch-progress{display:none}}.nux-launch-modal-header__wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.nux-launch-modal-body{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;margin-left:24px;margin-right:24px;padding-top:60px}@media (min-width:600px){.nux-launch-modal-body{margin-left:48px;margin-right:48px}}@media (min-width:782px){.nux-launch-modal-body{margin-left:96px;margin-right:96px}}.nux-launch-modal-body .nux-launch-step__body{flex-grow:1}.is-sidebar-fullscreen .nux-launch-modal-body{overflow:hidden}@media (min-width:782px){.nux-launch-modal-body{padding-top:0}}.nux-launch-modal-aside{position:absolute;top:0;left:-200%;width:100%;height:100%;background:var(--studio-white);z-index:12}@media (max-width:782px){.is-sidebar-fullscreen .nux-launch-modal-aside{left:0}}@media (min-width:782px){.nux-launch-modal-aside{position:-webkit-sticky;position:sticky;top:0;left:auto;width:280px;min-width:280px;max-width:280px;border-left:1px solid var(--studio-gray-5)}}.nux-launch-modal__close-button.components-button.is-link{position:-webkit-sticky;position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.nux-launch-modal__close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.nux-launch-modal__close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}.nux-launch-modal-body__launching{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1rem}body.has-focused-launch-modal{overflow:hidden}.launch__focused-modal.components-modal__frame{transform:none}.launch__focused-modal .components-modal__header{margin:0 0 20px}.launch__focused-modal .components-modal__header .components-modal__icon-container{margin-right:12px}@media (min-width:782px){.launch__focused-modal .components-modal__header{border-bottom:none}.launch__focused-modal .components-modal__header .components-modal__header-heading,.launch__focused-modal .components-modal__header .components-modal__icon-container{display:none}}.launch__focused-modal .components-modal__content{position:fixed;top:0;left:0;background:var(--studio-white);width:100%;height:100%;padding:0;overflow:auto}.launch__focused-modal-wrapper{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;height:100%}.launch__focused-modal-header{justify-content:space-between;display:flex}.launch__focused-modal-header-wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.launch__focused-modal-body{width:100%;max-width:1440px;margin:10px auto}.launch__focused-modal-close-button.components-button.is-link{position:-webkit-sticky;position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.launch__focused-modal-close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.launch__focused-modal-close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.focused-launch-summary__input .components-text-control__input{font-size:1rem;padding:10px 16px}.focused-launch-summary__input .components-text-control__input .components-base-control__label{margin:0}@media (min-width:782px){.focused-launch-summary__mobile-only{display:none}}.focused-launch-summary__mobile-commentary{font-size:.875rem;color:var(--studio-gray-60)}.focused-launch-summary__mobile-commentary svg{vertical-align:bottom}.focused-launch-summary__label{margin-bottom:8px;display:block;font-size:1.25rem;color:var(--studio-gray-90);line-height:24px}.focused-launch-summary__info-icon{margin-left:10px;vertical-align:middle}.focused-launch-summary__section{margin:0 20px 40px}@media (min-width:782px){.focused-launch-summary__section{margin:0 10px 40px}}.focused-launch-summary__caption{margin:12px 0;font-size:1rem;color:#50575e}.focused-launch-summary__step{display:flex;opacity:.5;transition:opacity .5s ease-in-out}@media (min-width:782px){.focused-launch-summary__step{gap:50px}}@media (min-width:960px){.focused-launch-summary__step{gap:100px}}.focused-launch-summary__container:not(:focus-within) .focused-launch-summary__step{opacity:1}.focused-launch-summary__step:focus-within{opacity:1}.focused-launch-summary__side-commentary{display:none}@media (min-width:782px){.focused-launch-summary__side-commentary{margin-left:10px;border-left:1px solid #eee;display:flex;flex-direction:column;flex:0.4;padding:0 42.5px;max-width:350px}.focused-launch-summary__side-commentary:before{content:"";display:block;height:18px}.focused-launch-summary__side-commentary-title{font-size:1.25rem;line-height:26px;margin:12px 0}.focused-launch-summary__side-commentary-list{list-style:none}.focused-launch-summary__side-commentary-list-item{font-size:.875rem;margin:4px 0;display:flex}.focused-launch-summary__side-commentary-list-item svg{vertical-align:bottom;width:18px;height:18px;margin-right:12px}}.focused-launch-summary__data-input{flex:1}@media (min-width:782px){.focused-launch-summary__data-input{flex:0.6}}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:2.25rem;line-height:40px;color:#101517}:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-20:#005a87}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}.focused-launch-summary__item{background-color:var(--studio-white);border:2px solid var(--studio-gray-5);padding:10px 14px;min-height:64px;border-radius:4px;display:flex;justify-content:space-between;align-items:center;width:100%}.focused-launch-summary__item .focused-launch-summary-item__leading-side-badge{margin-left:10px;display:inline-block;height:20px;font-size:.75rem;background-color:var(--studio-green-5);color:var(--studio-green-80);padding:0 10px;border-radius:4px;line-height:1.5}.focused-launch-summary__item.is-selected .focused-launch-summary-item__leading-side-badge{background-color:#ddebf8;color:#0f6cb3}.focused-launch-summary__item .focused-launch-summary-item__leading-side-label{color:inherit;font-size:.875rem;font-weight:500}.focused-launch-summary__item:not(.is-selected):not(.is-readonly) .focused-launch-summary-item__leading-side-label{color:var(--studio-gray-90)}.focused-launch-summary__item .focused-launch-summary-item__price-cost{font-size:.875rem}.focused-launch-summary__item:not(.is-selected) .focused-launch-summary-item__price-cost{color:var(--studio-gray-40)}.focused-launch-summary__item.is-selected{border:2px solid #117ac9;color:#117ac9}.focused-launch-summary__item.is-selected .focused-launch-summary-item__price-cost{color:#117ac9;opacity:.68}.focused-launch-summary__item.is-selected .focused-launch-summary-item__leading-side-label{color:#117ac9}.focused-launch-summary__item.is-readonly{color:var(--studio-gray-30);fill:var(--studio-gray-30)}.focused-launch-summary__item:not(.is-readonly){cursor:pointer}.focused-launch-summary__item:not(.is-readonly):hover{border:2px solid #117ac9}.focused-launch-summary__item .focused-launch-summary-item__warning-note{color:#d67709}.focused-launch-summary__item *{vertical-align:middle}.focused-launch-summary__item.is-loading>*{display:none}.focused-launch-summary__item.is-loading:before{content:"";width:100%;height:15px;background:#eee;border-radius:2px;animation:focused-launch__loading-fade 1s ease-in-out infinite}@keyframes focused-launch__loading-fade{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.focused-launch-summary__item+.focused-launch-summary__item{margin-top:10px}
1
+ .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media (min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media (min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media (min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media (min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media (min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-left:-24px;margin-right:-24px;position:-webkit-sticky;position:sticky;bottom:0}@media (min-width:600px){.nux-launch-step__footer{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-step__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media (min-width:782px){.nux-launch-step__footer{display:none}}.nux-launch-step__input{position:relative;margin-bottom:20px}.nux-launch-step__input input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.nux-launch-step__input input[type=text].components-text-control__input:-ms-input-placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.nux-launch-step__input svg{position:absolute;top:6px;right:8px}.nux-launch-step__input-hint{display:flex;align-items:center;color:var(--studio-gray-50);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;line-height:14px}.nux-launch-step__input-hint>.components-tip svg{margin-right:10px}.onboarding-title{font-size:32px;color:var(--mainColor);margin:0}@media (min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media (min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media (min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #ddd;background-color:#fff;position:fixed;bottom:0;right:0;left:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media (min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-left:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-left:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-left:0}}.action-buttons.no-sticky{padding:0;margin-left:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-left:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-left:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}@media (min-width:600px){button.action_buttons__button.components-button{min-width:160px}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:after{top:0;left:0}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9eff5;--studio-blue-5:#c5d9ed;--studio-blue-10:#9ec2e6;--studio-blue-20:#72aee6;--studio-blue-30:#5198d9;--studio-blue-40:#3582c4;--studio-blue-50:#2271b1;--studio-blue-60:#135e96;--studio-blue-70:#0a4b78;--studio-blue-80:#043959;--studio-blue-90:#01263a;--studio-blue-100:#00131c;--studio-blue:#2271b1;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d4;--studio-celadon-10:#63d6b6;--studio-celadon-20:#2ebd99;--studio-celadon-30:#09a884;--studio-celadon-40:#009172;--studio-celadon-50:#007e65;--studio-celadon-60:#006753;--studio-celadon-70:#005042;--studio-celadon-80:#003b30;--studio-celadon-90:#002721;--studio-celadon-100:#001c17;--studio-celadon:#007e65;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#2fb41f;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,239,245;--studio-blue-5-rgb:197,217,237;--studio-blue-10-rgb:158,194,230;--studio-blue-20-rgb:114,174,230;--studio-blue-30-rgb:81,152,217;--studio-blue-40-rgb:53,130,196;--studio-blue-50-rgb:34,113,177;--studio-blue-60-rgb:19,94,150;--studio-blue-70-rgb:10,75,120;--studio-blue-80-rgb:4,57,89;--studio-blue-90-rgb:1,38,58;--studio-blue-100-rgb:0,19,28;--studio-blue-rgb:34,113,177;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,212;--studio-celadon-10-rgb:99,214,182;--studio-celadon-20-rgb:46,189,153;--studio-celadon-30-rgb:9,168,132;--studio-celadon-40-rgb:0,145,114;--studio-celadon-50-rgb:0,126,101;--studio-celadon-60-rgb:0,103,83;--studio-celadon-70-rgb:0,80,66;--studio-celadon-80-rgb:0,59,48;--studio-celadon-90-rgb:0,39,33;--studio-celadon-100-rgb:0,28,23;--studio-celadon-rgb:0,126,101;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:47,180,31;--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-pink-50);--color-accent-rgb:var(--studio-pink-50-rgb);--color-accent-dark:var(--studio-pink-70);--color-accent-dark-rgb:var(--studio-pink-70-rgb);--color-accent-light:var(--studio-pink-30);--color-accent-light-rgb:var(--studio-pink-30-rgb);--color-accent-0:var(--studio-pink-0);--color-accent-0-rgb:var(--studio-pink-0-rgb);--color-accent-5:var(--studio-pink-5);--color-accent-5-rgb:var(--studio-pink-5-rgb);--color-accent-10:var(--studio-pink-10);--color-accent-10-rgb:var(--studio-pink-10-rgb);--color-accent-20:var(--studio-pink-20);--color-accent-20-rgb:var(--studio-pink-20-rgb);--color-accent-30:var(--studio-pink-30);--color-accent-30-rgb:var(--studio-pink-30-rgb);--color-accent-40:var(--studio-pink-40);--color-accent-40-rgb:var(--studio-pink-40-rgb);--color-accent-50:var(--studio-pink-50);--color-accent-50-rgb:var(--studio-pink-50-rgb);--color-accent-60:var(--studio-pink-60);--color-accent-60-rgb:var(--studio-pink-60-rgb);--color-accent-70:var(--studio-pink-70);--color-accent-70-rgb:var(--studio-pink-70-rgb);--color-accent-80:var(--studio-pink-80);--color-accent-80-rgb:var(--studio-pink-80-rgb);--color-accent-90:var(--studio-pink-90);--color-accent-90-rgb:var(--studio-pink-90-rgb);--color-accent-100:var(--studio-pink-100);--color-accent-100-rgb:var(--studio-pink-100-rgb);--color-neutral:var(--studio-gray-50);--color-neutral-rgb:var(--studio-gray-50-rgb);--color-neutral-dark:var(--studio-gray-70);--color-neutral-dark-rgb:var(--studio-gray-70-rgb);--color-neutral-light:var(--studio-gray-30);--color-neutral-light-rgb:var(--studio-gray-30-rgb);--color-neutral-0:var(--studio-gray-0);--color-neutral-0-rgb:var(--studio-gray-0-rgb);--color-neutral-5:var(--studio-gray-5);--color-neutral-5-rgb:var(--studio-gray-5-rgb);--color-neutral-10:var(--studio-gray-10);--color-neutral-10-rgb:var(--studio-gray-10-rgb);--color-neutral-20:var(--studio-gray-20);--color-neutral-20-rgb:var(--studio-gray-20-rgb);--color-neutral-30:var(--studio-gray-30);--color-neutral-30-rgb:var(--studio-gray-30-rgb);--color-neutral-40:var(--studio-gray-40);--color-neutral-40-rgb:var(--studio-gray-40-rgb);--color-neutral-50:var(--studio-gray-50);--color-neutral-50-rgb:var(--studio-gray-50-rgb);--color-neutral-60:var(--studio-gray-60);--color-neutral-60-rgb:var(--studio-gray-60-rgb);--color-neutral-70:var(--studio-gray-70);--color-neutral-70-rgb:var(--studio-gray-70-rgb);--color-neutral-80:var(--studio-gray-80);--color-neutral-80-rgb:var(--studio-gray-80-rgb);--color-neutral-90:var(--studio-gray-90);--color-neutral-90-rgb:var(--studio-gray-90-rgb);--color-neutral-100:var(--studio-gray-100);--color-neutral-100-rgb:var(--studio-gray-100-rgb);--color-success:var(--studio-green-50);--color-success-rgb:var(--studio-green-50-rgb);--color-success-dark:var(--studio-green-70);--color-success-dark-rgb:var(--studio-green-70-rgb);--color-success-light:var(--studio-green-30);--color-success-light-rgb:var(--studio-green-30-rgb);--color-success-0:var(--studio-green-0);--color-success-0-rgb:var(--studio-green-0-rgb);--color-success-5:var(--studio-green-5);--color-success-5-rgb:var(--studio-green-5-rgb);--color-success-10:var(--studio-green-10);--color-success-10-rgb:var(--studio-green-10-rgb);--color-success-20:var(--studio-green-20);--color-success-20-rgb:var(--studio-green-20-rgb);--color-success-30:var(--studio-green-30);--color-success-30-rgb:var(--studio-green-30-rgb);--color-success-40:var(--studio-green-40);--color-success-40-rgb:var(--studio-green-40-rgb);--color-success-50:var(--studio-green-50);--color-success-50-rgb:var(--studio-green-50-rgb);--color-success-60:var(--studio-green-60);--color-success-60-rgb:var(--studio-green-60-rgb);--color-success-70:var(--studio-green-70);--color-success-70-rgb:var(--studio-green-70-rgb);--color-success-80:var(--studio-green-80);--color-success-80-rgb:var(--studio-green-80-rgb);--color-success-90:var(--studio-green-90);--color-success-90-rgb:var(--studio-green-90-rgb);--color-success-100:var(--studio-green-100);--color-success-100-rgb:var(--studio-green-100-rgb);--color-warning:var(--studio-yellow-50);--color-warning-rgb:var(--studio-yellow-50-rgb);--color-warning-dark:var(--studio-yellow-70);--color-warning-dark-rgb:var(--studio-yellow-70-rgb);--color-warning-light:var(--studio-yellow-30);--color-warning-light-rgb:var(--studio-yellow-30-rgb);--color-warning-0:var(--studio-yellow-0);--color-warning-0-rgb:var(--studio-yellow-0-rgb);--color-warning-5:var(--studio-yellow-5);--color-warning-5-rgb:var(--studio-yellow-5-rgb);--color-warning-10:var(--studio-yellow-10);--color-warning-10-rgb:var(--studio-yellow-10-rgb);--color-warning-20:var(--studio-yellow-20);--color-warning-20-rgb:var(--studio-yellow-20-rgb);--color-warning-30:var(--studio-yellow-30);--color-warning-30-rgb:var(--studio-yellow-30-rgb);--color-warning-40:var(--studio-yellow-40);--color-warning-40-rgb:var(--studio-yellow-40-rgb);--color-warning-50:var(--studio-yellow-50);--color-warning-50-rgb:var(--studio-yellow-50-rgb);--color-warning-60:var(--studio-yellow-60);--color-warning-60-rgb:var(--studio-yellow-60-rgb);--color-warning-70:var(--studio-yellow-70);--color-warning-70-rgb:var(--studio-yellow-70-rgb);--color-warning-80:var(--studio-yellow-80);--color-warning-80-rgb:var(--studio-yellow-80-rgb);--color-warning-90:var(--studio-yellow-90);--color-warning-90-rgb:var(--studio-yellow-90-rgb);--color-warning-100:var(--studio-yellow-100);--color-warning-100-rgb:var(--studio-yellow-100-rgb);--color-error:var(--studio-red-50);--color-error-rgb:var(--studio-red-50-rgb);--color-error-dark:var(--studio-red-70);--color-error-dark-rgb:var(--studio-red-70-rgb);--color-error-light:var(--studio-red-30);--color-error-light-rgb:var(--studio-red-30-rgb);--color-error-0:var(--studio-red-0);--color-error-0-rgb:var(--studio-red-0-rgb);--color-error-5:var(--studio-red-5);--color-error-5-rgb:var(--studio-red-5-rgb);--color-error-10:var(--studio-red-10);--color-error-10-rgb:var(--studio-red-10-rgb);--color-error-20:var(--studio-red-20);--color-error-20-rgb:var(--studio-red-20-rgb);--color-error-30:var(--studio-red-30);--color-error-30-rgb:var(--studio-red-30-rgb);--color-error-40:var(--studio-red-40);--color-error-40-rgb:var(--studio-red-40-rgb);--color-error-50:var(--studio-red-50);--color-error-50-rgb:var(--studio-red-50-rgb);--color-error-60:var(--studio-red-60);--color-error-60-rgb:var(--studio-red-60-rgb);--color-error-70:var(--studio-red-70);--color-error-70-rgb:var(--studio-red-70-rgb);--color-error-80:var(--studio-red-80);--color-error-80-rgb:var(--studio-red-80-rgb);--color-error-90:var(--studio-red-90);--color-error-90-rgb:var(--studio-red-90-rgb);--color-error-100:var(--studio-red-100);--color-error-100-rgb:var(--studio-red-100-rgb);--color-surface:var(--studio-white);--color-surface-rgb:var(--studio-white-rgb);--color-surface-backdrop:var(--studio-gray-0);--color-surface-backdrop-rgb:var(--studio-gray-0-rgb);--color-text:var(--studio-gray-80);--color-text-rgb:var(--studio-gray-80-rgb);--color-text-subtle:var(--studio-gray-50);--color-text-subtle-rgb:var(--studio-gray-50-rgb);--color-text-inverted:var(--studio-white);--color-text-inverted-rgb:var(--studio-white-rgb);--color-border:var(--color-neutral-20);--color-border-rgb:var(--color-neutral-20-rgb);--color-border-subtle:var(--color-neutral-5);--color-border-subtle-rgb:var(--color-neutral-5-rgb);--color-border-shadow:var(--color-neutral-0);--color-border-shadow-rgb:var(--color-neutral-0-rgb);--color-border-inverted:var(--studio-white);--color-border-inverted-rgb:var(--studio-white-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-plan-free:var(--studio-gray-30);--color-plan-blogger:var(--studio-celadon-30);--color-plan-personal:var(--studio-blue-30);--color-plan-premium:var(--studio-yellow-30);--color-plan-business:var(--studio-orange-30);--color-plan-ecommerce:var(--studio-purple-30);--color-premium-domain:var(--studio-wordpress-blue-60);--color-jetpack-plan-free:var(--studio-blue-30);--color-jetpack-plan-personal:var(--studio-yellow-30);--color-jetpack-plan-premium:var(--studio-jetpack-green-30);--color-jetpack-plan-professional:var(--studio-purple-30);--color-masterbar-background:var(--studio-blue-60);--color-masterbar-border:var(--studio-blue-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-70);--color-masterbar-item-active-background:var(--studio-blue-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-jetpack-masterbar-background:var(--studio-white);--color-jetpack-masterbar-border:var(--studio-gray-5);--color-jetpack-masterbar-text:var(--studio-gray-50);--color-jetpack-masterbar-item-hover-background:var(--studio-gray-5);--color-jetpack-masterbar-item-active-background:var(--studio-gray-20);--color-sidebar-background:var(--color-surface);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-rgb:var(--studio-gray-80-rgb);--color-sidebar-text-alternative:var(--studio-gray-50);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-blue-5);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-5-rgb);--color-sidebar-menu-selected-text:var(--studio-blue-70);--color-sidebar-menu-selected-text-rgb:var(--studio-blue-70-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-jetpack-onboarding-text:var(--studio-white);--color-jetpack-onboarding-text-rgb:var(--studio-white-rgb);--color-jetpack-onboarding-background:var(--studio-blue-100);--color-jetpack-onboarding-background-rgb:var(--studio-blue-100-rgb);--color-automattic:var(--studio-blue-40);--color-jetpack:var(--studio-jetpack-green);--color-simplenote:var(--studio-simplenote-blue);--color-woocommerce:var(--studio-woocommerce-purple);--color-wordpress-com:var(--studio-wordpress-blue);--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var(--studio-gray-0);--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21}.color-scheme.is-aquatic,.color-scheme.is-aquatic .is-nav-unification{--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-celadon-50);--color-accent-rgb:var(--studio-celadon-50-rgb);--color-accent-dark:var(--studio-celadon-70);--color-accent-dark-rgb:var(--studio-celadon-70-rgb);--color-accent-light:var(--studio-celadon-30);--color-accent-light-rgb:var(--studio-celadon-30-rgb);--color-accent-0:var(--studio-celadon-0);--color-accent-0-rgb:var(--studio-celadon-0-rgb);--color-accent-5:var(--studio-celadon-5);--color-accent-5-rgb:var(--studio-celadon-5-rgb);--color-accent-10:var(--studio-celadon-10);--color-accent-10-rgb:var(--studio-celadon-10-rgb);--color-accent-20:var(--studio-celadon-20);--color-accent-20-rgb:var(--studio-celadon-20-rgb);--color-accent-30:var(--studio-celadon-30);--color-accent-30-rgb:var(--studio-celadon-30-rgb);--color-accent-40:var(--studio-celadon-40);--color-accent-40-rgb:var(--studio-celadon-40-rgb);--color-accent-50:var(--studio-celadon-50);--color-accent-50-rgb:var(--studio-celadon-50-rgb);--color-accent-60:var(--studio-celadon-60);--color-accent-60-rgb:var(--studio-celadon-60-rgb);--color-accent-70:var(--studio-celadon-70);--color-accent-70-rgb:var(--studio-celadon-70-rgb);--color-accent-80:var(--studio-celadon-80);--color-accent-80-rgb:var(--studio-celadon-80-rgb);--color-accent-90:var(--studio-celadon-90);--color-accent-90-rgb:var(--studio-celadon-90-rgb);--color-accent-100:var(--studio-celadon-100);--color-accent-100-rgb:var(--studio-celadon-100-rgb);--color-link:var(--studio-celadon-50);--color-link-rgb:var(--studio-celadon-50-rgb);--color-link-dark:var(--studio-celadon-70);--color-link-dark-rgb:var(--studio-celadon-70-rgb);--color-link-light:var(--studio-celadon-30);--color-link-light-rgb:var(--studio-celadon-30-rgb);--color-link-0:var(--studio-celadon-0);--color-link-0-rgb:var(--studio-celadon-0-rgb);--color-link-5:var(--studio-celadon-5);--color-link-5-rgb:var(--studio-celadon-5-rgb);--color-link-10:var(--studio-celadon-10);--color-link-10-rgb:var(--studio-celadon-10-rgb);--color-link-20:var(--studio-celadon-20);--color-link-20-rgb:var(--studio-celadon-20-rgb);--color-link-30:var(--studio-celadon-30);--color-link-30-rgb:var(--studio-celadon-30-rgb);--color-link-40:var(--studio-celadon-40);--color-link-40-rgb:var(--studio-celadon-40-rgb);--color-link-50:var(--studio-celadon-50);--color-link-50-rgb:var(--studio-celadon-50-rgb);--color-link-60:var(--studio-celadon-60);--color-link-60-rgb:var(--studio-celadon-60-rgb);--color-link-70:var(--studio-celadon-70);--color-link-70-rgb:var(--studio-celadon-70-rgb);--color-link-80:var(--studio-celadon-80);--color-link-80-rgb:var(--studio-celadon-80-rgb);--color-link-90:var(--studio-celadon-90);--color-link-90-rgb:var(--studio-celadon-90-rgb);--color-link-100:var(--studio-celadon-100);--color-link-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--studio-blue-80);--color-masterbar-border:var(--studio-blue-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-90);--color-masterbar-item-active-background:var(--studio-blue-100);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-blue-60);--color-sidebar-background-rgb:var(--studio-blue-60-rgb);--color-sidebar-border:var(--studio-blue-70);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-blue-5);--color-sidebar-gridicon-fill:var(--studio-blue-5);--color-sidebar-menu-selected-background:var(--studio-yellow-20);--color-sidebar-menu-selected-background-rgb:var(--studio-yellow-20-rgb);--color-sidebar-menu-selected-text:var(--studio-blue-90);--color-sidebar-menu-selected-text-rgb:var(--studio-blue-90-rgb);--color-sidebar-menu-hover-background:var(--studio-blue-50);--color-sidebar-menu-hover-background-rgb:var(--studio-blue-50-rgb);--color-sidebar-menu-hover-text:var(--studio-white);--color-sidebar-submenu-background:var(--studio-blue-80);--color-sidebar-submenu-text:var(--studio-white);--color-sidebar-submenu-hover-text:var(--studio-yellow-20)}.color-scheme.is-blue,.color-scheme.is-blue .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-classic-blue{--color-primary:var(--studio-blue-50);--color-primary-rgb:var(--studio-blue-50-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--studio-orange-50);--color-accent-rgb:var(--studio-orange-50-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--studio-blue-60);--color-masterbar-border:var(--studio-blue-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-70);--color-masterbar-item-active-background:var(--studio-blue-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-5);--color-sidebar-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-border:var(--studio-gray-10);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-alternative:var(--studio-gray-50);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-gray-60);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--color-surface);--color-sidebar-menu-hover-background-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-text:var(--studio-blue-50)}.color-scheme.is-classic-dark{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-pink-50);--color-accent-rgb:var(--studio-pink-50-rgb);--color-accent-dark:var(--studio-pink-70);--color-accent-dark-rgb:var(--studio-pink-70-rgb);--color-accent-light:var(--studio-pink-30);--color-accent-light-rgb:var(--studio-pink-30-rgb);--color-accent-0:var(--studio-pink-0);--color-accent-0-rgb:var(--studio-pink-0-rgb);--color-accent-5:var(--studio-pink-5);--color-accent-5-rgb:var(--studio-pink-5-rgb);--color-accent-10:var(--studio-pink-10);--color-accent-10-rgb:var(--studio-pink-10-rgb);--color-accent-20:var(--studio-pink-20);--color-accent-20-rgb:var(--studio-pink-20-rgb);--color-accent-30:var(--studio-pink-30);--color-accent-30-rgb:var(--studio-pink-30-rgb);--color-accent-40:var(--studio-pink-40);--color-accent-40-rgb:var(--studio-pink-40-rgb);--color-accent-50:var(--studio-pink-50);--color-accent-50-rgb:var(--studio-pink-50-rgb);--color-accent-60:var(--studio-pink-60);--color-accent-60-rgb:var(--studio-pink-60-rgb);--color-accent-70:var(--studio-pink-70);--color-accent-70-rgb:var(--studio-pink-70-rgb);--color-accent-80:var(--studio-pink-80);--color-accent-80-rgb:var(--studio-pink-80-rgb);--color-accent-90:var(--studio-pink-90);--color-accent-90-rgb:var(--studio-pink-90-rgb);--color-accent-100:var(--studio-pink-100);--color-accent-100-rgb:var(--studio-pink-100-rgb);--color-neutral:var(--studio-gray-50);--color-neutral-rgb:var(--studio-gray-50-rgb);--color-neutral-dark:var(--studio-gray-70);--color-neutral-dark-rgb:var(--studio-gray-70-rgb);--color-neutral-light:var(--studio-gray-30);--color-neutral-light-rgb:var(--studio-gray-30-rgb);--color-neutral-0:var(--studio-gray-0);--color-neutral-0-rgb:var(--studio-gray-0-rgb);--color-neutral-5:var(--studio-gray-5);--color-neutral-5-rgb:var(--studio-gray-5-rgb);--color-neutral-10:var(--studio-gray-10);--color-neutral-10-rgb:var(--studio-gray-10-rgb);--color-neutral-20:var(--studio-gray-20);--color-neutral-20-rgb:var(--studio-gray-20-rgb);--color-neutral-30:var(--studio-gray-30);--color-neutral-30-rgb:var(--studio-gray-30-rgb);--color-neutral-40:var(--studio-gray-40);--color-neutral-40-rgb:var(--studio-gray-40-rgb);--color-neutral-50:var(--studio-gray-50);--color-neutral-50-rgb:var(--studio-gray-50-rgb);--color-neutral-60:var(--studio-gray-60);--color-neutral-60-rgb:var(--studio-gray-60-rgb);--color-neutral-70:var(--studio-gray-70);--color-neutral-70-rgb:var(--studio-gray-70-rgb);--color-neutral-80:var(--studio-gray-80);--color-neutral-80-rgb:var(--studio-gray-80-rgb);--color-neutral-90:var(--studio-gray-90);--color-neutral-90-rgb:var(--studio-gray-90-rgb);--color-neutral-100:var(--studio-gray-100);--color-neutral-100-rgb:var(--studio-gray-100-rgb);--color-success:var(--studio-green-50);--color-success-rgb:var(--studio-green-50-rgb);--color-success-dark:var(--studio-green-70);--color-success-dark-rgb:var(--studio-green-70-rgb);--color-success-light:var(--studio-green-30);--color-success-light-rgb:var(--studio-green-30-rgb);--color-success-0:var(--studio-green-0);--color-success-0-rgb:var(--studio-green-0-rgb);--color-success-5:var(--studio-green-5);--color-success-5-rgb:var(--studio-green-5-rgb);--color-success-10:var(--studio-green-10);--color-success-10-rgb:var(--studio-green-10-rgb);--color-success-20:var(--studio-green-20);--color-success-20-rgb:var(--studio-green-20-rgb);--color-success-30:var(--studio-green-30);--color-success-30-rgb:var(--studio-green-30-rgb);--color-success-40:var(--studio-green-40);--color-success-40-rgb:var(--studio-green-40-rgb);--color-success-50:var(--studio-green-50);--color-success-50-rgb:var(--studio-green-50-rgb);--color-success-60:var(--studio-green-60);--color-success-60-rgb:var(--studio-green-60-rgb);--color-success-70:var(--studio-green-70);--color-success-70-rgb:var(--studio-green-70-rgb);--color-success-80:var(--studio-green-80);--color-success-80-rgb:var(--studio-green-80-rgb);--color-success-90:var(--studio-green-90);--color-success-90-rgb:var(--studio-green-90-rgb);--color-success-100:var(--studio-green-100);--color-success-100-rgb:var(--studio-green-100-rgb);--color-warning:var(--studio-yellow-50);--color-warning-rgb:var(--studio-yellow-50-rgb);--color-warning-dark:var(--studio-yellow-70);--color-warning-dark-rgb:var(--studio-yellow-70-rgb);--color-warning-light:var(--studio-yellow-30);--color-warning-light-rgb:var(--studio-yellow-30-rgb);--color-warning-0:var(--studio-yellow-0);--color-warning-0-rgb:var(--studio-yellow-0-rgb);--color-warning-5:var(--studio-yellow-5);--color-warning-5-rgb:var(--studio-yellow-5-rgb);--color-warning-10:var(--studio-yellow-10);--color-warning-10-rgb:var(--studio-yellow-10-rgb);--color-warning-20:var(--studio-yellow-20);--color-warning-20-rgb:var(--studio-yellow-20-rgb);--color-warning-30:var(--studio-yellow-30);--color-warning-30-rgb:var(--studio-yellow-30-rgb);--color-warning-40:var(--studio-yellow-40);--color-warning-40-rgb:var(--studio-yellow-40-rgb);--color-warning-50:var(--studio-yellow-50);--color-warning-50-rgb:var(--studio-yellow-50-rgb);--color-warning-60:var(--studio-yellow-60);--color-warning-60-rgb:var(--studio-yellow-60-rgb);--color-warning-70:var(--studio-yellow-70);--color-warning-70-rgb:var(--studio-yellow-70-rgb);--color-warning-80:var(--studio-yellow-80);--color-warning-80-rgb:var(--studio-yellow-80-rgb);--color-warning-90:var(--studio-yellow-90);--color-warning-90-rgb:var(--studio-yellow-90-rgb);--color-warning-100:var(--studio-yellow-100);--color-warning-100-rgb:var(--studio-yellow-100-rgb);--color-error:var(--studio-red-50);--color-error-rgb:var(--studio-red-50-rgb);--color-error-dark:var(--studio-red-70);--color-error-dark-rgb:var(--studio-red-70-rgb);--color-error-light:var(--studio-red-30);--color-error-light-rgb:var(--studio-red-30-rgb);--color-error-0:var(--studio-red-0);--color-error-0-rgb:var(--studio-red-0-rgb);--color-error-5:var(--studio-red-5);--color-error-5-rgb:var(--studio-red-5-rgb);--color-error-10:var(--studio-red-10);--color-error-10-rgb:var(--studio-red-10-rgb);--color-error-20:var(--studio-red-20);--color-error-20-rgb:var(--studio-red-20-rgb);--color-error-30:var(--studio-red-30);--color-error-30-rgb:var(--studio-red-30-rgb);--color-error-40:var(--studio-red-40);--color-error-40-rgb:var(--studio-red-40-rgb);--color-error-50:var(--studio-red-50);--color-error-50-rgb:var(--studio-red-50-rgb);--color-error-60:var(--studio-red-60);--color-error-60-rgb:var(--studio-red-60-rgb);--color-error-70:var(--studio-red-70);--color-error-70-rgb:var(--studio-red-70-rgb);--color-error-80:var(--studio-red-80);--color-error-80-rgb:var(--studio-red-80-rgb);--color-error-90:var(--studio-red-90);--color-error-90-rgb:var(--studio-red-90-rgb);--color-error-100:var(--studio-red-100);--color-error-100-rgb:var(--studio-red-100-rgb);--color-surface:var(--studio-white);--color-surface-rgb:var(--studio-white-rgb);--color-surface-backdrop:var(--studio-gray-0);--color-surface-backdrop-rgb:var(--studio-gray-0-rgb);--color-text:var(--studio-gray-80);--color-text-rgb:var(--studio-gray-80-rgb);--color-text-subtle:var(--studio-gray-50);--color-text-subtle-rgb:var(--studio-gray-50-rgb);--color-text-inverted:var(--studio-white);--color-text-inverted-rgb:var(--studio-white-rgb);--color-border:var(--color-neutral-20);--color-border-rgb:var(--color-neutral-20-rgb);--color-border-subtle:var(--color-neutral-5);--color-border-subtle-rgb:var(--color-neutral-5-rgb);--color-border-shadow:var(--color-neutral-0);--color-border-shadow-rgb:var(--color-neutral-0-rgb);--color-border-inverted:var(--studio-white);--color-border-inverted-rgb:var(--studio-white-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-plan-free:var(--studio-gray-30);--color-plan-blogger:var(--studio-celadon-30);--color-plan-personal:var(--studio-blue-30);--color-plan-premium:var(--studio-yellow-30);--color-plan-business:var(--studio-orange-30);--color-plan-ecommerce:var(--studio-purple-30);--color-premium-domain:var(--studio-wordpress-blue-60);--color-jetpack-plan-free:var(--studio-blue-30);--color-jetpack-plan-personal:var(--studio-yellow-30);--color-jetpack-plan-premium:var(--studio-jetpack-green-30);--color-jetpack-plan-professional:var(--studio-purple-30);--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-jetpack-masterbar-background:var(--studio-white);--color-jetpack-masterbar-border:var(--studio-gray-5);--color-jetpack-masterbar-text:var(--studio-gray-50);--color-jetpack-masterbar-item-hover-background:var(--studio-gray-5);--color-jetpack-masterbar-item-active-background:var(--studio-gray-20);--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var(--studio-white);--color-jetpack-onboarding-text-rgb:var(--studio-white-rgb);--color-jetpack-onboarding-background:var(--studio-blue-100);--color-jetpack-onboarding-background-rgb:var(--studio-blue-100-rgb);--color-automattic:var(--studio-blue-40);--color-jetpack:var(--studio-jetpack-green);--color-simplenote:var(--studio-simplenote-blue);--color-woocommerce:var(--studio-woocommerce-purple);--color-wordpress-com:var(--studio-wordpress-blue);--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var(--studio-gray-0);--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799}.color-scheme.is-coffee,.color-scheme.is-coffee .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-orange-70);--color-primary-dark-rgb:var(--studio-orange-70-rgb);--color-primary-light:var(--studio-orange-30);--color-primary-light-rgb:var(--studio-orange-30-rgb);--color-primary-0:var(--studio-orange-0);--color-primary-0-rgb:var(--studio-orange-0-rgb);--color-primary-5:var(--studio-orange-5);--color-primary-5-rgb:var(--studio-orange-5-rgb);--color-primary-10:var(--studio-orange-10);--color-primary-10-rgb:var(--studio-orange-10-rgb);--color-primary-20:var(--studio-orange-20);--color-primary-20-rgb:var(--studio-orange-20-rgb);--color-primary-30:var(--studio-orange-30);--color-primary-30-rgb:var(--studio-orange-30-rgb);--color-primary-40:var(--studio-orange-40);--color-primary-40-rgb:var(--studio-orange-40-rgb);--color-primary-50:var(--studio-orange-50);--color-primary-50-rgb:var(--studio-orange-50-rgb);--color-primary-60:var(--studio-orange-60);--color-primary-60-rgb:var(--studio-orange-60-rgb);--color-primary-70:var(--studio-orange-70);--color-primary-70-rgb:var(--studio-orange-70-rgb);--color-primary-80:var(--studio-orange-80);--color-primary-80-rgb:var(--studio-orange-80-rgb);--color-primary-90:var(--studio-orange-90);--color-primary-90-rgb:var(--studio-orange-90-rgb);--color-primary-100:var(--studio-orange-100);--color-primary-100-rgb:var(--studio-orange-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-0);--color-sidebar-gridicon-fill:var(--studio-gray-0);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-menu-hover:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-contrast{--color-primary:var(--studio-gray-80);--color-primary-rgb:var(--studio-gray-80-rgb);--color-primary-dark:var(--studio-gray-100);--color-primary-dark-rgb:var(--studio-gray-100-rgb);--color-primary-light:var(--studio-gray-60);--color-primary-light-rgb:var(--studio-gray-60-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-70);--color-accent-rgb:var(--studio-blue-70-rgb);--color-accent-dark:var(--studio-blue-90);--color-accent-dark-rgb:var(--studio-blue-90-rgb);--color-accent-light:var(--studio-blue-50);--color-accent-light-rgb:var(--studio-blue-50-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-surface-backdrop:var(--studio-white);--color-surface-backdrop-rgb:var(--studio-white-rgb);--color-text:var(--studio-gray-100);--color-text-rgb:var(--studio-gray-100-rgb);--color-text-subtle:var(--studio-gray-70);--color-text-subtle-rgb:var(--studio-gray-70-rgb);--color-link:var(--studio-blue-70);--color-link-rgb:var(--studio-blue-70-rgb);--color-link-dark:var(--studio-blue-100);--color-link-dark-rgb:var(--studio-blue-100-rgb);--color-link-light:var(--studio-blue-50);--color-link-light-rgb:var(--studio-blue-50-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-premium-domain:var(--studio-gray-100);--color-masterbar-background:var(--studio-gray-100);--color-masterbar-border:var(--studio-gray-90);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-60);--color-masterbar-item-new-editor-background:var(--studio-gray-70);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-90);--color-masterbar-unread-dot-background:var(--studio-yellow-20);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-70);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-70);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--color-surface);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-90);--color-sidebar-text-rgb:var(--studio-gray-90-rgb);--color-sidebar-text-alternative:var(--studio-gray-90);--color-sidebar-gridicon-fill:var(--studio-gray-90);--color-sidebar-menu-selected-background:var(--studio-gray-100);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-100-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-60);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--ectoplasm-green-70);--color-primary-dark-rgb:var(--ectoplasm-green-70-rgb);--color-primary-light:var(--ectoplasm-green-30);--color-primary-light-rgb:var(--ectoplasm-green-30-rgb);--color-primary-0:var(--ectoplasm-green-0);--color-primary-0-rgb:var(--ectoplasm-green-0-rgb);--color-primary-5:var(--ectoplasm-green-5);--color-primary-5-rgb:var(--ectoplasm-green-5-rgb);--color-primary-10:var(--ectoplasm-green-10);--color-primary-10-rgb:var(--ectoplasm-green-10-rgb);--color-primary-20:var(--ectoplasm-green-20);--color-primary-20-rgb:var(--ectoplasm-green-20-rgb);--color-primary-30:var(--ectoplasm-green-30);--color-primary-30-rgb:var(--ectoplasm-green-30-rgb);--color-primary-40:var(--ectoplasm-green-40);--color-primary-40-rgb:var(--ectoplasm-green-40-rgb);--color-primary-50:var(--ectoplasm-green-50);--color-primary-50-rgb:var(--ectoplasm-green-50-rgb);--color-primary-60:var(--ectoplasm-green-60);--color-primary-60-rgb:var(--ectoplasm-green-60-rgb);--color-primary-70:var(--ectoplasm-green-70);--color-primary-70-rgb:var(--ectoplasm-green-70-rgb);--color-primary-80:var(--ectoplasm-green-80);--color-primary-80-rgb:var(--ectoplasm-green-80-rgb);--color-primary-90:var(--ectoplasm-green-90);--color-primary-90-rgb:var(--ectoplasm-green-90-rgb);--color-primary-100:var(--ectoplasm-green-100);--color-primary-100-rgb:var(--ectoplasm-green-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--ectoplasm-green-70);--color-accent-dark-rgb:var(--ectoplasm-green-70-rgb);--color-accent-light:var(--ectoplasm-green-30);--color-accent-light-rgb:var(--ectoplasm-green-30-rgb);--color-accent-0:var(--ectoplasm-green-0);--color-accent-0-rgb:var(--ectoplasm-green-0-rgb);--color-accent-5:var(--ectoplasm-green-5);--color-accent-5-rgb:var(--ectoplasm-green-5-rgb);--color-accent-10:var(--ectoplasm-green-10);--color-accent-10-rgb:var(--ectoplasm-green-10-rgb);--color-accent-20:var(--ectoplasm-green-20);--color-accent-20-rgb:var(--ectoplasm-green-20-rgb);--color-accent-30:var(--ectoplasm-green-30);--color-accent-30-rgb:var(--ectoplasm-green-30-rgb);--color-accent-40:var(--ectoplasm-green-40);--color-accent-40-rgb:var(--ectoplasm-green-40-rgb);--color-accent-50:var(--ectoplasm-green-50);--color-accent-50-rgb:var(--ectoplasm-green-50-rgb);--color-accent-60:var(--ectoplasm-green-60);--color-accent-60-rgb:var(--ectoplasm-green-60-rgb);--color-accent-70:var(--ectoplasm-green-70);--color-accent-70-rgb:var(--ectoplasm-green-70-rgb);--color-accent-80:var(--ectoplasm-green-80);--color-accent-80-rgb:var(--ectoplasm-green-80-rgb);--color-accent-90:var(--ectoplasm-green-90);--color-accent-90-rgb:var(--ectoplasm-green-90-rgb);--color-accent-100:var(--ectoplasm-green-100);--color-accent-100-rgb:var(--ectoplasm-green-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--theme-text-color);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-light,.color-scheme.is-light .is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-black);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-90);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-90);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color);--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light .is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--color-primary:var(--studio-gray-70);--color-primary-rgb:var(--studio-gray-70-rgb);--color-primary-dark:var(--studio-gray-80);--color-primary-dark-rgb:var(--studio-gray-80-rgb);--color-primary-light:var(--studio-gray-50);--color-primary-light-rgb:var(--studio-gray-50-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-red-60);--color-link-rgb:var(--studio-red-60-rgb);--color-link-dark:var(--studio-red-70);--color-link-dark-rgb:var(--studio-red-70-rgb);--color-link-light:var(--studio-red-30);--color-link-light-rgb:var(--studio-red-30-rgb);--color-link-0:var(--studio-red-0);--color-link-0-rgb:var(--studio-red-0-rgb);--color-link-5:var(--studio-red-5);--color-link-5-rgb:var(--studio-red-5-rgb);--color-link-10:var(--studio-red-10);--color-link-10-rgb:var(--studio-red-10-rgb);--color-link-20:var(--studio-red-20);--color-link-20-rgb:var(--studio-red-20-rgb);--color-link-30:var(--studio-red-30);--color-link-30-rgb:var(--studio-red-30-rgb);--color-link-40:var(--studio-red-40);--color-link-40-rgb:var(--studio-red-40-rgb);--color-link-50:var(--studio-red-50);--color-link-50-rgb:var(--studio-red-50-rgb);--color-link-60:var(--studio-red-60);--color-link-60-rgb:var(--studio-red-60-rgb);--color-link-70:var(--studio-red-70);--color-link-70-rgb:var(--studio-red-70-rgb);--color-link-80:var(--studio-red-80);--color-link-80-rgb:var(--studio-red-80-rgb);--color-link-90:var(--studio-red-90);--color-link-90-rgb:var(--studio-red-90-rgb);--color-link-100:var(--studio-red-100);--color-link-100-rgb:var(--studio-red-100-rgb);--color-masterbar-background:var(--studio-gray-70);--color-masterbar-border:var(--studio-gray-70);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-90);--color-sidebar-background-rgb:var(--studio-gray-90-rgb);--color-sidebar-border:var(--studio-gray-80);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-gray-20);--color-sidebar-gridicon-fill:var(--studio-gray-10);--color-sidebar-menu-selected-background:var(--studio-red-50);--color-sidebar-menu-selected-background-rgb:var(--studio-red-50-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-gray-80);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-80-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-modern,.color-scheme.is-modern .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--color-link:var(--theme-highlight-color);--color-link-dark:#183ad6;--color-link-light:#667fee;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-blue-70);--color-primary-dark-rgb:var(--studio-blue-70-rgb);--color-primary-light:var(--studio-blue-30);--color-primary-light-rgb:var(--studio-blue-30-rgb);--color-primary-0:var(--studio-blue-0);--color-primary-0-rgb:var(--studio-blue-0-rgb);--color-primary-5:var(--studio-blue-5);--color-primary-5-rgb:var(--studio-blue-5-rgb);--color-primary-10:var(--studio-blue-10);--color-primary-10-rgb:var(--studio-blue-10-rgb);--color-primary-20:var(--studio-blue-20);--color-primary-20-rgb:var(--studio-blue-20-rgb);--color-primary-30:var(--studio-blue-30);--color-primary-30-rgb:var(--studio-blue-30-rgb);--color-primary-40:var(--studio-blue-40);--color-primary-40-rgb:var(--studio-blue-40-rgb);--color-primary-50:var(--studio-blue-50);--color-primary-50-rgb:var(--studio-blue-50-rgb);--color-primary-60:var(--studio-blue-60);--color-primary-60-rgb:var(--studio-blue-60-rgb);--color-primary-70:var(--studio-blue-70);--color-primary-70-rgb:var(--studio-blue-70-rgb);--color-primary-80:var(--studio-blue-80);--color-primary-80-rgb:var(--studio-blue-80-rgb);--color-primary-90:var(--studio-blue-90);--color-primary-90-rgb:var(--studio-blue-90-rgb);--color-primary-100:var(--studio-blue-100);--color-primary-100-rgb:var(--studio-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-10);--color-sidebar-gridicon-fill:var(--studio-gray-0);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--studio-blue-100);--color-masterbar-border:var(--studio-blue-100);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-blue-90);--color-masterbar-item-active-background:var(--studio-blue-80);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-blue-80);--color-sidebar-background-rgb:var(--studio-blue-80-rgb);--color-sidebar-border:var(--studio-blue-90);--color-sidebar-text:var(--studio-blue-5);--color-sidebar-text-rgb:var(--studio-blue-5-rgb);--color-sidebar-text-alternative:var(--studio-blue-20);--color-sidebar-gridicon-fill:var(--studio-blue-10);--color-sidebar-menu-selected-background:var(--studio-blue-100);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-100-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-blue-70);--color-sidebar-menu-hover-background-rgb:var(--studio-blue-70-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-ocean,.color-scheme.is-ocean .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-celadon-70);--color-primary-dark-rgb:var(--studio-celadon-70-rgb);--color-primary-light:var(--studio-celadon-30);--color-primary-light-rgb:var(--studio-celadon-30-rgb);--color-primary-0:var(--studio-celadon-0);--color-primary-0-rgb:var(--studio-celadon-0-rgb);--color-primary-5:var(--studio-celadon-5);--color-primary-5-rgb:var(--studio-celadon-5-rgb);--color-primary-10:var(--studio-celadon-10);--color-primary-10-rgb:var(--studio-celadon-10-rgb);--color-primary-20:var(--studio-celadon-20);--color-primary-20-rgb:var(--studio-celadon-20-rgb);--color-primary-30:var(--studio-celadon-30);--color-primary-30-rgb:var(--studio-celadon-30-rgb);--color-primary-40:var(--studio-celadon-40);--color-primary-40-rgb:var(--studio-celadon-40-rgb);--color-primary-50:var(--studio-celadon-50);--color-primary-50-rgb:var(--studio-celadon-50-rgb);--color-primary-60:var(--studio-celadon-60);--color-primary-60-rgb:var(--studio-celadon-60-rgb);--color-primary-70:var(--studio-celadon-70);--color-primary-70-rgb:var(--studio-celadon-70-rgb);--color-primary-80:var(--studio-celadon-80);--color-primary-80-rgb:var(--studio-celadon-80-rgb);--color-primary-90:var(--studio-celadon-90);--color-primary-90-rgb:var(--studio-celadon-90-rgb);--color-primary-100:var(--studio-celadon-100);--color-primary-100-rgb:var(--studio-celadon-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-celadon-70);--color-accent-dark-rgb:var(--studio-celadon-70-rgb);--color-accent-light:var(--studio-celadon-30);--color-accent-light-rgb:var(--studio-celadon-30-rgb);--color-accent-0:var(--studio-celadon-0);--color-accent-0-rgb:var(--studio-celadon-0-rgb);--color-accent-5:var(--studio-celadon-5);--color-accent-5-rgb:var(--studio-celadon-5-rgb);--color-accent-10:var(--studio-celadon-10);--color-accent-10-rgb:var(--studio-celadon-10-rgb);--color-accent-20:var(--studio-celadon-20);--color-accent-20-rgb:var(--studio-celadon-20-rgb);--color-accent-30:var(--studio-celadon-30);--color-accent-30-rgb:var(--studio-celadon-30-rgb);--color-accent-40:var(--studio-celadon-40);--color-accent-40-rgb:var(--studio-celadon-40-rgb);--color-accent-50:var(--studio-celadon-50);--color-accent-50-rgb:var(--studio-celadon-50-rgb);--color-accent-60:var(--studio-celadon-60);--color-accent-60-rgb:var(--studio-celadon-60-rgb);--color-accent-70:var(--studio-celadon-70);--color-accent-70-rgb:var(--studio-celadon-70-rgb);--color-accent-80:var(--studio-celadon-80);--color-accent-80-rgb:var(--studio-celadon-80-rgb);--color-accent-90:var(--studio-celadon-90);--color-accent-90-rgb:var(--studio-celadon-90-rgb);--color-accent-100:var(--studio-celadon-100);--color-accent-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--theme-text-color);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-powder-snow{--color-primary:var(--studio-gray-90);--color-primary-rgb:var(--studio-gray-90-rgb);--color-primary-dark:var(--studio-gray-70);--color-primary-dark-rgb:var(--studio-gray-70-rgb);--color-primary-light:var(--studio-gray-30);--color-primary-light-rgb:var(--studio-gray-30-rgb);--color-primary-0:var(--studio-gray-0);--color-primary-0-rgb:var(--studio-gray-0-rgb);--color-primary-5:var(--studio-gray-5);--color-primary-5-rgb:var(--studio-gray-5-rgb);--color-primary-10:var(--studio-gray-10);--color-primary-10-rgb:var(--studio-gray-10-rgb);--color-primary-20:var(--studio-gray-20);--color-primary-20-rgb:var(--studio-gray-20-rgb);--color-primary-30:var(--studio-gray-30);--color-primary-30-rgb:var(--studio-gray-30-rgb);--color-primary-40:var(--studio-gray-40);--color-primary-40-rgb:var(--studio-gray-40-rgb);--color-primary-50:var(--studio-gray-50);--color-primary-50-rgb:var(--studio-gray-50-rgb);--color-primary-60:var(--studio-gray-60);--color-primary-60-rgb:var(--studio-gray-60-rgb);--color-primary-70:var(--studio-gray-70);--color-primary-70-rgb:var(--studio-gray-70-rgb);--color-primary-80:var(--studio-gray-80);--color-primary-80-rgb:var(--studio-gray-80-rgb);--color-primary-90:var(--studio-gray-90);--color-primary-90-rgb:var(--studio-gray-90-rgb);--color-primary-100:var(--studio-gray-100);--color-primary-100-rgb:var(--studio-gray-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-blue-50);--color-link-rgb:var(--studio-blue-50-rgb);--color-link-dark:var(--studio-blue-70);--color-link-dark-rgb:var(--studio-blue-70-rgb);--color-link-light:var(--studio-blue-30);--color-link-light-rgb:var(--studio-blue-30-rgb);--color-link-0:var(--studio-blue-0);--color-link-0-rgb:var(--studio-blue-0-rgb);--color-link-5:var(--studio-blue-5);--color-link-5-rgb:var(--studio-blue-5-rgb);--color-link-10:var(--studio-blue-10);--color-link-10-rgb:var(--studio-blue-10-rgb);--color-link-20:var(--studio-blue-20);--color-link-20-rgb:var(--studio-blue-20-rgb);--color-link-30:var(--studio-blue-30);--color-link-30-rgb:var(--studio-blue-30-rgb);--color-link-40:var(--studio-blue-40);--color-link-40-rgb:var(--studio-blue-40-rgb);--color-link-50:var(--studio-blue-50);--color-link-50-rgb:var(--studio-blue-50-rgb);--color-link-60:var(--studio-blue-60);--color-link-60-rgb:var(--studio-blue-60-rgb);--color-link-70:var(--studio-blue-70);--color-link-70-rgb:var(--studio-blue-70-rgb);--color-link-80:var(--studio-blue-80);--color-link-80-rgb:var(--studio-blue-80-rgb);--color-link-90:var(--studio-blue-90);--color-link-90-rgb:var(--studio-blue-90-rgb);--color-link-100:var(--studio-blue-100);--color-link-100-rgb:var(--studio-blue-100-rgb);--color-masterbar-background:var(--studio-gray-100);--color-masterbar-border:var(--studio-gray-90);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-gray-80);--color-masterbar-item-active-background:var(--studio-gray-70);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-40);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-gray-5);--color-sidebar-background-rgb:var(--studio-gray-5-rgb);--color-sidebar-border:var(--studio-gray-10);--color-sidebar-text:var(--studio-gray-80);--color-sidebar-text-rgb:var(--studio-gray-80-rgb);--color-sidebar-text-alternative:var(--studio-gray-60);--color-sidebar-gridicon-fill:var(--studio-gray-50);--color-sidebar-menu-selected-background:var(--studio-gray-60);--color-sidebar-menu-selected-background-rgb:var(--studio-gray-60-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--color-surface);--color-sidebar-menu-hover-background-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-text:var(--studio-blue-60)}.color-scheme.is-sakura{--color-primary:var(--studio-celadon-50);--color-primary-rgb:var(--studio-celadon-50-rgb);--color-primary-dark:var(--studio-celadon-70);--color-primary-dark-rgb:var(--studio-celadon-70-rgb);--color-primary-light:var(--studio-celadon-30);--color-primary-light-rgb:var(--studio-celadon-30-rgb);--color-primary-0:var(--studio-celadon-0);--color-primary-0-rgb:var(--studio-celadon-0-rgb);--color-primary-5:var(--studio-celadon-5);--color-primary-5-rgb:var(--studio-celadon-5-rgb);--color-primary-10:var(--studio-celadon-10);--color-primary-10-rgb:var(--studio-celadon-10-rgb);--color-primary-20:var(--studio-celadon-20);--color-primary-20-rgb:var(--studio-celadon-20-rgb);--color-primary-30:var(--studio-celadon-30);--color-primary-30-rgb:var(--studio-celadon-30-rgb);--color-primary-40:var(--studio-celadon-40);--color-primary-40-rgb:var(--studio-celadon-40-rgb);--color-primary-50:var(--studio-celadon-50);--color-primary-50-rgb:var(--studio-celadon-50-rgb);--color-primary-60:var(--studio-celadon-60);--color-primary-60-rgb:var(--studio-celadon-60-rgb);--color-primary-70:var(--studio-celadon-70);--color-primary-70-rgb:var(--studio-celadon-70-rgb);--color-primary-80:var(--studio-celadon-80);--color-primary-80-rgb:var(--studio-celadon-80-rgb);--color-primary-90:var(--studio-celadon-90);--color-primary-90-rgb:var(--studio-celadon-90-rgb);--color-primary-100:var(--studio-celadon-100);--color-primary-100-rgb:var(--studio-celadon-100-rgb);--color-accent:var(--studio-blue-50);--color-accent-rgb:var(--studio-blue-50-rgb);--color-accent-dark:var(--studio-blue-70);--color-accent-dark-rgb:var(--studio-blue-70-rgb);--color-accent-light:var(--studio-blue-30);--color-accent-light-rgb:var(--studio-blue-30-rgb);--color-accent-0:var(--studio-blue-0);--color-accent-0-rgb:var(--studio-blue-0-rgb);--color-accent-5:var(--studio-blue-5);--color-accent-5-rgb:var(--studio-blue-5-rgb);--color-accent-10:var(--studio-blue-10);--color-accent-10-rgb:var(--studio-blue-10-rgb);--color-accent-20:var(--studio-blue-20);--color-accent-20-rgb:var(--studio-blue-20-rgb);--color-accent-30:var(--studio-blue-30);--color-accent-30-rgb:var(--studio-blue-30-rgb);--color-accent-40:var(--studio-blue-40);--color-accent-40-rgb:var(--studio-blue-40-rgb);--color-accent-50:var(--studio-blue-50);--color-accent-50-rgb:var(--studio-blue-50-rgb);--color-accent-60:var(--studio-blue-60);--color-accent-60-rgb:var(--studio-blue-60-rgb);--color-accent-70:var(--studio-blue-70);--color-accent-70-rgb:var(--studio-blue-70-rgb);--color-accent-80:var(--studio-blue-80);--color-accent-80-rgb:var(--studio-blue-80-rgb);--color-accent-90:var(--studio-blue-90);--color-accent-90-rgb:var(--studio-blue-90-rgb);--color-accent-100:var(--studio-blue-100);--color-accent-100-rgb:var(--studio-blue-100-rgb);--color-link:var(--studio-celadon-50);--color-link-rgb:var(--studio-celadon-50-rgb);--color-link-dark:var(--studio-celadon-70);--color-link-dark-rgb:var(--studio-celadon-70-rgb);--color-link-light:var(--studio-celadon-30);--color-link-light-rgb:var(--studio-celadon-30-rgb);--color-link-0:var(--studio-celadon-0);--color-link-0-rgb:var(--studio-celadon-0-rgb);--color-link-5:var(--studio-celadon-5);--color-link-5-rgb:var(--studio-celadon-5-rgb);--color-link-10:var(--studio-celadon-10);--color-link-10-rgb:var(--studio-celadon-10-rgb);--color-link-20:var(--studio-celadon-20);--color-link-20-rgb:var(--studio-celadon-20-rgb);--color-link-30:var(--studio-celadon-30);--color-link-30-rgb:var(--studio-celadon-30-rgb);--color-link-40:var(--studio-celadon-40);--color-link-40-rgb:var(--studio-celadon-40-rgb);--color-link-50:var(--studio-celadon-50);--color-link-50-rgb:var(--studio-celadon-50-rgb);--color-link-60:var(--studio-celadon-60);--color-link-60-rgb:var(--studio-celadon-60-rgb);--color-link-70:var(--studio-celadon-70);--color-link-70-rgb:var(--studio-celadon-70-rgb);--color-link-80:var(--studio-celadon-80);--color-link-80-rgb:var(--studio-celadon-80-rgb);--color-link-90:var(--studio-celadon-90);--color-link-90-rgb:var(--studio-celadon-90-rgb);--color-link-100:var(--studio-celadon-100);--color-link-100-rgb:var(--studio-celadon-100-rgb);--color-masterbar-background:var(--studio-celadon-70);--color-masterbar-border:var(--studio-celadon-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-celadon-80);--color-masterbar-item-active-background:var(--studio-celadon-90);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-pink-5);--color-sidebar-background-rgb:var(--studio-pink-5-rgb);--color-sidebar-border:var(--studio-pink-10);--color-sidebar-text:var(--studio-pink-80);--color-sidebar-text-rgb:var(--studio-pink-80-rgb);--color-sidebar-text-alternative:var(--studio-pink-60);--color-sidebar-gridicon-fill:var(--studio-pink-70);--color-sidebar-menu-selected-background:var(--studio-blue-50);--color-sidebar-menu-selected-background-rgb:var(--studio-blue-50-rgb);--color-sidebar-menu-selected-text:var(--studio-white);--color-sidebar-menu-selected-text-rgb:var(--studio-white-rgb);--color-sidebar-menu-hover-background:var(--studio-pink-10);--color-sidebar-menu-hover-background-rgb:var(--studio-pink-10-rgb);--color-sidebar-menu-hover-text:var(--studio-pink-90)}.color-scheme.is-sunrise,.color-scheme.is-sunrise .is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--studio-orange-70);--color-primary-dark-rgb:var(--studio-orange-70-rgb);--color-primary-light:var(--studio-orange-30);--color-primary-light-rgb:var(--studio-orange-30-rgb);--color-primary-0:var(--studio-orange-0);--color-primary-0-rgb:var(--studio-orange-0-rgb);--color-primary-5:var(--studio-orange-5);--color-primary-5-rgb:var(--studio-orange-5-rgb);--color-primary-10:var(--studio-orange-10);--color-primary-10-rgb:var(--studio-orange-10-rgb);--color-primary-20:var(--studio-orange-20);--color-primary-20-rgb:var(--studio-orange-20-rgb);--color-primary-30:var(--studio-orange-30);--color-primary-30-rgb:var(--studio-orange-30-rgb);--color-primary-40:var(--studio-orange-40);--color-primary-40-rgb:var(--studio-orange-40-rgb);--color-primary-50:var(--studio-orange-50);--color-primary-50-rgb:var(--studio-orange-50-rgb);--color-primary-60:var(--studio-orange-60);--color-primary-60-rgb:var(--studio-orange-60-rgb);--color-primary-70:var(--studio-orange-70);--color-primary-70-rgb:var(--studio-orange-70-rgb);--color-primary-80:var(--studio-orange-80);--color-primary-80-rgb:var(--studio-orange-80-rgb);--color-primary-90:var(--studio-orange-90);--color-primary-90-rgb:var(--studio-orange-90-rgb);--color-primary-100:var(--studio-orange-100);--color-primary-100-rgb:var(--studio-orange-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--theme-base-color);--color-masterbar-border:var(--theme-submenu-background-color);--color-masterbar-text:var(--studio-white);--color-masterbar-unread-dot-background:var(--theme-notification-color);--color-masterbar-item-hover-background:var(--theme-submenu-background-color);--color-masterbar-item-active-background:var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--theme-base-color);--color-sidebar-background-rgb:var(--theme-base-color-rgb);--color-sidebar-border:var(--theme-submenu-background-color);--color-sidebar-text:var(--theme-text-color);--color-sidebar-text-rgb:var(--theme-text-color-rgb);--color-sidebar-text-alternative:var(--studio-gray-0);--color-sidebar-gridicon-fill:var(--theme-icon-color);--color-sidebar-menu-selected-background:var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text:var(--theme-text-color);--color-sidebar-menu-selected-text-rgb:var(--theme-text-color-rgb);--color-sidebar-menu-hover-background:var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb:var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text:var(--theme-text-color);--color-sidebar-submenu-background:var(--theme-submenu-background-color);--color-sidebar-submenu-text:var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var(--theme-highlight-color)}.color-scheme.is-sunset{--color-primary:var(--studio-red-50);--color-primary-rgb:var(--studio-red-50-rgb);--color-primary-dark:var(--studio-red-70);--color-primary-dark-rgb:var(--studio-red-70-rgb);--color-primary-light:var(--studio-red-30);--color-primary-light-rgb:var(--studio-red-30-rgb);--color-primary-0:var(--studio-red-0);--color-primary-0-rgb:var(--studio-red-0-rgb);--color-primary-5:var(--studio-red-5);--color-primary-5-rgb:var(--studio-red-5-rgb);--color-primary-10:var(--studio-red-10);--color-primary-10-rgb:var(--studio-red-10-rgb);--color-primary-20:var(--studio-red-20);--color-primary-20-rgb:var(--studio-red-20-rgb);--color-primary-30:var(--studio-red-30);--color-primary-30-rgb:var(--studio-red-30-rgb);--color-primary-40:var(--studio-red-40);--color-primary-40-rgb:var(--studio-red-40-rgb);--color-primary-50:var(--studio-red-50);--color-primary-50-rgb:var(--studio-red-50-rgb);--color-primary-60:var(--studio-red-60);--color-primary-60-rgb:var(--studio-red-60-rgb);--color-primary-70:var(--studio-red-70);--color-primary-70-rgb:var(--studio-red-70-rgb);--color-primary-80:var(--studio-red-80);--color-primary-80-rgb:var(--studio-red-80-rgb);--color-primary-90:var(--studio-red-90);--color-primary-90-rgb:var(--studio-red-90-rgb);--color-primary-100:var(--studio-red-100);--color-primary-100-rgb:var(--studio-red-100-rgb);--color-accent:var(--studio-orange-50);--color-accent-rgb:var(--studio-orange-50-rgb);--color-accent-dark:var(--studio-orange-70);--color-accent-dark-rgb:var(--studio-orange-70-rgb);--color-accent-light:var(--studio-orange-30);--color-accent-light-rgb:var(--studio-orange-30-rgb);--color-accent-0:var(--studio-orange-0);--color-accent-0-rgb:var(--studio-orange-0-rgb);--color-accent-5:var(--studio-orange-5);--color-accent-5-rgb:var(--studio-orange-5-rgb);--color-accent-10:var(--studio-orange-10);--color-accent-10-rgb:var(--studio-orange-10-rgb);--color-accent-20:var(--studio-orange-20);--color-accent-20-rgb:var(--studio-orange-20-rgb);--color-accent-30:var(--studio-orange-30);--color-accent-30-rgb:var(--studio-orange-30-rgb);--color-accent-40:var(--studio-orange-40);--color-accent-40-rgb:var(--studio-orange-40-rgb);--color-accent-50:var(--studio-orange-50);--color-accent-50-rgb:var(--studio-orange-50-rgb);--color-accent-60:var(--studio-orange-60);--color-accent-60-rgb:var(--studio-orange-60-rgb);--color-accent-70:var(--studio-orange-70);--color-accent-70-rgb:var(--studio-orange-70-rgb);--color-accent-80:var(--studio-orange-80);--color-accent-80-rgb:var(--studio-orange-80-rgb);--color-accent-90:var(--studio-orange-90);--color-accent-90-rgb:var(--studio-orange-90-rgb);--color-accent-100:var(--studio-orange-100);--color-accent-100-rgb:var(--studio-orange-100-rgb);--color-link:var(--studio-orange-50);--color-link-rgb:var(--studio-orange-50-rgb);--color-link-dark:var(--studio-orange-70);--color-link-dark-rgb:var(--studio-orange-70-rgb);--color-link-light:var(--studio-orange-30);--color-link-light-rgb:var(--studio-orange-30-rgb);--color-link-0:var(--studio-orange-0);--color-link-0-rgb:var(--studio-orange-0-rgb);--color-link-5:var(--studio-orange-5);--color-link-5-rgb:var(--studio-orange-5-rgb);--color-link-10:var(--studio-orange-10);--color-link-10-rgb:var(--studio-orange-10-rgb);--color-link-20:var(--studio-orange-20);--color-link-20-rgb:var(--studio-orange-20-rgb);--color-link-30:var(--studio-orange-30);--color-link-30-rgb:var(--studio-orange-30-rgb);--color-link-40:var(--studio-orange-40);--color-link-40-rgb:var(--studio-orange-40-rgb);--color-link-50:var(--studio-orange-50);--color-link-50-rgb:var(--studio-orange-50-rgb);--color-link-60:var(--studio-orange-60);--color-link-60-rgb:var(--studio-orange-60-rgb);--color-link-70:var(--studio-orange-70);--color-link-70-rgb:var(--studio-orange-70-rgb);--color-link-80:var(--studio-orange-80);--color-link-80-rgb:var(--studio-orange-80-rgb);--color-link-90:var(--studio-orange-90);--color-link-90-rgb:var(--studio-orange-90-rgb);--color-link-100:var(--studio-orange-100);--color-link-100-rgb:var(--studio-orange-100-rgb);--color-masterbar-background:var(--studio-red-80);--color-masterbar-border:var(--studio-red-80);--color-masterbar-text:var(--studio-white);--color-masterbar-item-hover-background:var(--studio-red-90);--color-masterbar-item-active-background:var(--studio-red-100);--color-masterbar-item-new-editor-background:var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-red-70);--color-sidebar-background-rgb:var(--studio-red-70-rgb);--color-sidebar-border:var(--studio-red-80);--color-sidebar-text:var(--studio-white);--color-sidebar-text-rgb:var(--studio-white-rgb);--color-sidebar-text-alternative:var(--studio-red-10);--color-sidebar-gridicon-fill:var(--studio-red-5);--color-sidebar-menu-selected-background:var(--studio-yellow-20);--color-sidebar-menu-selected-background-rgb:var(--studio-yellow-20-rgb);--color-sidebar-menu-selected-text:var(--studio-yellow-80);--color-sidebar-menu-selected-text-rgb:var(--studio-yellow-80-rgb);--color-sidebar-menu-hover-background:var(--studio-red-80);--color-sidebar-menu-hover-background-rgb:var(--studio-red-80-rgb);--color-sidebar-menu-hover-text:var(--studio-white)}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var(--studio-jetpack-green);--color-primary-rgb:var(--studio-jetpack-green-rgb);--color-primary-dark:var(--studio-jetpack-green-70);--color-primary-dark-rgb:var(--studio-jetpack-green-70-rgb);--color-primary-light:var(--studio-jetpack-green-30);--color-primary-light-rgb:var(--studio-jetpack-green-30-rgb);--color-primary-0:var(--studio-jetpack-green-0);--color-primary-0-rgb:var(--studio-jetpack-green-0-rgb);--color-primary-5:var(--studio-jetpack-green-5);--color-primary-5-rgb:var(--studio-jetpack-green-5-rgb);--color-primary-10:var(--studio-jetpack-green-10);--color-primary-10-rgb:var(--studio-jetpack-green-10-rgb);--color-primary-20:var(--studio-jetpack-green-20);--color-primary-20-rgb:var(--studio-jetpack-green-20-rgb);--color-primary-30:var(--studio-jetpack-green-30);--color-primary-30-rgb:var(--studio-jetpack-green-30-rgb);--color-primary-40:var(--studio-jetpack-green-40);--color-primary-40-rgb:var(--studio-jetpack-green-40-rgb);--color-primary-50:var(--studio-jetpack-green-50);--color-primary-50-rgb:var(--studio-jetpack-green-50-rgb);--color-primary-60:var(--studio-jetpack-green-60);--color-primary-60-rgb:var(--studio-jetpack-green-60-rgb);--color-primary-70:var(--studio-jetpack-green-70);--color-primary-70-rgb:var(--studio-jetpack-green-70-rgb);--color-primary-80:var(--studio-jetpack-green-80);--color-primary-80-rgb:var(--studio-jetpack-green-80-rgb);--color-primary-90:var(--studio-jetpack-green-90);--color-primary-90-rgb:var(--studio-jetpack-green-90-rgb);--color-primary-100:var(--studio-jetpack-green-100);--color-primary-100-rgb:var(--studio-jetpack-green-100-rgb);--color-accent:var(--studio-jetpack-green);--color-accent-rgb:var(--studio-jetpack-green-rgb);--color-accent-dark:var(--studio-jetpack-green-70);--color-accent-dark-rgb:var(--studio-jetpack-green-70-rgb);--color-accent-light:var(--studio-jetpack-green-30);--color-accent-light-rgb:var(--studio-jetpack-green-30-rgb);--color-accent-0:var(--studio-jetpack-green-0);--color-accent-0-rgb:var(--studio-jetpack-green-0-rgb);--color-accent-5:var(--studio-jetpack-green-5);--color-accent-5-rgb:var(--studio-jetpack-green-5-rgb);--color-accent-10:var(--studio-jetpack-green-10);--color-accent-10-rgb:var(--studio-jetpack-green-10-rgb);--color-accent-20:var(--studio-jetpack-green-20);--color-accent-20-rgb:var(--studio-jetpack-green-20-rgb);--color-accent-30:var(--studio-jetpack-green-30);--color-accent-30-rgb:var(--studio-jetpack-green-30-rgb);--color-accent-40:var(--studio-jetpack-green-40);--color-accent-40-rgb:var(--studio-jetpack-green-40-rgb);--color-accent-50:var(--studio-jetpack-green-50);--color-accent-50-rgb:var(--studio-jetpack-green-50-rgb);--color-accent-60:var(--studio-jetpack-green-60);--color-accent-60-rgb:var(--studio-jetpack-green-60-rgb);--color-accent-70:var(--studio-jetpack-green-70);--color-accent-70-rgb:var(--studio-jetpack-green-70-rgb);--color-accent-80:var(--studio-jetpack-green-80);--color-accent-80-rgb:var(--studio-jetpack-green-80-rgb);--color-accent-90:var(--studio-jetpack-green-90);--color-accent-90-rgb:var(--studio-jetpack-green-90-rgb);--color-accent-100:var(--studio-jetpack-green-100);--color-accent-100-rgb:var(--studio-jetpack-green-100-rgb);--color-link:var(--studio-jetpack-green-40);--color-link-rgb:var(--studio-jetpack-green-40-rgb);--color-link-dark:var(--studio-jetpack-green-60);--color-link-dark-rgb:var(--studio-jetpack-green-60-rgb);--color-link-light:var(--studio-jetpack-green-20);--color-link-light-rgb:var(--studio-jetpack-green-20-rgb);--color-link-0:var(--studio-jetpack-green-0);--color-link-0-rgb:var(--studio-jetpack-green-0-rgb);--color-link-5:var(--studio-jetpack-green-5);--color-link-5-rgb:var(--studio-jetpack-green-5-rgb);--color-link-10:var(--studio-jetpack-green-10);--color-link-10-rgb:var(--studio-jetpack-green-10-rgb);--color-link-20:var(--studio-jetpack-green-20);--color-link-20-rgb:var(--studio-jetpack-green-20-rgb);--color-link-30:var(--studio-jetpack-green-30);--color-link-30-rgb:var(--studio-jetpack-green-30-rgb);--color-link-40:var(--studio-jetpack-green-40);--color-link-40-rgb:var(--studio-jetpack-green-40-rgb);--color-link-50:var(--studio-jetpack-green-50);--color-link-50-rgb:var(--studio-jetpack-green-50-rgb);--color-link-60:var(--studio-jetpack-green-60);--color-link-60-rgb:var(--studio-jetpack-green-60-rgb);--color-link-70:var(--studio-jetpack-green-70);--color-link-70-rgb:var(--studio-jetpack-green-70-rgb);--color-link-80:var(--studio-jetpack-green-80);--color-link-80-rgb:var(--studio-jetpack-green-80-rgb);--color-link-90:var(--studio-jetpack-green-90);--color-link-90-rgb:var(--studio-jetpack-green-90-rgb);--color-link-100:var(--studio-jetpack-green-100);--color-link-100-rgb:var(--studio-jetpack-green-100-rgb);--color-masterbar-background:var(--studio-white);--color-masterbar-border:var(--studio-gray-5);--color-masterbar-text:var(--studio-gray-50);--color-masterbar-item-hover-background:var(--studio-white);--color-masterbar-item-active-background:var(--studio-white);--color-masterbar-item-new-editor-background:var(--studio-white);--color-masterbar-item-new-editor-hover-background:var(--studio-white);--color-masterbar-unread-dot-background:var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background:var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background:var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border:var(--studio-gray-10);--color-sidebar-background:var(--studio-white);--color-sidebar-background-rgb:var(--studio-white-rgb);--color-sidebar-border:var(--studio-gray-5);--color-sidebar-text:var(--studio-gray-60);--color-sidebar-text-rgb:var(--studio-gray-60-rgb);--color-sidebar-text-alternative:var(--studio-gray-60);--color-sidebar-gridicon-fill:var(--studio-gray-60);--color-sidebar-menu-selected-text:var(--studio-jetpack-green-50);--color-sidebar-menu-selected-text-rgb:var(--studio-jetpack-green-50-rgb);--color-sidebar-menu-selected-background:var(--studio-jetpack-green-5);--color-sidebar-menu-selected-background-rgb:var(--studio-jetpack-green-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-rgb);--color-scary-0:var(--studio-red-0);--color-scary-5:var(--studio-red-5);--color-scary-40:var(--studio-red-40);--color-scary-50:var(--studio-red-50);--color-scary-60:var(--studio-red-60)}.domain-picker__empty-state{display:flex;justify-content:center;flex-direction:column}.domain-picker__empty-state--text{max-width:320px;font-size:.875rem;margin:10px 0;color:#555d66}@media (min-width:480px){.domain-picker__empty-state{flex-direction:row;align-items:center}.domain-picker__empty-state--text{margin:15px 10px}}.domain-picker__show-more{margin-top:20px;text-align:center}.domain-picker__search{position:relative;margin-bottom:20px}.domain-picker__search input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.domain-picker__search input[type=text].components-text-control__input:-ms-input-placeholder{color:#000;color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input::placeholder{color:#000;color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px #5198d9;box-shadow:0 0 0 2px var(--studio-blue-30);background:#fff;background:var(--studio-white)}.domain-picker__search svg{position:absolute;top:6px;right:8px}.domain-picker__suggestion-item-group{flex-grow:1}.domain-picker__suggestion-sections{flex:1}.domain-picker__suggestion-group-label{margin:1.5em 0 .5em;text-transform:uppercase;color:#787c82;color:var(--studio-gray-40);font-size:.75rem;letter-spacing:1px;font-weight:700}.domain-picker__suggestion-item{font-size:.875rem;line-height:17px;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:58px;background:#fff;background:var(--studio-white);border:1px solid #dcdcde;border:1px solid var(--studio-gray-5);padding:10px 14px;position:relative;text-align:left;cursor:pointer}.domain-picker__suggestion-item.type-individual-item{min-height:64px;border-width:2px}.domain-picker__suggestion-item.type-individual-item.is-selected,.domain-picker__suggestion-item.type-individual-item:hover{border-color:#117ac9}.domain-picker__suggestion-item.placeholder{cursor:default}.domain-picker__suggestion-item.type-individual-item,.domain-picker__suggestion-item:first-of-type{border-top-left-radius:5px;border-top-right-radius:5px}.domain-picker__suggestion-item.type-individual-item,.domain-picker__suggestion-item:last-of-type{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.domain-picker__suggestion-item+.domain-picker__suggestion-item{margin-top:-1px}.domain-picker__suggestion-item+.domain-picker__suggestion-item.type-individual-item{margin:12px 0}.domain-picker__suggestion-item.is-unavailable{color:#787c82;color:var(--studio-gray-40)}.domain-picker__suggestion-item:nth-child(7){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:0ms}.domain-picker__suggestion-item:nth-child(8){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:40ms}.domain-picker__suggestion-item:nth-child(9){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:80ms}.domain-picker__suggestion-item:nth-child(10){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.12s}.domain-picker__suggestion-item:nth-child(11){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.16s}.domain-picker__suggestion-item:nth-child(12){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.2s}.domain-picker__suggestion-item:nth-child(13){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.24s}.domain-picker__suggestion-item:nth-child(14){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.28s}@keyframes domain-picker-item-slide-up{to{transform:translateY(0);opacity:1}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:16px;height:16px;min-width:16px;padding:0;margin:1px 12px 0 0;vertical-align:middle;position:relative}@media (prefers-reduced-motion:reduce){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{transition-duration:0s}}@media (min-width:600px){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button{font-size:13px;line-height:normal}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:focus{border-color:#007cba;border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px #007cba;box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:-ms-input-placeholder{color:rgba(30,30,30,.62)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button::-moz-placeholder{opacity:1;color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{width:7px;height:7px;margin:8px 0 0 8px;background-color:#fff;border:3px solid #fff}@media (min-width:782px){.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{width:6px;height:6px;margin:4px 0 0 4px}}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:focus{box-shadow:0 0 0 2px #fff,0 0 0 3.5px #007cba;box-shadow:0 0 0 2px #fff,0 0 0 3.5px var(--wp-admin-theme-color);outline:2px solid transparent}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked{background:#007cba;background:var(--wp-admin-theme-color);border-color:#007cba;border-color:var(--wp-admin-theme-color);border-color:#5198d9;border-color:var(--studio-blue-30);background-color:#5198d9;background-color:var(--studio-blue-30)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:before{display:none}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:after{content:"";width:14px;height:14px;border:2px solid #fff;border-radius:50%;position:absolute;margin:0;background:transparent}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:checked:focus,.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:not(:disabled):focus,.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:not(:disabled):hover{border-color:#5198d9;border-color:var(--studio-blue-30);box-shadow:0 0 0 1px #5198d9;box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item input[type=radio].domain-picker__suggestion-radio-button:disabled{border-color:#787c82;border-color:var(--studio-gray-40)}.domain-picker__suggestion-item.type-individual-item input[type=radio].domain-picker__suggestion-radio-button{display:none}.domain-picker__suggestion-item .components-spinner{margin:1px 10px 0 0}.domain-picker__suggestion-item-name{flex-grow:2;flex-basis:2px;letter-spacing:.4px;margin-right:10px}@media (min-width:782px){.domain-picker__suggestion-item-name{margin-right:24px}}.domain-picker__suggestion-item-name .domain-picker__suggestion-item-name-inner{display:flex;align-items:center;flex-wrap:wrap}.domain-picker__suggestion-item-name .domain-picker__domain-name{word-break:break-word}.domain-picker__suggestion-item-name.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;max-width:30%;margin-right:auto}.domain-picker__suggestion-item-name.placeholder:after{content:"\00a0"}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__suggestion-item-name{color:#117ac9}.domain-picker__domain-tld{color:#3582c4;color:var(--studio-blue-40)}.domain-picker__domain-tld.with-margin{margin-right:10px}.domain-picker__suggestion-item.is-unavailable .domain-picker__domain-tld{color:#787c82;color:var(--studio-gray-40)}.domain-picker__suggestion-item.type-individual-item .domain-picker__domain-tld{font-weight:500;color:unset}.domain-picker__info-tooltip{margin-right:10px;cursor:pointer;z-index:1}.domain-picker__badge{display:inline-flex;border-radius:2px;padding:0 10px;line-height:20px;height:20px;align-items:center;font-size:10px;text-transform:uppercase;vertical-align:middle;background-color:#2271b1;background-color:var(--studio-blue-50);color:#fff;color:var(--color-text-inverted);margin:2px 0}.domain-picker__suggestion-item.type-individual-item .domain-picker__badge{color:#00450c;color:var(--studio-green-80);background-color:#b8e6bf;background-color:var(--studio-green-5);border-radius:4px;text-transform:unset;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__badge{color:#0f6cb3;background-color:#ddebf8}.domain-picker__price{color:#787c82;color:var(--studio-gray-40);text-align:right;flex-basis:0;flex-grow:1;transition:opacity .2s ease-in-out}.domain-picker__price:not(.is-paid){display:none}.domain-picker__price:not(:last-child){text-align:left}@media (min-width:600px){.domain-picker__price{flex-basis:1px}.domain-picker__price:not(.is-paid){display:inline}}.domain-picker__price.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;min-width:64px}.domain-picker__price.placeholder:after{content:"\00a0"}.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:flex;flex-direction:column-reverse}.domain-picker__suggestion-item.type-individual-item .domain-picker__price:not(.is-paid){display:block}@media (min-width:782px){.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:block}}.domain-picker__price-inclusive{color:#00a32a;color:var(--studio-green-40);display:none}@media (min-width:600px){.domain-picker__price-inclusive{display:inline}}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive{display:block;line-height:20px}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive strong{font-weight:500}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-inclusive{color:#117ac9}.domain-picker__price-cost{text-decoration:line-through}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-cost{color:#117ac9;opacity:.68}.domain-picker__body{display:flex}@media (max-width:480px){.domain-picker__body{display:block}.domain-picker__body .domain-picker__aside{width:100%;padding:0}}.domain-picker__aside{width:220px;padding-right:30px}.domain-picker__change-subdomain-tip{font-size:.75rem;color:#787c82;color:var(--studio-gray-40)}.domain-picker__error{margin-top:24px}.domain-picker__error .domain-picker__error-message{font-size:.875rem;line-height:17px}.domain-picker__error .domain-picker__error-retry-btn{margin-top:16px}.domain-picker__suggestion-select-button.components-button.is-secondary{min-width:140px;justify-content:center}.domain-picker__suggestion-select-button.components-button.is-secondary:not(:hover):not(.is-selected){box-shadow:inset 0 0 0 1px #c3c4c7;box-shadow:inset 0 0 0 1px var(--studio-gray-10);color:var(--mainColor)}.domain-picker__suggestion-select-button.components-button.is-secondary.is-selected{box-shadow:inset 0 0 0 1px #006ba1;box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);color:#006ba1;color:var(--wp-admin-theme-color-darker-10)}.info-tooltip.components-button.has-icon.has-text svg{margin-right:0}.info-tooltip .components-popover__content>div{color:var(--color-neutral-50);font-size:.875rem;padding:16px;text-align:left}.info-tooltip .components-popover__content>div a{color:var(--studio-blue-40)}@media (max-width:480px){.domain-categories{margin-bottom:20px}.domain-categories .domain-categories__dropdown-button.components-button{display:block;margin-bottom:0}.domain-categories .domain-categories__item-group{display:none}.domain-categories.is-open .domain-categories__item-group{display:block}}.domain-categories__dropdown-button.components-button{width:100%;text-align:center;margin-bottom:8px;height:40px;border:1px solid var(--studio-gray-5);display:none}.domain-categories__dropdown-button.components-button>*{vertical-align:middle}.domain-categories__dropdown-button.components-button svg{margin-left:5px}@media (max-width:480px){.domain-categories__item-group{text-align:center;border:1px solid var(--studio-gray-5);margin-top:-1px}}.domain-categories__item .components-button{color:var(--studio-gray-100);width:100%;text-align:left}.domain-categories__item .components-button:focus,.domain-categories__item .components-button:hover{color:var(--studio-gray-100);box-shadow:none;font-weight:600;text-decoration:underline}.domain-categories__item.is-selected .components-button{font-weight:600;text-decoration:underline}@media (max-width:480px){.domain-categories__item .components-button{display:block;text-align:center}}html:not(.accessible-focus) .domain-categories__item .components-button:focus{box-shadow:none}.nux-launch-modal.step-plan .nux-launch-step__body,.nux-launch-modal.step-plan .plans-grid{margin-bottom:0}.nux-launch-modal.step-plan .plans-grid__details-container{position:relative;margin-left:-24px;margin-right:-24px;width:calc(100% + 48px)}@media (min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-96px;margin-right:-96px}}@media (min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{width:calc(100% + 96px)}}@media (min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{width:calc(100% + 192px)}}.plans-grid{margin-bottom:85px}@media (min-width:600px){.plans-grid{margin-bottom:0}}.plans-grid__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media (min-width:600px){.plans-grid__header{margin:64px 0 51.2px}}@media (min-width:782px){.plans-grid__header{margin:80px 0 64px}}.plans-grid__details{margin-top:70px}.plans-grid__details-container{padding-bottom:120px}@media (max-width:1440px){.plans-grid__details-container{overflow-x:auto;width:100%;position:absolute;left:0;padding-left:24px;padding-right:24px}}@media (max-width:1440px) and (min-width:600px){.plans-grid__details-container{padding-left:48px;padding-right:48px}}@media (max-width:1440px) and (min-width:782px){.plans-grid__details-container{padding-left:96px;padding-right:96px}}.plans-grid__details-heading .plans-ui-title{color:var(--studio-black);margin-bottom:40px;font-size:32px;line-height:40px;letter-spacing:.2px}.plans-accordion__actions{text-align:center}.plans-accordion__plan-item-group{width:100%;display:flex;flex-direction:column}.plans-accordion__toggle-all-button.components-button.is-link{margin:22px auto;color:#555d66}@media (min-width:782px){.plans-accordion__toggle-all-button.components-button.is-link{margin:32px auto}}.plans-accordion__recommend-hint{color:var(--studio-gray-40);font-size:.875rem;text-align:right;margin-bottom:16px}.plans-accordion__recommend-hint svg{fill:var(--studio-yellow-30);margin-right:8px;position:relative;top:2px}.plans-accordion__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion__placeholder:after{content:"\00a0"}.plans-accordion__placeholder--narrow{width:32px}.plans-accordion__placeholder--wide{width:96px}.plans-accordion-item{display:block;flex-grow:1;flex-basis:0;flex-direction:column}.plans-accordion-item.is-disabled{background-color:var(--studio-gray-5)}.plans-accordion-item__viewport{width:100%;height:100%;padding:20px;border:1px solid var(--studio-gray-5)}.plans-accordion-item+.plans-accordion-item .plans-accordion-item__viewport{border-top:0}@media (min-width:600px){.plans-accordion-item__viewport{padding:32px}}.plans-accordion-item:first-of-type .plans-accordion-item__viewport{border-top-left-radius:5px;border-top-right-radius:5px}.plans-accordion-item:last-of-type .plans-accordion-item__viewport{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}@media (min-width:600px){.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:1px}}.plans-accordion-item:not(.is-open) .plans-accordion-item__viewport{padding:0}.plans-accordion-item__name{display:inline-block;font-size:1rem;line-height:1.2}@media (min-width:600px){.plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}@media (min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}}.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.25rem}@media (min-width:600px){.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item__description{font-size:.875rem;color:var(--studio-gray-50);margin-top:4px;display:none}.plans-accordion-item:not(.is-open) .plans-accordion-item__description{display:none}@media (min-width:600px){.plans-accordion-item__description{display:block}}.plans-accordion-item__domain-name{font-size:.875rem}ul.plans-accordion-item__feature-item-group{margin:0;column-count:1}@media (min-width:600px){ul.plans-accordion-item__feature-item-group{column-count:2}}@media (min-width:960px){ul.plans-accordion-item__feature-item-group{column-count:3}}.plans-accordion-item__badge{border-top-left-radius:5px;border-top-right-radius:5px;margin-bottom:-1px}.plans-accordion-item__badge>span{display:block;height:24px;line-height:24px;padding:0 14px;background:#000;color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.5px;text-align:center;text-transform:uppercase}@media (min-width:600px){.plans-accordion-item__badge{position:relative;top:-12px;height:0;overflow:visible;text-align:center;border-radius:0}.plans-accordion-item__badge>span{display:inline-block;border-radius:2px}}.plans-accordion-item__price-amount{font-size:1.5rem}@media (min-width:600px){.plans-accordion-item__price-amount{font-size:2rem}}.plans-accordion-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}@media (min-width:600px){.plans-accordion-item__price-amount.is-loading{max-width:none}}.plans-accordion-item__price-amount.is-loading:after{content:"\00a0"}.plans-accordion-item__price-amount>span{display:none;font-size:1rem;line-height:1.2;color:var(--studio-gray-40);position:relative;top:-1px;margin-left:1px}@media (min-width:600px){.plans-accordion-item__price-amount>span{display:inline-block}}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount{font-size:.875rem;line-height:1.2}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount>span{display:none}.plans-accordion-item__header{display:block;width:100%;cursor:pointer}.plans-accordion-item:not(.is-open) .plans-accordion-item__header{display:flex;align-items:baseline;padding:16px 12px}@media (min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__header{padding:16px 24px}}.plans-accordion-item.is-primary .plans-accordion-item__header{cursor:default}@media (min-width:600px){.plans-accordion-item__header{display:flex}}.plans-accordion-item__price{margin-top:12px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price{margin-top:0;margin-left:8px;color:var(--studio-gray-40)}@media (min-width:600px){.plans-accordion-item__price{margin-top:0;margin-left:auto}}.plans-accordion-item__disabled-label{margin-left:8px;color:var(--studio-gray-40)}.plans-accordion-item__price-note{display:block;font-size:.75rem;line-height:1.5;color:var(--studio-gray-40)}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-note{display:none}.plans-accordion-item__actions{margin-top:16px}@media (min-width:600px){.plans-accordion-item__actions{margin-top:24px}}.plans-accordion-item__dropdown-chevron{flex:1;text-align:right;position:relative;top:-2px}@media (min-width:600px){.plans-accordion-item__dropdown-chevron{right:-8px}}.plans-accordion-item.is-open .plans-accordion-item__dropdown-chevron{display:none}.plans-accordion-item__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion-item__placeholder:after{content:"\00a0"}.plans-accordion-item__placeholder--narrow{width:32px}.plans-accordion-item__placeholder--wide{width:96px}.plans-feature-list{margin-top:24px}@media (min-width:600px){.plans-feature-list{margin-top:36px}}ul.plans-feature-list__item-group{margin:0}ul.plans-feature-list__item-group--columns{display:flex;flex-wrap:wrap}@media (min-width:480px){@supports (display:grid){ul.plans-feature-list__item-group--columns{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}}ul.plans-feature-list__item-group--columns .plans-feature-list__item{margin-right:10px}.plans-feature-list__item{flex:300px 0 1;font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;color:#555d66}.plans-feature-list__item svg{margin-right:1px;vertical-align:middle}.plans-feature-list__item>svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.plans-feature-list__item--disabled-message{font-weight:700;color:var(--studio-orange-40)}.plans-feature-list__item--disabled-message>svg path{fill:var(--studio-orange-40);stroke:var(--studio-orange-40)}.plans-feature-list__domain-summary{font-size:.875rem;line-height:22px;margin-top:10px}.plans-feature-list__domain-summary.components-button.is-link{text-decoration:none;font-size:.875rem;color:var(--studio-blue-40);padding:0;display:flex}.plans-feature-list__domain-summary.components-button.is-link.is-free{font-weight:700;color:var(--studio-orange-40);text-decoration:line-through}.plans-feature-list__domain-summary.components-button.is-link.is-free svg path{fill:var(--studio-orange-40);stroke:var(--studio-orange-40)}.plans-feature-list__domain-summary.components-button.is-link>svg{flex-shrink:0}.plans-feature-list__domain-summary .plans-feature-list__item-url{word-break:break-all}.plans-feature-list__domain-summary svg:first-child{margin-right:5px;vertical-align:middle}.plans-feature-list__domain-summary svg:first-child path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.plans-feature-list__domain-summary.is-picked{font-weight:700}.plans-feature-list__domain-summary.is-cta{font-weight:700;padding:0}.plans-feature-list__domain-summary.is-cta.components-button.is-link{color:var(--studio-blue-40)}.plans-feature-list__domain-summary.is-cta svg:first-child path{fill:var(--studio-green-40);stroke:var(--studio-green-40);margin-top:5px}.plans-feature-list__domain-summary.is-cta svg:last-child{fill:var(--studio-blue-40);stroke:var(--studio-blue-40);margin-left:8px}.plans-feature-list__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:200px}.plans-feature-list__placeholder:after{content:"\00a0"}.plans-table{width:100%;display:flex;flex-wrap:wrap}.plan-item{display:inline-flex;min-width:250px;flex-grow:1;flex-basis:0;flex-direction:column;margin-top:30px}.plan-item.badge-next-to-name{color:var(--studio-gray-100)}.plan-item .plans-feature-list__domain-summary svg path,.plan-item .plans-feature-list__item svg path{fill:var(--studio-gray-100);stroke:var(--studio-gray-100)}@media (min-width:480px){.plan-item+.plan-item{margin-left:-1px}}@media (max-width:480px){.plan-item:not(.is-popular){margin-top:-1px}.plan-item.is-open:not(.is-popular){margin-bottom:30px}}.plan-item__viewport{width:100%;height:100%;flex:1;border:1px solid #999;padding:20px}.plan-item:not(.is-popular) .plan-item__heading{display:flex;align-items:center}@media (max-width:480px){.plan-item:not(.is-popular) .plan-item__heading{font-size:1em}}.plan-item__heading.badge-next-to-name{display:flex;justify-content:space-between}.plan-item__name{font-weight:700;font-size:18px;line-height:24px;display:inline-block}@media (max-width:480px){.plan-item__name{font-size:14px}}.plan-item__badge-next-to-name{height:20px;background:rgba(184,230,191,.64);border-radius:4px;color:var(--studio-green-80);padding:2px 5px;font-size:.75rem}.plan-item__tagline{color:var(--studio-gray-80);font-size:.875rem;margin:4px 0}@media (max-width:480px){.plan-item:not(.is-popular) .plan-item__name{font-weight:400}}.plan-item__mobile-expand-all-plans.components-button.is-link{margin:20px auto;color:#555d66}.plan-item__badge{position:relative;display:block;background:#000;text-align:center;text-transform:uppercase;color:#fff;padding:0 5px;font-size:.75rem;margin:-24px 0 0;height:24px;line-height:24px}.plan-item__price-amount{font-weight:600;font-size:32px;line-height:24px}.plan-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.plan-item__price-amount.is-loading:after{content:"\00a0"}@media (max-width:480px){.plan-item:not(.is-open) .plan-item__price-amount{font-weight:400;font-size:1em}}.plan-item__summary{width:100%}.plan-item__summary::-webkit-details-marker{display:none}@media (min-width:480px){.plan-item.is-popular .plan-item__summary,.plan-item__summary{pointer-events:none}}@media (max-width:480px){.plan-item:not(.is-open) .plan-item__summary{display:flex}}.plan-item__price-note{font-size:12px;line-height:19px;letter-spacing:-.4px;color:var(--studio-gray-40);margin-top:8px;margin-bottom:10px}.plan-item__details .plan-item__summary .plan-item__price{margin-top:16px;margin-bottom:8px}.plan-item:not(.is-open) .plan-item__summary .plan-item__price{margin-top:0;margin-bottom:0;margin-left:10px;color:#555d66}.plan-item__actions{margin-bottom:16px}.plan-item__dropdown-chevron{flex:1;text-align:right}.plan-item.is-open .plan-item__dropdown-chevron{display:none}@media (max-width:480px){.plan-item.is-popular{order:-3}}.plan-item__select-button.components-button.is-primary{padding:0 24px;height:40px}.plan-item__select-button.components-button.is-primary:disabled{opacity:.5}.plan-item__select-button.components-button.is-primary svg{margin-left:-8px;margin-right:10px}.plan-item__select-button.full-width.components-button{padding:0 24px;height:40px;width:100%;justify-content:center;font-size:.875rem;border-radius:4px;margin-top:15px}.plan-item__select-button.full-width.components-button:not(.is-primary){border:2px solid var(--studio-gray-5)}.plans-grid__details-heading{margin-bottom:20px}.plans-details__table{width:100%;border-spacing:0}.plans-details__table td,.plans-details__table th{padding:13px 24px}.plans-details__table td:first-child,.plans-details__table th:first-child{padding-left:0;width:20%}@media (min-width:480px){.plans-details__table td:first-child,.plans-details__table th:first-child{width:40%}}.plans-details__table td:not(:first-child),.plans-details__table th:not(:first-child){white-space:nowrap}.plans-details__table .hidden{display:none}.plans-details__header-row th{font-weight:600;font-size:.875rem;line-height:20px;text-transform:uppercase;color:var(--studio-gray-20);padding-top:5px;padding-bottom:5px;border-bottom:1px solid #eaeaeb;text-align:left}thead .plans-details__header-row th:not(:first-child){text-align:center}.plans-details__feature-row td,.plans-details__feature-row th{font-size:.875rem;font-weight:400;line-height:17px;letter-spacing:.2px;border-bottom:1px solid #eaeaeb;vertical-align:middle}.plans-details__feature-row th{text-align:left}.plans-details__feature-row td{text-align:center}.plans-details__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-details__placeholder:after{content:"\00a0"}.plans-details__placeholder--narrow{width:32px}.plans-details__placeholder--wide{width:96px}.plans-details__select-button.components-button{height:36px;padding:0 18px}@media (min-width:600px){.plans-details__select-button.components-button{height:40px;padding:0 24px}}.nux-launch__feature-list{padding:20px}.nux-launch__feature-list p{margin:10px 0 0}.nux-launch__feature-list-title{margin:0 0 10px;color:#555d66;font-weight:400}ul.nux-launch__feature-item-group{margin:0}.nux-launch__feature-item{font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;vertical-align:middle;color:#555d66;display:flex;align-items:flex-start}.nux-launch__feature-item svg{display:block;margin-right:6px;margin-top:2px}.nux-launch__feature-item svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.nux-launch__submit-button.components-button.is-primary{background:var(--color-accent);border:1px solid var(--color-accent-dark);width:100%;justify-content:center}.nux-launch__submit-button.components-button.is-primary:active,.nux-launch__submit-button.components-button.is-primary:hover{background:var(--color-accent-dark)}.nux-launch__submit-button.components-button.is-primary:disabled{color:#fff;opacity:.5}.nux-launch__submit-button.components-button.is-primary:disabled:hover{background:var(--color-accent)}.nux-launch__summary-item p{margin:0;word-break:break-word}.nux-launch__summary-item .components-tip{margin-top:10px}.nux-launch__summary-item .components-tip svg{align-self:flex-start}.nux-launch__summary-item__plan-name{color:var(--color-text)}.nux-launch__summary-item__domain-name{font-weight:600}.nux-launch__summary-item__domain-name.is-loading{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.nux-launch__summary-item__domain-name.is-loading:after{content:"\00a0"}.nux-launch-menu h4{text-transform:uppercase;margin-bottom:16px}.nux-launch-menu__item-group{margin:0 -12px}.nux-launch-menu__item.components-button.is-link{font-size:.875rem;line-height:17px;display:flex;color:var(--studio-gray-30);width:100%;text-align:left;text-decoration:none;padding:16px 14px}.nux-launch-menu__item.components-button.is-link:hover{color:initial}.nux-launch-menu__item.components-button.is-link:focus{box-shadow:none}.nux-launch-menu__item.components-button.is-link svg{margin-right:10px;color:var(--studio-gray-10);position:relative;top:1px;left:-1px}@media (min-width:782px){.nux-launch-menu__item.components-button.is-link.is-current{background:var(--studio-blue-0);color:initial}.nux-launch-menu__item.components-button.is-link.is-current svg{color:initial}}.nux-launch-menu__item.components-button.is-link.is-completed svg{color:var(--studio-green-40);top:0;left:0}.nux-launch-sidebar{margin-left:24px;margin-right:24px;display:flex;flex-direction:column;height:100%;background:var(--studio-white);padding-top:60px}@media (min-width:600px){.nux-launch-sidebar{margin-left:48px;margin-right:48px}}@media (min-width:782px){.nux-launch-sidebar{margin-left:96px;margin-right:96px;display:block;height:auto;margin:0 24px;padding-top:0}}@media (min-width:782px){.nux-launch-sidebar h1.onboarding-title{font-size:1.5rem}.nux-launch-sidebar h2.onboarding-subtitle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5;color:var(--studio-gray-60)}}.nux-launch-sidebar__header{margin:48px 0 38.4px}@media (min-width:600px){.nux-launch-sidebar__header{margin:64px 0 51.2px}}@media (min-width:782px){.nux-launch-sidebar__header{margin:80px 0 64px}}.nux-launch-sidebar__body{flex-grow:1;margin:0 0 48px}@media (min-width:600px){.nux-launch-sidebar__body{margin:0 0 64px}}@media (min-width:782px){.nux-launch-sidebar__body{margin:0 0 80px}}.nux-launch-sidebar__footer{margin-left:-24px;margin-right:-24px;position:-webkit-sticky;position:sticky;bottom:0}@media (min-width:600px){.nux-launch-sidebar__footer{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-sidebar__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-sidebar__footer .action-buttons{position:relative;justify-content:flex-end}@media (min-width:782px){.nux-launch-sidebar__footer{display:none}}.nux-launch-progress{display:flex;align-items:center;font-weight:600}body.has-nux-launch-modal{overflow:hidden}.nux-launch-modal.components-modal__frame{transform:none}.nux-launch-modal .components-modal__header{display:none}.nux-launch-modal .components-modal__content{left:0;height:100%;padding:0;overflow:auto}.nux-launch-modal-header,.nux-launch-modal .components-modal__content{position:fixed;top:0;display:flex;background:var(--studio-white);width:100%}.nux-launch-modal-header{margin-left:-24px;margin-right:-24px;height:60px;border-bottom:1px solid #ddd;z-index:10}@media (min-width:600px){.nux-launch-modal-header{margin-left:-48px;margin-right:-48px}}@media (min-width:782px){.nux-launch-modal-header{margin-left:-96px;margin-right:-96px;position:relative;border-bottom:none}}.nux-launch-modal-header .nux-launch-progress{height:60px}@media (min-width:782px){.nux-launch-modal-header .nux-launch-progress{display:none}}.nux-launch-modal-header__wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.nux-launch-modal-body{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;margin-left:24px;margin-right:24px;padding-top:60px}@media (min-width:600px){.nux-launch-modal-body{margin-left:48px;margin-right:48px}}@media (min-width:782px){.nux-launch-modal-body{margin-left:96px;margin-right:96px}}.nux-launch-modal-body .nux-launch-step__body{flex-grow:1}.is-sidebar-fullscreen .nux-launch-modal-body{overflow:hidden}@media (min-width:782px){.nux-launch-modal-body{padding-top:0}}.nux-launch-modal-aside{position:absolute;top:0;left:-200%;width:100%;height:100%;background:var(--studio-white);z-index:12}@media (max-width:782px){.is-sidebar-fullscreen .nux-launch-modal-aside{left:0}}@media (min-width:782px){.nux-launch-modal-aside{position:-webkit-sticky;position:sticky;top:0;left:auto;width:280px;min-width:280px;max-width:280px;border-left:1px solid var(--studio-gray-5)}}.nux-launch-modal__close-button.components-button.is-link{position:-webkit-sticky;position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.nux-launch-modal__close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.nux-launch-modal__close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}.nux-launch-modal-body__launching{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1rem}body.has-focused-launch-modal{overflow:hidden}.launch__focused-modal.components-modal__frame{transform:none}.launch__focused-modal .components-modal__header{padding:0 20px;margin:0}.launch__focused-modal .components-modal__header .components-modal__icon-container{margin-right:12px}@media (min-width:782px){.launch__focused-modal .components-modal__header{border-bottom:none}.launch__focused-modal .components-modal__header .components-modal__header-heading{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}}.launch__focused-modal .components-modal__content{position:fixed;top:0;left:0;background:var(--studio-white);width:100%;height:100%;padding:0;overflow:auto}.launch__focused-modal.launch__focused-modal--hide-title .components-modal__header{border-bottom:none}.launch__focused-modal.launch__focused-modal--hide-title .components-modal__header-heading{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.launch__focused-modal-close-button.components-button.is-link{position:-webkit-sticky;position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.launch__focused-modal-close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.launch__focused-modal-close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}.launch__focused-modal-body{position:relative;width:100%;min-width:0;min-height:calc(100% - 60px);padding:24px 20px;display:flex;flex-grow:1;flex-direction:column}@media (min-width:600px){.launch__focused-modal-body{padding:24px 32px 48px}}@media (min-width:782px){.launch__focused-modal-body{border-bottom:none;padding:24px 48px 60px}}@media (min-width:960px){.launch__focused-modal-body{padding:32px 60px 72px;padding:32px 80px 80px}}.launch__focused-modal-body>*{flex:1}.focused-launch-container{width:100%;max-width:980px;margin:0 auto}.focused-launch-container.focused-launch-container--wide{max-width:1280px}.focused-launch-details__back-button-wrapper{margin-bottom:24px}.focused-launch-details__header{margin-bottom:30px}@media (min-width:782px){.focused-launch-details__header{margin-bottom:55px}}.go-back-button__focused-launch{text-decoration:underline;background:transparent;border:none;padding:0;margin:0 0 24px;cursor:pointer}.go-back-button__focused-launch>*{vertical-align:middle}.go-back-button__focused-launch svg{margin-left:-5px}.go-back-button__focused-launch:hover{opacity:.7}.focused-launch-container.focused-launch-success__wrapper{max-width:420px;padding-bottom:100px;flex-grow:0;margin:auto;display:flex;flex-direction:column;align-items:center;text-align:center}.focused-launch-container.focused-launch-success__wrapper .onboarding-title{margin-bottom:12px}.focused-launch-container.focused-launch-success__wrapper .onboarding-subtitle{margin-bottom:32px}.focused-launch-success__wordpress-icon{position:absolute;top:0;left:0}.focused-launch-success__confetti{width:100%;max-width:356px;margin-bottom:-20px}.focused-launch-success__url-copy-button,.focused-launch-success__url-wrapper{border-radius:4px;border:1px solid var(--studio-gray-5)}.focused-launch-success__url-wrapper{display:flex;align-items:center;padding:6px 6px 6px 16px;width:100%;margin-bottom:24px}@media (min-width:600px){.focused-launch-success__url-wrapper{width:auto;max-width:100%;margin-bottom:32px}}.focused-launch-success__url-field{font-size:.75rem;line-height:14px;color:var(--studio-gray-60);flex-grow:0;flex-shrink:1;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.focused-launch-success__url-link{fill:var(--studio-gray-50);flex-grow:0;flex-shrink:0;margin-left:4px;margin-right:16px;font-size:0;line-height:1}@media (min-width:600px){.focused-launch-success__url-link{margin-right:24px}}.focused-launch-success__url-copy-button{font-size:.75rem;line-height:14px;color:var(--studio-gray-60);flex-grow:0;flex-shrink:0;margin-left:auto}.focused-launch-success__continue-editing-button{background-color:#117ac9;width:100%;margin-bottom:20px}@media (min-width:600px){.focused-launch-success__continue-editing-button{width:auto}}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.focused-launch-summary__input .components-text-control__input{font-size:1rem;padding:10px 16px}.focused-launch-summary__input .components-text-control__input .components-base-control__label{margin:0}@media (min-width:782px){.focused-launch-summary__mobile-only{display:none}}.focused-launch-summary__mobile-commentary{font-size:.875rem;color:var(--studio-gray-60)}.focused-launch-summary__mobile-commentary svg{vertical-align:bottom}.focused-launch-summary__label{margin-bottom:8px;display:block;font-size:1.25rem;color:var(--studio-gray-90);line-height:24px}.focused-launch-summary__info-icon{margin-left:10px;vertical-align:middle}.focused-launch-summary__section{margin-bottom:40px}.focused-launch-summary__caption{margin:12px 0}.focused-launch-summary__step{display:flex;opacity:.5;transition:opacity .5s ease-in-out}@media (min-width:782px){.focused-launch-summary__step{gap:50px}}@media (min-width:960px){.focused-launch-summary__step{gap:100px}}.focused-launch-container:not(:focus-within) .focused-launch-summary__step{opacity:1}.focused-launch-summary__step:focus-within{opacity:1}.focused-launch-summary__side-commentary{display:none}@media (min-width:782px){.focused-launch-summary__side-commentary{border-left:1px solid #eee;display:flex;flex-direction:column;flex:0.4;padding:0 42.5px;max-width:350px}.focused-launch-summary__side-commentary:before{content:"";display:block;height:18px}.focused-launch-summary__side-commentary-title{font-size:1.25rem;line-height:26px;margin:12px 0}.focused-launch-summary__side-commentary-list{list-style:none}.focused-launch-summary__side-commentary-list-item{font-size:.875rem;margin:4px 0;display:flex}.focused-launch-summary__side-commentary-list-item svg{vertical-align:bottom;width:18px;height:18px;margin-right:12px}}.focused-launch-summary__data-input{flex:1}@media (min-width:782px){.focused-launch-summary__data-input{flex:0.6}}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:2.25rem;line-height:40px;color:#101517}:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-20:#005a87}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}.focused-launch-summary__item{background-color:var(--studio-white);border:2px solid var(--studio-gray-5);padding:10px 14px;min-height:64px;border-radius:4px;display:flex;justify-content:space-between;align-items:center;width:100%}.focused-launch-summary__item .focused-launch-summary-item__leading-side-badge{margin-left:10px;display:inline-block;height:20px;font-size:.75rem;background-color:var(--studio-green-5);color:var(--studio-green-80);padding:0 10px;border-radius:4px;line-height:1.5}.focused-launch-summary__item.is-selected .focused-launch-summary-item__leading-side-badge{background-color:#ddebf8;color:#0f6cb3}.focused-launch-summary__item .focused-launch-summary-item__leading-side-label{color:inherit;font-size:.875rem;font-weight:500}.focused-launch-summary__item:not(.is-selected):not(.is-readonly) .focused-launch-summary-item__leading-side-label{color:var(--studio-gray-90)}.focused-launch-summary__item .focused-launch-summary-item__price-cost{font-size:.875rem}.focused-launch-summary__item:not(.is-selected) .focused-launch-summary-item__price-cost{color:var(--studio-gray-40)}.focused-launch-summary__item.is-selected{border:2px solid #117ac9;color:#117ac9}.focused-launch-summary__item.is-selected .focused-launch-summary-item__price-cost{color:#117ac9;opacity:.68}.focused-launch-summary__item.is-selected .focused-launch-summary-item__leading-side-label{color:#117ac9}.focused-launch-summary__item.is-readonly{color:var(--studio-gray-30);fill:var(--studio-gray-30)}.focused-launch-summary__item:not(.is-readonly){cursor:pointer}.focused-launch-summary__item:not(.is-readonly):hover{border:2px solid #117ac9}.focused-launch-summary__item .focused-launch-summary-item__warning-note{color:#d67709}.focused-launch-summary__item *{vertical-align:middle}.focused-launch-summary__item.is-loading>*{display:none}.focused-launch-summary__item.is-loading:before{content:"";width:100%;height:15px;background:#eee;border-radius:2px;animation:focused-launch__loading-fade 1s ease-in-out infinite}@keyframes focused-launch__loading-fade{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.focused-launch-summary__item+.focused-launch-summary__item{margin-top:10px}
editor-site-launch/dist/editor-site-launch.js CHANGED
@@ -1,15 +1,22 @@
1
- !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=123)}([function(e,t){!function(){e.exports=this.React}()},function(e,t){!function(){e.exports=this.wp.element}()},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t){!function(){e.exports=this.wp.data}()},function(e,t,n){e.exports=n(109)()},function(e,t){!function(){e.exports=this.wp.components}()},function(e,t,n){var r;
2
  /*!
3
  Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
- */!function(){"use strict";var n={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)&&r.length){var a=i.apply(null,r);a&&e.push(a)}else if("object"===o)for(var c in r)n.call(r,c)&&r[c]&&e.push(c)}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()},function(e,t){!function(){e.exports=this.wp.primitives}()},function(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,i=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(i=r))})),t.splice(i,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(78)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t){e.exports=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(e,t){!function(){e.exports=this.lodash}()},,function(e,t){!function(){e.exports=this.wp.compose}()},,function(e,t){!function(){e.exports=this.wp.dataControls}()},,,function(e,t,n){"use strict";var r,i="object"==typeof Reflect?Reflect:null,o=i&&"function"==typeof i.apply?i.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=i&&"function"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function c(){c.init.call(this)}e.exports=c,c.EventEmitter=c,c.prototype._events=void 0,c.prototype._eventsCount=0,c.prototype._maxListeners=void 0;var s=10;function l(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function u(e){return void 0===e._maxListeners?c.defaultMaxListeners:e._maxListeners}function d(e,t,n,r){var i,o,a,c;if(l(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=u(e))>0&&a.length>i&&!a.warned){a.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=e,s.type=t,s.count=a.length,c=s,console&&console.warn&&console.warn(c)}return e}function p(){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 f(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=p.bind(r);return i.listener=n,r.wrapFn=i,i}function m(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):g(i,i.length)}function h(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function g(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(c,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),c.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},c.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},c.prototype.getMaxListeners=function(){return u(this)},c.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var c=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw c.context=a,c}var s=i[e];if(void 0===s)return!1;if("function"==typeof s)o(s,this,t);else{var l=s.length,u=g(s,l);for(n=0;n<l;++n)o(u[n],this,t)}return!0},c.prototype.addListener=function(e,t){return d(this,e,t,!1)},c.prototype.on=c.prototype.addListener,c.prototype.prependListener=function(e,t){return d(this,e,t,!0)},c.prototype.once=function(e,t){return l(t),this.on(e,f(this,e,t)),this},c.prototype.prependOnceListener=function(e,t){return l(t),this.prependListener(e,f(this,e,t)),this},c.prototype.removeListener=function(e,t){var n,r,i,o,a;if(l(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},c.prototype.off=c.prototype.removeListener,c.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},c.prototype.listeners=function(e){return m(this,e,!0)},c.prototype.rawListeners=function(e){return m(this,e,!1)},c.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):h.call(e,t)},c.prototype.listenerCount=h,c.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t){e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}},,function(e,t,n){"use strict";var r=n(31),i=n(43);function o(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function c(e){return 1===e.length?"0"+e:e}function s(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=i,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),i=0;i<e.length;i+=2)n.push(parseInt(e[i]+e[i+1],16))}else for(var r=0,i=0;i<e.length;i++){var a=e.charCodeAt(i);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):o(e,i)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++i)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|128)}else for(i=0;i<e.length;i++)n[i]=0|e[i];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=c(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e[r];"little"===t&&(i=a(i)),n+=s(i.toString(16))}return n},t.zero2=c,t.zero8=s,t.join32=function(e,t,n,i){var o=n-t;r(o%4==0);for(var a=new Array(o/4),c=0,s=t;c<a.length;c++,s+=4){var l;l="big"===i?e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3]:e[s+3]<<24|e[s+2]<<16|e[s+1]<<8|e[s],a[c]=l>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r<e.length;r++,i+=4){var o=e[r];"big"===t?(n[i]=o>>>24,n[i+1]=o>>>16&255,n[i+2]=o>>>8&255,n[i+3]=255&o):(n[i+3]=o>>>24,n[i+2]=o>>>16&255,n[i+1]=o>>>8&255,n[i]=255&o)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],o=r+e[t+1]>>>0,a=(o<r?1:0)+n+i;e[t]=a>>>0,e[t+1]=o},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,o,a,c){var s=0,l=t;return s+=(l=l+r>>>0)<t?1:0,s+=(l=l+o>>>0)<o?1:0,e+n+i+a+(s+=(l=l+c>>>0)<c?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,i,o,a,c){return t+r+o+c>>>0},t.sum64_5_hi=function(e,t,n,r,i,o,a,c,s,l){var u=0,d=t;return u+=(d=d+r>>>0)<t?1:0,u+=(d=d+o>>>0)<o?1:0,u+=(d=d+c>>>0)<c?1:0,e+n+i+a+s+(u+=(d=d+l>>>0)<l?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,i,o,a,c,s,l){return t+r+o+c+l>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t){!function(){e.exports=this.wp.plugins}()},function(e,t,n){var r=n(70),i=n(71),o=n(39),a=n(72);e.exports=function(e,t){return r(e)||i(e,t)||o(e,t)||a()}},function(e,t,n){"use strict";var r=n(83),i=n(84),o=n(41);e.exports={formats:o,parse:i,stringify:r}},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){"use strict";var r=n(48),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},c={};function s(e){return r.isMemo(e)?a:c[e.$$typeof]||i}c[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},c[r.Memo]=a;var l=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var i=f(n);i&&i!==m&&e(t,i,r)}var a=u(n);d&&(a=a.concat(d(n)));for(var c=s(t),h=s(n),g=0;g<a.length;++g){var b=a[g];if(!(o[b]||r&&r[b]||h&&h[b]||c&&c[b])){var v=p(n,b);try{l(t,b,v)}catch(y){}}}}return t}},function(e,t){var n,r=window.ProgressEvent,i=!!r;try{n=new r("loaded"),i="loaded"===n.type,n=null}catch(o){i=!1}e.exports=i?r:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},function(e,t,n){"use strict";
7
  /*!
8
  * cookie
9
  * Copyright(c) 2012-2014 Roman Shtylman
10
  * Copyright(c) 2015 Douglas Christopher Wilson
11
  * MIT Licensed
12
- */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var n={},i=t||{},a=e.split(o),s=i.decode||r,l=0;l<a.length;l++){var u=a[l],d=u.indexOf("=");if(!(d<0)){var p=u.substr(0,d).trim(),f=u.substr(++d,u.length).trim();'"'==f[0]&&(f=f.slice(1,-1)),null==n[p]&&(n[p]=c(f,s))}}return n},t.serialize=function(e,t,n){var r=n||{},o=r.encode||i;if("function"!=typeof o)throw new TypeError("option encode is invalid");if(!a.test(e))throw new TypeError("argument name is invalid");var c=o(t);if(c&&!a.test(c))throw new TypeError("argument val is invalid");var s=e+"="+c;if(null!=r.maxAge){var l=r.maxAge-0;if(isNaN(l))throw new Error("maxAge should be a Number");s+="; Max-Age="+Math.floor(l)}if(r.domain){if(!a.test(r.domain))throw new TypeError("option domain is invalid");s+="; Domain="+r.domain}if(r.path){if(!a.test(r.path))throw new TypeError("option path is invalid");s+="; Path="+r.path}if(r.expires){if("function"!=typeof r.expires.toUTCString)throw new TypeError("option expires is invalid");s+="; Expires="+r.expires.toUTCString()}r.httpOnly&&(s+="; HttpOnly");r.secure&&(s+="; Secure");if(r.sameSite){switch("string"==typeof r.sameSite?r.sameSite.toLowerCase():r.sameSite){case!0:s+="; SameSite=Strict";break;case"lax":s+="; SameSite=Lax";break;case"strict":s+="; SameSite=Strict";break;case"none":s+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return s};var r=decodeURIComponent,i=encodeURIComponent,o=/; */,a=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function c(e,t){try{return t(e)}catch(n){return e}}},,function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,i=Array.isArray,o=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],a=o.obj[o.prop],c=Object.keys(a),s=0;s<c.length;++s){var l=c[s],u=a[l];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:a,prop:l}),n.push(u))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(i){return r}},encode:function(e,t,n){if(0===e.length)return e;var r=e;if("symbol"==typeof e?r=Symbol.prototype.toString.call(e):"string"!=typeof e&&(r=String(e)),"iso-8859-1"===n)return escape(r).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var i="",a=0;a<r.length;++a){var c=r.charCodeAt(a);45===c||46===c||95===c||126===c||c>=48&&c<=57||c>=65&&c<=90||c>=97&&c<=122?i+=r.charAt(a):c<128?i+=o[c]:c<2048?i+=o[192|c>>6]+o[128|63&c]:c<55296||c>=57344?i+=o[224|c>>12]+o[128|c>>6&63]+o[128|63&c]:(a+=1,c=65536+((1023&c)<<10|1023&r.charCodeAt(a)),i+=o[240|c>>18]+o[128|c>>12&63]+o[128|c>>6&63]+o[128|63&c])}return i},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,o){if(!n)return t;if("object"!=typeof n){if(i(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(o&&(o.plainObjects||o.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var c=t;return i(t)&&!i(n)&&(c=a(t,o)),i(t)&&i(n)?(n.forEach((function(n,i){if(r.call(t,i)){var a=t[i];a&&"object"==typeof a&&n&&"object"==typeof n?t[i]=e(a,n,o):t.push(n)}else t[i]=n})),t):Object.keys(n).reduce((function(t,i){var a=n[i];return r.call(t,i)?t[i]=e(t[i],a,o):t[i]=a,t}),c)}}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t,n){var r=n(79),i=n(80),o=n(39),a=n(81);e.exports=function(e){return r(e)||i(e)||o(e)||a()}},function(e,t){!function(){e.exports=this.wp.hooks}()},function(e,t,n){var r=n(9);function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(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){r(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(e,t,n){var r=n(118);e.exports=f,e.exports.parse=o,e.exports.compile=function(e,t){return c(o(e,t),t)},e.exports.tokensToFunction=c,e.exports.tokensToRegExp=p;var i=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function o(e,t){for(var n,r=[],o=0,a=0,c="",u=t&&t.delimiter||"/";null!=(n=i.exec(e));){var d=n[0],p=n[1],f=n.index;if(c+=e.slice(a,f),a=f+d.length,p)c+=p[1];else{var m=e[a],h=n[2],g=n[3],b=n[4],v=n[5],y=n[6],_=n[7];c&&(r.push(c),c="");var E=null!=h&&null!=m&&m!==h,w="+"===y||"*"===y,S="?"===y||"*"===y,O=n[2]||u,x=b||v;r.push({name:g||o++,prefix:h||"",delimiter:O,optional:S,repeat:w,partial:E,asterisk:!!_,pattern:x?l(x):_?".*":"[^"+s(O)+"]+?"})}}return a<e.length&&(c+=e.substr(a)),c&&r.push(c),r}function a(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function c(e,t){for(var n=new Array(e.length),i=0;i<e.length;i++)"object"==typeof e[i]&&(n[i]=new RegExp("^(?:"+e[i].pattern+")$",d(t)));return function(t,i){for(var o="",c=t||{},s=(i||{}).pretty?a:encodeURIComponent,l=0;l<e.length;l++){var u=e[l];if("string"!=typeof u){var d,p=c[u.name];if(null==p){if(u.optional){u.partial&&(o+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(r(p)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(p)+"`");if(0===p.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var f=0;f<p.length;f++){if(d=s(p[f]),!n[l].test(d))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(d)+"`");o+=(0===f?u.prefix:u.delimiter)+d}}else{if(d=u.asterisk?encodeURI(p).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):s(p),!n[l].test(d))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+d+'"');o+=u.prefix+d}}else o+=u}return o}}function s(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function l(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function u(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function p(e,t,n){r(t)||(n=t||n,t=[]);for(var i=(n=n||{}).strict,o=!1!==n.end,a="",c=0;c<e.length;c++){var l=e[c];if("string"==typeof l)a+=s(l);else{var p=s(l.prefix),f="(?:"+l.pattern+")";t.push(l),l.repeat&&(f+="(?:"+p+f+")*"),a+=f=l.optional?l.partial?p+"("+f+")?":"(?:"+p+"("+f+"))?":p+"("+f+")"}}var m=s(n.delimiter||"/"),h=a.slice(-m.length)===m;return i||(a=(h?a.slice(0,-m.length):a)+"(?:"+m+"(?=$))?"),a+=o?"$":i&&h?"":"(?="+m+"|$)",u(new RegExp("^"+a,d(n)),t)}function f(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return u(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],i=0;i<e.length;i++)r.push(f(e[i],t,n).source);return u(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return p(o(e,n),t,n)}(e,t,n)}},,,,function(e,t,n){var r=n(40);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){"use strict";var r=String.prototype.replace,i=/%20/g,o=n(30),a={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports=o.assign({default:a.RFC3986,formatters:{RFC1738:function(e){return r.call(e,i,"+")},RFC3986:function(e){return String(e)}}},a)},function(e,t,n){"use strict";function r(e){return function(){return e}}var i=function(){};i.thatReturns=r,i.thatReturnsFalse=r(!1),i.thatReturnsTrue=r(!0),i.thatReturnsNull=r(null),i.thatReturnsThis=function(){return this},i.thatReturnsArgument=function(e){return e},e.exports=i},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t,n){"use strict";var r=n(20),i=n(31);function o(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=o,o.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var i=0;i<e.length;i+=this._delta32)this._update(e,i,i+this._delta32)}return this},o.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},o.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var i=1;i<n;i++)r[i]=0;if(e<<=3,"big"===this.endian){for(var o=8;o<this.padLength;o++)r[i++]=0;r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=e>>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,o=8;o<this.padLength;o++)r[i++]=0;return r}},function(e,t,n){"use strict";var r=n(20).rotr32;function i(e,t,n){return e&t^~e&n}function o(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?i(t,n,r):1===e||3===e?a(t,n,r):2===e?o(t,n,r):void 0},t.ch32=i,t.maj32=o,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";e.exports=n(107)},function(e,t,n){var r=n(75),i=n(77);function o(e,t){if(t)if("number"==typeof t)a(e,t);else{t.status_code&&a(e,t.status_code),t.error&&(e.name=s(t.error)),t.error_description&&(e.message=t.error_description);var n=t.errors;if(n)o(e,n.length?n[0]:n);for(var r in t)e[r]=t[r];e.status&&(t.method||t.path)&&c(e)}}function a(e,t){e.name=s(i[t]),e.status=e.statusCode=t,c(e)}function c(e){var t=e.status,n=e.method,r=e.path,i=t+" status code",o=n||r;o&&(i+=' for "'),n&&(i+=n),o&&(i+=" "),r&&(i+=r),o&&(i+='"'),e.message=i}function s(e){return r(String(e).replace(/error$/i,""),"error")}e.exports=function e(){for(var t=new Error,n=0;n<arguments.length;n++)o(t,arguments[n]);"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(t,e);return t}},function(e,t,n){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,i=t.cmp&&(n=t.cmp,function(e){return function(t,r){var i={key:t,value:e[t]},o={key:r,value:e[r]};return n(i,o)}}),o=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==o.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var c=o.push(t)-1,s=Object.keys(t).sort(i&&i(t));for(a="",n=0;n<s.length;n++){var l=s[n],u=e(t[l]);u&&(a&&(a+=","),a+=JSON.stringify(l)+":"+u)}return o.splice(c,1),"{"+a+"}"}}(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var 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},i=c(n(0)),o=c(n(85)),a=c(n(88));function c(e){return e&&e.__esModule?e:{default:e}}var s=void 0;function l(e,t){var n,a,c,u,d,p,f,m,h=[],g={};for(p=0;p<e.length;p++)if("string"!==(d=e[p]).type){if(!t.hasOwnProperty(d.value)||void 0===t[d.value])throw new Error("Invalid interpolation, missing component node: `"+d.value+"`");if("object"!==r(t[d.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+d.value+"`","\n> "+s);if("componentClose"===d.type)throw new Error("Missing opening component token: `"+d.value+"`");if("componentOpen"===d.type){n=t[d.value],c=p;break}h.push(t[d.value])}else h.push(d.value);return n&&(u=function(e,t){var n,r,i=t[e],o=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===i.value){if("componentOpen"===n.type){o++;continue}if("componentClose"===n.type){if(0===o)return r;o--}}throw new Error("Missing closing component token `"+i.value+"`")}(c,e),f=l(e.slice(c+1,u),t),a=i.default.cloneElement(n,{},f),h.push(a),u<e.length-1&&(m=l(e.slice(u+1),t),h=h.concat(m))),1===h.length?h[0]:(h.forEach((function(e,t){e&&(g["interpolation-child-"+t]=e)})),(0,o.default)(g))}t.default=function(e){var t=e.mixedString,n=e.components,i=e.throwErrors;if(s=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var o=(0,a.default)(t);try{return l(o,n)}catch(c){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+c.message+"`");return t}}},function(e,t,n){var r=n(17),i=n(43);function o(e){if(!(this instanceof o))return new o(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=o,i(o,r.EventEmitter),Object.defineProperty(o.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),o.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},o.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},o.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},o.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},o.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},o.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},o.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},o.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},function(e,t,n){"use strict";var r=n(20),i=n(44),o=n(45),a=r.rotl32,c=r.sum32,s=r.sum32_5,l=o.ft_1,u=i.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function p(){if(!(this instanceof p))return new p;u.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(p,u),e.exports=p,p.blockSize=512,p.outSize=160,p.hmacStrength=80,p.padLength=64,p.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var i=this.h[0],o=this.h[1],u=this.h[2],p=this.h[3],f=this.h[4];for(r=0;r<n.length;r++){var m=~~(r/20),h=s(a(i,5),l(m,o,u,p),f,n[r],d[m]);f=p,p=u,u=a(o,30),o=i,i=h}this.h[0]=c(this.h[0],i),this.h[1]=c(this.h[1],o),this.h[2]=c(this.h[2],u),this.h[3]=c(this.h[3],p),this.h[4]=c(this.h[4],f)},p.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(89);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(90),i=n(91),o=n(92);e.exports=function(e){var t=i();return function(){var n,i=r(e);if(t){var a=r(this).constructor;n=Reflect.construct(i,arguments,a)}else n=i.apply(this,arguments);return o(this,n)}}},function(e,t,n){"use strict";e.exports=n(94)},function(e,t,n){"use strict";var r=n(20),i=n(44),o=n(45),a=n(31),c=r.sum32,s=r.sum32_4,l=r.sum32_5,u=o.ch32,d=o.maj32,p=o.s0_256,f=o.s1_256,m=o.g0_256,h=o.g1_256,g=i.BlockHash,b=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function v(){if(!(this instanceof v))return new v;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=b,this.W=new Array(64)}r.inherits(v,g),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=s(h(n[r-2]),n[r-7],m(n[r-15]),n[r-16]);var i=this.h[0],o=this.h[1],g=this.h[2],b=this.h[3],v=this.h[4],y=this.h[5],_=this.h[6],E=this.h[7];for(a(this.k.length===n.length),r=0;r<n.length;r++){var w=l(E,f(v),u(v,y,_),this.k[r],n[r]),S=c(p(i),d(i,o,g));E=_,_=y,y=v,v=c(b,w),b=g,g=o,o=i,i=c(w,S)}this.h[0]=c(this.h[0],i),this.h[1]=c(this.h[1],o),this.h[2]=c(this.h[2],g),this.h[3]=c(this.h[3],b),this.h[4]=c(this.h[4],v),this.h[5]=c(this.h[5],y),this.h[6]=c(this.h[6],_),this.h[7]=c(this.h[7],E)},v.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t){!function(){e.exports=this.wp.url}()},function(e,t,n){"use strict";var r="__global_unique_id__";e.exports=function(){return window[r]=(window[r]||0)+1}},,,,,,,,function(e,t){!function(){e.exports=this["a8c-fse-common-data-stores"]}()},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var a,c=e[Symbol.iterator]();!(r=(a=c.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(s){i=!0,o=s}finally{try{r||null==c.return||c.return()}finally{if(i)throw o}}return n}}},function(e,t){e.exports=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(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";var r=n(76);e.exports=function(){var e=r.apply(r,arguments);return e.charAt(0).toUpperCase()+e.slice(1)}},function(e,t,n){"use strict";e.exports=function(){var e=[].map.call(arguments,(function(e){return e.trim()})).filter((function(e){return e.length})).join("-");return e.length?1!==e.length&&/[_.\- ]+/.test(e)?e.replace(/^[_.\- ]+/,"").toLowerCase().replace(/[_.\- ]+(\w|$)/g,(function(e,t){return t.toUpperCase()})):e[0]===e[0].toLowerCase()&&e.slice(1)!==e.slice(1).toLowerCase()?e:e.toLowerCase():""}},function(e,t){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},function(e,t,n){var r=n(32);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return i.colors[Math.abs(t)%i.colors.length]}function i(e){var n;function r(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];if(r.enabled){var a=r,c=Number(new Date),s=c-(n||c);a.diff=s,a.prev=n,a.curr=c,n=c,t[0]=i.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var l=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;l++;var r=i.formatters[n];if("function"==typeof r){var o=t[l];e=r.call(a,o),t.splice(l,1),l--}return e})),i.formatArgs.call(a,t);var u=a.log||i.log;u.apply(a,t)}}return r.namespace=e,r.enabled=i.enabled(e),r.useColors=i.useColors(),r.color=t(e),r.destroy=o,r.extend=a,"function"==typeof i.init&&i.init(r),i.instances.push(r),r}function o(){var e=i.instances.indexOf(this);return-1!==e&&(i.instances.splice(e,1),!0)}function a(e,t){var n=i(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function c(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return i.debug=i,i.default=i,i.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},i.disable=function(){var e=[].concat(r(i.names.map(c)),r(i.skips.map(c).map((function(e){return"-"+e})))).join(",");return i.enable(""),e},i.enable=function(e){var t;i.save(e),i.names=[],i.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?i.skips.push(new RegExp("^"+e.substr(1)+"$")):i.names.push(new RegExp("^"+e+"$")));for(t=0;t<i.instances.length;t++){var o=i.instances[t];o.enabled=i.enabled(o.namespace)}},i.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=i.skips.length;t<n;t++)if(i.skips[t].test(e))return!1;for(t=0,n=i.names.length;t<n;t++)if(i.names[t].test(e))return!0;return!1},i.humanize=n(82),Object.keys(e).forEach((function(t){i[t]=e[t]})),i.instances=[],i.names=[],i.skips=[],i.formatters={},i.selectColor=t,i.enable(i.load()),i}},function(e,t,n){var r=n(40);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=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){var n=1e3,r=60*n,i=60*r,o=24*i,a=7*o,c=365.25*o;function s(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}e.exports=function(e,t){t=t||{};var l=typeof e;if("string"===l&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var s=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*c;case"weeks":case"week":case"w":return s*a;case"days":case"day":case"d":return s*o;case"hours":case"hour":case"hrs":case"hr":case"h":return s*i;case"minutes":case"minute":case"mins":case"min":case"m":return s*r;case"seconds":case"second":case"secs":case"sec":case"s":return s*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===l&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=o)return s(e,t,o,"day");if(t>=i)return s(e,t,i,"hour");if(t>=r)return s(e,t,r,"minute");if(t>=n)return s(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=o)return Math.round(e/o)+"d";if(t>=i)return Math.round(e/i)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t,n){"use strict";var r=n(30),i=n(41),o=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},c=Array.isArray,s=Array.prototype.push,l=function(e,t){s.apply(e,c(t)?t:[t])},u=Date.prototype.toISOString,d=i.default,p={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:d,formatter:i.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},f=function e(t,n,i,o,a,s,u,d,f,m,h,g,b){var v,y=t;if("function"==typeof u?y=u(n,y):y instanceof Date?y=m(y):"comma"===i&&c(y)&&(y=r.maybeMap(y,(function(e){return e instanceof Date?m(e):e})).join(",")),null===y){if(o)return s&&!g?s(n,p.encoder,b,"key"):n;y=""}if("string"==typeof(v=y)||"number"==typeof v||"boolean"==typeof v||"symbol"==typeof v||"bigint"==typeof v||r.isBuffer(y))return s?[h(g?n:s(n,p.encoder,b,"key"))+"="+h(s(y,p.encoder,b,"value"))]:[h(n)+"="+h(String(y))];var _,E=[];if(void 0===y)return E;if(c(u))_=u;else{var w=Object.keys(y);_=d?w.sort(d):w}for(var S=0;S<_.length;++S){var O=_[S],x=y[O];if(!a||null!==x){var C=c(y)?"function"==typeof i?i(n,O):n:n+(f?"."+O:"["+O+"]");l(E,e(x,C,i,o,a,s,u,d,f,m,h,g,b))}}return E};e.exports=function(e,t){var n,r=e,s=function(e){if(!e)return p;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||p.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=i.default;if(void 0!==e.format){if(!o.call(i.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=i.formatters[n],a=p.filter;return("function"==typeof e.filter||c(e.filter))&&(a=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:p.addQueryPrefix,allowDots:void 0===e.allowDots?p.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:p.charsetSentinel,delimiter:void 0===e.delimiter?p.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:p.encode,encoder:"function"==typeof e.encoder?e.encoder:p.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:p.encodeValuesOnly,filter:a,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:p.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:p.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:p.strictNullHandling}}(t);"function"==typeof s.filter?r=(0,s.filter)("",r):c(s.filter)&&(n=s.filter);var u,d=[];if("object"!=typeof r||null===r)return"";u=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var m=a[u];n||(n=Object.keys(r)),s.sort&&n.sort(s.sort);for(var h=0;h<n.length;++h){var g=n[h];s.skipNulls&&null===r[g]||l(d,f(r[g],g,m,s.strictNullHandling,s.skipNulls,s.encode?s.encoder:null,s.filter,s.sort,s.allowDots,s.serializeDate,s.formatter,s.encodeValuesOnly,s.charset))}var b=d.join(s.delimiter),v=!0===s.addQueryPrefix?"?":"";return s.charsetSentinel&&("iso-8859-1"===s.charset?v+="utf8=%26%2310003%3B&":v+="utf8=%E2%9C%93&"),b.length>0?v+b:""}},function(e,t,n){"use strict";var r=n(30),i=Object.prototype.hasOwnProperty,o=Array.isArray,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},c=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},s=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},l=function(e,t,n,r){if(e){var o=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,c=n.depth>0&&/(\[[^[\]]*])/.exec(o),l=c?o.slice(0,c.index):o,u=[];if(l){if(!n.plainObjects&&i.call(Object.prototype,l)&&!n.allowPrototypes)return;u.push(l)}for(var d=0;n.depth>0&&null!==(c=a.exec(o))&&d<n.depth;){if(d+=1,!n.plainObjects&&i.call(Object.prototype,c[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(c[1])}return c&&u.push("["+o.slice(c.index)+"]"),function(e,t,n,r){for(var i=r?t:s(t,n),o=e.length-1;o>=0;--o){var a,c=e[o];if("[]"===c&&n.parseArrays)a=[].concat(i);else{a=n.plainObjects?Object.create(null):{};var l="["===c.charAt(0)&&"]"===c.charAt(c.length-1)?c.slice(1,-1):c,u=parseInt(l,10);n.parseArrays||""!==l?!isNaN(u)&&c!==l&&String(u)===l&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(a=[])[u]=i:a[l]=i:a={0:i}}i=a}return i}(u,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?a.charset:e.charset;return{allowDots:void 0===e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:a.comma,decoder:"function"==typeof e.decoder?e.decoder:a.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof e?function(e,t){var n,l={},u=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,p=u.split(t.delimiter,d),f=-1,m=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[n]?m="utf-8":"utf8=%26%2310003%3B"===p[n]&&(m="iso-8859-1"),f=n,n=p.length);for(n=0;n<p.length;++n)if(n!==f){var h,g,b=p[n],v=b.indexOf("]="),y=-1===v?b.indexOf("="):v+1;-1===y?(h=t.decoder(b,a.decoder,m,"key"),g=t.strictNullHandling?null:""):(h=t.decoder(b.slice(0,y),a.decoder,m,"key"),g=r.maybeMap(s(b.slice(y+1),t),(function(e){return t.decoder(e,a.decoder,m,"value")}))),g&&t.interpretNumericEntities&&"iso-8859-1"===m&&(g=c(g)),b.indexOf("[]=")>-1&&(g=o(g)?[g]:g),i.call(l,h)?l[h]=r.combine(l[h],g):l[h]=g}return l}(e,n):e,d=n.plainObjects?Object.create(null):{},p=Object.keys(u),f=0;f<p.length;++f){var m=p[f],h=l(m,u[m],n,"string"==typeof e);d=r.merge(d,h,n)}return r.compact(d)}},function(e,t,n){"use strict";var r=n(0),i="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,o=n(42),a=n(86),c=n(87),s="function"==typeof Symbol&&Symbol.iterator;function l(e,t){return e&&"object"==typeof e&&null!=e.key?(n=e.key,r={"=":"=0",":":"=2"},"$"+(""+n).replace(/[=:]/g,(function(e){return r[e]}))):t.toString(36);var n,r}function u(e,t,n,r){var o,c=typeof e;if("undefined"!==c&&"boolean"!==c||(e=null),null===e||"string"===c||"number"===c||"object"===c&&e.$$typeof===i)return n(r,e,""===t?"."+l(e,0):t),1;var d=0,p=""===t?".":t+":";if(Array.isArray(e))for(var f=0;f<e.length;f++)d+=u(o=e[f],p+l(o,f),n,r);else{var m=function(e){var t=e&&(s&&e[s]||e["@@iterator"]);if("function"==typeof t)return t}(e);if(m){0;for(var h,g=m.call(e),b=0;!(h=g.next()).done;)d+=u(o=h.value,p+l(o,b++),n,r)}else if("object"===c){0;var v=""+e;a(!1,"Objects are not valid as a React child (found: %s).%s","[object Object]"===v?"object with keys {"+Object.keys(e).join(", ")+"}":v,"")}}return d}var d=/\/+/g;function p(e){return(""+e).replace(d,"$&/")}var f,m,h=g,g=function(e){var t=this;if(t.instancePool.length){var n=t.instancePool.pop();return t.call(n,e),n}return new t(e)},b=function(e){var t=this;a(e instanceof t,"Trying to release an instance into a pool of a different type."),e.destructor(),t.instancePool.length<t.poolSize&&t.instancePool.push(e)};function v(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function y(e,t,n){var i,a,c=e.result,s=e.keyPrefix,l=e.func,u=e.context,d=l.call(u,t,e.count++);Array.isArray(d)?_(d,c,n,o.thatReturnsArgument):null!=d&&(r.isValidElement(d)&&(i=d,a=s+(!d.key||t&&t.key===d.key?"":p(d.key)+"/")+n,d=r.cloneElement(i,{key:a},void 0!==i.props?i.props.children:void 0)),c.push(d))}function _(e,t,n,r,i){var o="";null!=n&&(o=p(n)+"/");var a=v.getPooled(t,o,r,i);!function(e,t,n){null==e||u(e,"",t,n)}(e,y,a),v.release(a)}v.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},f=function(e,t,n,r){var i=this;if(i.instancePool.length){var o=i.instancePool.pop();return i.call(o,e,t,n,r),o}return new i(e,t,n,r)},(m=v).instancePool=[],m.getPooled=f||h,m.poolSize||(m.poolSize=10),m.release=b;e.exports=function(e){if("object"!=typeof e||!e||Array.isArray(e))return c(!1,"React.addons.createFragment only accepts a single object. Got: %s",e),e;if(r.isValidElement(e))return c(!1,"React.addons.createFragment does not accept a ReactElement without a wrapper object."),e;a(1!==e.nodeType,"React.addons.createFragment(...): Encountered an invalid child; DOM elements are not valid children of React components.");var t=[];for(var n in e)_(e[n],t,n,o.thatReturnsArgument);return t}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,i,o,a,c){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,o,a,c],u=0;(s=new Error(t.replace(/%s/g,(function(){return l[u++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},function(e,t,n){"use strict";var r=n(42);e.exports=r},function(e,t,n){"use strict";function r(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(r)}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t){e.exports=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}},function(e,t,n){var r=n(93),i=n(24);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?i(e):t}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t,n){"use strict";
 
 
 
 
 
 
 
13
  /** @license React v1.3.0
14
  * use-subscription.production.min.js
15
  *
@@ -17,12 +24,12 @@
17
  *
18
  * This source code is licensed under the MIT license found in the
19
  * LICENSE file in the root directory of this source tree.
20
- */Object.defineProperty(t,"__esModule",{value:!0});var r=n(95),i=n(0);t.useSubscription=function(e){var t=e.getCurrentValue,n=e.subscribe,o=i.useState((function(){return{getCurrentValue:t,subscribe:n,value:t()}}));e=o[0];var a=o[1];return o=e.value,e.getCurrentValue===t&&e.subscribe===n||(o=t(),a({getCurrentValue:t,subscribe:n,value:o})),i.useDebugValue(o),i.useEffect((function(){function e(){if(!i){var e=t();a((function(i){return i.getCurrentValue!==t||i.subscribe!==n||i.value===e?i:r({},i,{value:e})}))}}var i=!1,o=n(e);return e(),function(){i=!0,o()}}),[t,n]),o}},function(e,t,n){"use strict";
21
  /*
22
  object-assign
23
  (c) Sindre Sorhus
24
  @license MIT
25
- */var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(i){return!1}}()?Object.assign:function(e,t){for(var n,c,s=a(e),l=1;l<arguments.length;l++){for(var u in n=Object(arguments[l]))i.call(n,u)&&(s[u]=n[u]);if(r){c=r(n);for(var d=0;d<c.length;d++)o.call(n,c[d])&&(s[c[d]]=n[c[d]])}}return s}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";
26
  /** @license React v16.13.1
27
  * react-is.production.min.js
28
  *
@@ -30,26 +37,4 @@ object-assign
30
  *
31
  * This source code is licensed under the MIT license found in the
32
  * LICENSE file in the root directory of this source tree.
33
- */var r="function"==typeof Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,c=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,l=r?Symbol.for("react.provider"):60109,u=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,p=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,m=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,b=r?Symbol.for("react.lazy"):60116,v=r?Symbol.for("react.block"):60121,y=r?Symbol.for("react.fundamental"):60117,_=r?Symbol.for("react.responder"):60118,E=r?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case d:case p:case a:case s:case c:case m:return e;default:switch(e=e&&e.$$typeof){case u:case f:case b:case g:case l:return e;default:return t}}case o:return t}}}function S(e){return w(e)===p}t.AsyncMode=d,t.ConcurrentMode=p,t.ContextConsumer=u,t.ContextProvider=l,t.Element=i,t.ForwardRef=f,t.Fragment=a,t.Lazy=b,t.Memo=g,t.Portal=o,t.Profiler=s,t.StrictMode=c,t.Suspense=m,t.isAsyncMode=function(e){return S(e)||w(e)===d},t.isConcurrentMode=S,t.isContextConsumer=function(e){return w(e)===u},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===b},t.isMemo=function(e){return w(e)===g},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===s},t.isStrictMode=function(e){return w(e)===c},t.isSuspense=function(e){return w(e)===m},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===p||e===s||e===c||e===m||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===b||e.$$typeof===g||e.$$typeof===l||e.$$typeof===u||e.$$typeof===f||e.$$typeof===y||e.$$typeof===_||e.$$typeof===E||e.$$typeof===v)},t.typeOf=w},function(e,t,n){},function(e,t,n){"use strict";var r=n(110);function i(){}function o(){}o.resetWarningCache=i,e.exports=function(){function e(e,t,n,i,o,a){if(a!==r){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:i};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t){e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n.r(t);var r={};n.r(r),n.d(r,"receiveCategories",(function(){return ie})),n.d(r,"fetchDomainSuggestions",(function(){return oe})),n.d(r,"receiveDomainAvailability",(function(){return ae})),n.d(r,"receiveDomainSuggestionsSuccess",(function(){return ce})),n.d(r,"receiveDomainSuggestionsError",(function(){return se}));var i={};n.r(i),n.d(i,"isAvailable",(function(){return Vt})),n.d(i,"getCategories",(function(){return Ht})),n.d(i,"__internalGetDomainSuggestions",(function(){return qt}));var o={};n.r(o),n.d(o,"register",(function(){return Wt}));var a={};n.r(a),n.d(a,"setFeatures",(function(){return ln})),n.d(a,"setFeaturesByType",(function(){return un})),n.d(a,"setPlans",(function(){return dn})),n.d(a,"setPrices",(function(){return pn})),n.d(a,"resetPlan",(function(){return fn}));var c={};n.r(c),n.d(c,"getFeatures",(function(){return mn})),n.d(c,"getFeaturesByType",(function(){return hn})),n.d(c,"getPlanBySlug",(function(){return gn})),n.d(c,"getDefaultPaidPlan",(function(){return bn})),n.d(c,"getDefaultFreePlan",(function(){return vn})),n.d(c,"getSupportedPlans",(function(){return yn})),n.d(c,"getPlanByPath",(function(){return _n})),n.d(c,"getPlansDetails",(function(){return En})),n.d(c,"getPlansPaths",(function(){return wn})),n.d(c,"getPrices",(function(){return Sn})),n.d(c,"isPlanEcommerce",(function(){return On})),n.d(c,"isPlanFree",(function(){return xn}));var s={};n.r(s),n.d(s,"getPrices",(function(){return Cn})),n.d(s,"getPlansDetails",(function(){return jn}));var l={};n.r(l),n.d(l,"PLAN_FREE",(function(){return Kt})),n.d(l,"PLAN_PERSONAL",(function(){return Jt})),n.d(l,"PLAN_PREMIUM",(function(){return Xt})),n.d(l,"PLAN_BUSINESS",(function(){return Qt})),n.d(l,"PLAN_ECOMMERCE",(function(){return Zt})),n.d(l,"plansPaths",(function(){return rn})),n.d(l,"register",(function(){return Pn}));var u={};n.r(u),n.d(u,"getSite",(function(){return Dn})),n.d(u,"getSiteDomains",(function(){return Rn}));var d={};n.r(d),n.d(d,"getState",(function(){return Mn})),n.d(d,"getNewSite",(function(){return Bn})),n.d(d,"getNewSiteError",(function(){return Un})),n.d(d,"isFetchingSite",(function(){return zn})),n.d(d,"isNewSite",(function(){return Vn})),n.d(d,"getSite",(function(){return Hn})),n.d(d,"getSiteTitle",(function(){return qn})),n.d(d,"isLaunched",(function(){return $n})),n.d(d,"getSiteDomains",(function(){return Gn})),n.d(d,"getPrimarySiteDomain",(function(){return Wn})),n.d(d,"getSiteSubdomain",(function(){return Yn}));var p={};n.r(p),n.d(p,"Visibility",(function(){return Fn})),n.d(p,"register",(function(){return Jn}));var f={};n.r(f),n.d(f,"setSidebarFullscreen",(function(){return rr})),n.d(f,"unsetSidebarFullscreen",(function(){return ir})),n.d(f,"setStep",(function(){return or})),n.d(f,"setDomain",(function(){return ar})),n.d(f,"unsetDomain",(function(){return cr})),n.d(f,"confirmDomainSelection",(function(){return sr})),n.d(f,"setDomainSearch",(function(){return lr})),n.d(f,"setPlan",(function(){return ur})),n.d(f,"unsetPlan",(function(){return dr})),n.d(f,"updatePlan",(function(){return pr})),n.d(f,"launchSite",(function(){return fr})),n.d(f,"openSidebar",(function(){return mr})),n.d(f,"closeSidebar",(function(){return hr})),n.d(f,"openFocusedLaunch",(function(){return gr})),n.d(f,"closeFocusedLaunch",(function(){return br})),n.d(f,"enableExperimental",(function(){return vr})),n.d(f,"showSiteTitleStep",(function(){return yr}));var m={};n.r(m),n.d(m,"getLaunchSequence",(function(){return _r})),n.d(m,"getLaunchStep",(function(){return Er})),n.d(m,"getState",(function(){return wr})),n.d(m,"hasPaidDomain",(function(){return Sr})),n.d(m,"getSelectedDomain",(function(){return Or})),n.d(m,"getSelectedPlan",(function(){return xr})),n.d(m,"isStepCompleted",(function(){return Cr})),n.d(m,"isFlowCompleted",(function(){return kr})),n.d(m,"isFlowStarted",(function(){return jr})),n.d(m,"getFirstIncompleteStep",(function(){return Nr})),n.d(m,"isSiteTitleStepVisible",(function(){return Pr}));var h={};n.r(h),n.d(h,"STORE_KEY",(function(){return Qn})),n.d(h,"register",(function(){return Br}));var g={};n.r(g),n.d(g,"getAllFeatures",(function(){return Hr})),n.d(g,"getRecommendedPlanSlug",(function(){return qr}));var b={};n.r(b),n.d(b,"featuresList",(function(){return zr})),n.d(b,"register",(function(){return Gr}));n(69);var v="automattic/launch",y=n(1),_=n(0),E=n.n(_),w=n(3),S=n(21),O=n(33),x=_.createContext({siteId:0,locale:"en"}),C=n(22),k=n.n(C),j=n(2),N=n(5);function P(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){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}function T(e,t){if(null==e)return{};var n,r,i=A(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function L(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var I,D=function(e){var t=e.icon,n=e.size,r=void 0===n?24:n,i=T(e,["icon","size"]);return Object(y.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?L(Object(n),!0).forEach((function(t){P(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):L(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:r,height:r},i))},R=n(7),F=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(y.createElement)(R.Path,{d:"M20 10c0-5.51-4.49-10-10-10C4.48 0 0 4.49 0 10c0 5.52 4.48 10 10 10 5.51 0 10-4.48 10-10zM7.78 15.37L4.37 6.22c.55-.02 1.17-.08 1.17-.08.5-.06.44-1.13-.06-1.11 0 0-1.45.11-2.37.11-.18 0-.37 0-.58-.01C4.12 2.69 6.87 1.11 10 1.11c2.33 0 4.45.87 6.05 2.34-.68-.11-1.65.39-1.65 1.58 0 .74.45 1.36.9 2.1.35.61.55 1.36.55 2.46 0 1.49-1.4 5-1.4 5l-3.03-8.37c.54-.02.82-.17.82-.17.5-.05.44-1.25-.06-1.22 0 0-1.44.12-2.38.12-.87 0-2.33-.12-2.33-.12-.5-.03-.56 1.2-.06 1.22l.92.08 1.26 3.41zM17.41 10c.24-.64.74-1.87.43-4.25.7 1.29 1.05 2.71 1.05 4.25 0 3.29-1.73 6.24-4.4 7.78.97-2.59 1.94-5.2 2.92-7.78zM6.1 18.09C3.12 16.65 1.11 13.53 1.11 10c0-1.3.23-2.48.72-3.59C3.25 10.3 4.67 14.2 6.1 18.09zm4.03-6.63l2.58 6.98c-.86.29-1.76.45-2.71.45-.79 0-1.57-.11-2.29-.33.81-2.38 1.62-4.74 2.42-7.1z"})),M=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(y.createElement)(R.Path,{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"})),B=n(6),U=n.n(B),z="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(I||(I={}));
34
- /*! *****************************************************************************
35
- Copyright (c) Microsoft Corporation. All rights reserved.
36
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
37
- this file except in compliance with the License. You may obtain a copy of the
38
- License at http://www.apache.org/licenses/LICENSE-2.0
39
-
40
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
41
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
42
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
43
- MERCHANTABLITY OR NON-INFRINGEMENT.
44
-
45
- See the Apache Version 2.0 License for specific language governing permissions
46
- and limitations under the License.
47
- ***************************************************************************** */
48
- var V=function(e,t){return(V=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};var H=function(){return(H=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)};function q(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n}function $(e,t,n,r){return new(n||(n=Promise))((function(i,o){function a(e){try{s(r.next(e))}catch(t){o(t)}}function c(e){try{s(r.throw(e))}catch(t){o(t)}}function s(e){e.done?i(e.value):new n((function(t){t(e.value)})).then(a,c)}s((r=r.apply(e,t||[])).next())}))}function G(e,t){var n,r,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function c(o){return function(c){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(i=2&o[0]?r.return:o[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,r=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]<i[3])){a.label=o[1];break}if(6===o[0]&&a.label<i[1]){a.label=i[1],i=o;break}if(i&&a.label<i[2]){a.label=i[2],a.ops.push(o);break}i[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(c){o=[6,c],r=0}finally{n=i=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,c])}}}function W(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(c){i={error:c}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a}function Y(){for(var e=0,t=0,n=arguments.length;t<n;t++)e+=arguments[t].length;var r=Array(e),i=0;for(t=0;t<n;t++)for(var o=arguments[t],a=0,c=o.length;a<c;a++,i++)r[i]=o[a];return r}function K(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}var J,X,Q,Z,ee=n(50),te=n.n(ee).a,ne={state:I.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},re=Object(w.combineReducers)({categories:function(e,t){return void 0===e&&(e=[]),"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(e,t){var n;return void 0===e&&(e=ne),"FETCH_DOMAIN_SUGGESTIONS"===t.type?H(H({},e),{state:I.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?H(H({},e),{state:I.Success,data:H(H({},e.data),(n={},n[te(t.queryObject)]=t.suggestions,n)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?H(H({},e),{state:I.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(e,t){var n;return void 0===e&&(e={}),"RECEIVE_DOMAIN_AVAILABILITY"===t.type?H(H({},e),((n={})[t.domainName]=t.availability,n)):e}}),ie=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},oe=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},ae=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},ce=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},se=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}},le=n(23),ue=n(32),de=n.n(ue),pe=n(9),fe=n.n(pe),me=n(8),he=n.n(me),ge=n(51),be=n.n(ge);J={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},X=["(","?"],Q={")":["("],":":["?","?:"]},Z=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var ve={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function ye(e){var t=function(e){for(var t,n,r,i,o=[],a=[];t=e.match(Z);){for(n=t[0],(r=e.substr(0,t.index).trim())&&o.push(r);i=a.pop();){if(Q[n]){if(Q[n][0]===i){n=Q[n][1]||n;break}}else if(X.indexOf(i)>=0||J[i]<J[n]){a.push(i);break}o.push(i)}Q[n]||a.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&o.push(e),o.concat(a.reverse())}(e);return function(e){return function(e,t){var n,r,i,o,a,c,s=[];for(n=0;n<e.length;n++){if(a=e[n],o=ve[a]){for(r=o.length,i=Array(r);r--;)i[r]=s.pop();try{c=o.apply(null,i)}catch(l){return l}}else c=t.hasOwnProperty(a)?t[a]:+a;s.push(c)}return s[0]}(t,e)}}var _e={contextDelimiter:"",onMissingKey:null};function Ee(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},_e)this.options[n]=void 0!==t&&n in t?t[n]:_e[n]}Ee.prototype.getPluralForm=function(e,t){var n,r,i,o,a=this.pluralForms[e];return a||("function"!=typeof(i=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=ye(r),i=function(e){return+o({n:e})}),a=this.pluralForms[e]=i),a(t)},Ee.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,c;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(c=this.data[e][a])&&c[o]?c[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)};var we=n(52),Se=n.n(we),Oe=n(53),xe=n.n(Oe),Ce=n(17),ke=/%(((\d+)\$)|(\(([$_a-zA-Z][$_a-zA-Z0-9]*)\)))?[ +0#-]*\d*(\.(\d+|\*))?(ll|[lhqL])?([cduxXefgsp%])/g;function je(e,t){var n;if(!Array.isArray(t))for(t=new Array(arguments.length-1),n=1;n<arguments.length;n++)t[n-1]=arguments[n];return n=1,e.replace(ke,(function(){var e,r,i,o,a;return e=arguments[3],r=arguments[5],"%"===(o=arguments[9])?"%":("*"===(i=arguments[7])&&(i=t[n-1],n++),void 0!==r?t[0]&&"object"==typeof t[0]&&t[0].hasOwnProperty(r)&&(a=t[0][r]):(void 0===e&&(e=n),n++,a=t[e-1]),"f"===o?a=parseFloat(a)||0:"d"===o&&(a=parseInt(a)||0),void 0!==i&&("f"===o?a=a.toFixed(i):"s"===o&&(a=a.substr(0,i))),null!=a?a:"")}))}
49
- /*
50
- * Exposes number format capability
51
- *
52
- * @copyright Copyright (c) 2013 Kevin van Zonneveld (http://kvz.io) and Contributors (http://phpjs.org/authors).
53
- * @license See CREDITS.md
54
- * @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
55
- */function Ne(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,c=void 0===n?".":n,s="";return(s=(o?function(e,t){var n=Math.pow(10,t);return""+(Math.round(e*n)/n).toFixed(t)}(i,o):""+Math.round(i)).split("."))[0].length>3&&(s[0]=s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,a)),(s[1]||"").length<o&&(s[1]=s[1]||"",s[1]+=new Array(o-s[1].length+1).join("0")),s.join(c)}var Pe=he()("i18n-calypso"),Ae="number_format_decimals",Te="number_format_thousands_sep",Le="messages",Ie=[function(e){return e}],De={};function Re(){ze.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function Fe(e){return Array.prototype.slice.call(e)}function Me(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&Re("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",Fe(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&Re("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",Fe(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function Be(e,t){return e.dcnpgettext(Le,t.context,t.original,t.plural,t.count)}function Ue(e,t){for(var n=Ie.length-1;n>=0;n--){var r=Ie[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return Be(e.state.tannin,r)}return null}function ze(){if(!(this instanceof ze))return new ze;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:Se()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new Ce.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}ze.throwErrors=!1,ze.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},ze.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},ze.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},ze.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return Ne(e,n,r,i)},ze.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},ze.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var i=e[""]["key-hash"],o=function(e,t){var n=!1===t?"":String(t);if(void 0!==De[n+e])return De[n+e];var r=xe()().update(e).digest("hex");return De[n+e]=t?r.substr(0,t):r},a=function(e){return function(t){return t.context?(t.original=o(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=o(t.original,e),t}};if("sha1"===i.substr(0,4))if(4===i.length)Ie.push(a(!1));else{var c=i.substr(5).indexOf("-");if(c<0){var s=Number(i.substr(5));Ie.push(a(s))}else for(var l=Number(i.substr(5,c)),u=Number(i.substr(6+c)),d=l;d<=u;d++)Ie.push(a(d))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new Ee(fe()({},Le,this.state.locale)),this.state.numberFormatSettings.decimal_point=Be(this.state.tannin,Me([Ae])),this.state.numberFormatSettings.thousands_sep=Be(this.state.tannin,Me([Te])),this.state.numberFormatSettings.decimal_point===Ae&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===Te&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},ze.prototype.getLocale=function(){return this.state.locale},ze.prototype.getLocaleSlug=function(){return this.state.localeSlug},ze.prototype.getLocaleVariant=function(){return this.state.localeVariant},ze.prototype.isRtl=function(){return"rtl"===this.state.textDirection},ze.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},ze.prototype.hasTranslation=function(){return!!Ue(this,Me(arguments))},ze.prototype.translate=function(){var e=Me(arguments),t=Ue(this,e);if(t||(t=Be(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=je.apply(void 0,de()(n))}catch(i){if(!window||!window.console)return;var r=this.throwErrors?"error":"warn";"string"!=typeof i?window.console[r](i):window.console[r]("i18n sprintf error:",n)}}return e.components&&(t=be()({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},ze.prototype.reRenderTranslations=function(){Pe("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},ze.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},ze.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)};var Ve=ze,He=n(34),qe=n.n(He),$e=n(54),Ge=n.n($e),We=n(55),Ye=n.n(We),Ke=n(24),Je=n.n(Ke),Xe=n(56),Qe=n.n(Xe),Ze=n(57),et=n.n(Ze),tt=n(25),nt=n.n(tt),rt=n(58),it=n(12);var ot,at,ct=new Ve,st=(ct.numberFormat.bind(ct),ct.translate.bind(ct)),lt=(ct.configure.bind(ct),ct.setLocale.bind(ct),ct.getLocale.bind(ct),ct.getLocaleSlug.bind(ct),ct.getLocaleVariant.bind(ct),ct.isRtl.bind(ct),ct.addTranslations.bind(ct),ct.reRenderTranslations.bind(ct),ct.registerComponentUpdateHook.bind(ct),ct.registerTranslateHook.bind(ct),ct.state,ct.stateObserver,ct.on.bind(ct),ct.off.bind(ct),ct.emit.bind(ct),at={numberFormat:(ot=ct).numberFormat.bind(ot),translate:ot.translate.bind(ot)},function(e){function t(){var t=e.translate.bind(e);return Object.defineProperty(t,"localeSlug",{get:e.getLocaleSlug.bind(e)}),t}}(ct),function(e){var t={getCurrentValue:function(){return e.isRtl()},subscribe:function(t){return e.on("change",t),function(){return e.off("change",t)}}};function n(){return Object(rt.useSubscription)(t)}var r=Object(it.createHigherOrderComponent)((function(e){return Object(_.forwardRef)((function(t,r){var i=n();return Object(y.createElement)(e,nt()({},t,{isRtl:i,ref:r}))}))}),"WithRTL");return{useRtl:n,withRtl:r}}(ct)),ut=(lt.useRtl,lt.withRtl,"undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)),dt=new Uint8Array(16);function pt(){if(!ut)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return ut(dt)}for(var ft=[],mt=0;mt<256;++mt)ft[mt]=(mt+256).toString(16).substr(1);var ht=function(e,t){var n=t||0,r=ft;return[r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],"-",r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]],r[e[n++]]].join("")};var gt,bt=function(e,t,n){var r=t&&n||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var i=(e=e||{}).random||(e.rng||pt)();if(i[6]=15&i[6]|64,i[8]=63&i[8]|128,t)for(var o=0;o<16;++o)t[r+o]=i[o];return t||ht(i)},vt=n(49),yt=n.n(vt),_t=n(27),Et=n.n(_t),wt=he()("wpcom-proxy-request"),St="https://public-api.wordpress.com",Ot=window.location.protocol+"//"+window.location.host,xt=function(){var e=!1;try{window.postMessage({toString:function(){e=!0}},"*")}catch(t){}return e}(),Ct=function(){try{return new window.File(["a"],"test.jpg",{type:"image/jpeg"}),!0}catch(e){return!1}}(),kt=null,jt=!1,Nt={},Pt=!!window.ProgressEvent&&!!window.FormData;wt('using "origin": %o',Ot);var At=function(e,t){var n=Object.assign({},e);wt("request(%o)",n),kt||Rt();var r=bt();n.callback=r,n.supports_args=!0,n.supports_error_obj=!0,n.supports_progress=Pt,n.method=String(n.method||"GET").toUpperCase(),wt("params object: %o",n);var i=new window.XMLHttpRequest;if(i.params=n,Nt[r]=i,"function"==typeof t){var o=!1,a=function(e){if(!o){o=!0;var n=e.error||e.err||e;wt("error: ",n),wt("headers: ",e.headers),t(n,null,e.headers)}};i.addEventListener("load",(function(e){if(!o){o=!0;var n=e.response||i.response;wt("body: ",n),wt("headers: ",e.headers),t(null,n,e.headers)}})),i.addEventListener("abort",a),i.addEventListener("error",a)}return jt?Lt(n):(wt("buffering API request since proxying <iframe> is not yet loaded"),gt.push(n)),i},Tt=function(e,t){return"function"==typeof t?At(e,t):new Promise((function(t,n){At(e,(function(e,r){e?n(e):t(r)}))}))};function Lt(e){wt("sending API request to proxy <iframe> %o",e),e.formData&&function(e){if(!window.chrome||!Ct)return;for(var t=0;t<e.length;t++){var n=Dt(e[t][1]);n&&(e[t][1]=new window.File([n],n.name,{type:n.type}))}}(e.formData),kt.contentWindow.postMessage(xt?JSON.stringify(e):e,St)}function It(e){return e&&"[object File]"===Object.prototype.toString.call(e)}function Dt(e){return It(e)?e:"object"==typeof e&&It(e.fileContents)?e.fileContents:null}function Rt(){wt("install()"),kt&&(wt("uninstall()"),window.removeEventListener("message",Ft),document.body.removeChild(kt),jt=!1,kt=null),gt=[],window.addEventListener("message",Ft),(kt=document.createElement("iframe")).src=St+"/wp-admin/rest-proxy/?v=2.0#"+Ot,kt.style.display="none",document.body.appendChild(kt)}function Ft(e){if(wt("onmessage"),e.origin===St)if(e.source===kt.contentWindow){var t=e.data;if(!t)return wt("no `data`, bailing");if("ready"!==t){if(xt&&"string"==typeof t&&(t=JSON.parse(t)),t.upload||t.download)return function(e){wt('got "progress" event: %o',e);var t=Nt[e.callbackId];if(t){var n=new Et.a("progress",e);(e.upload?t.upload:t).dispatchEvent(n)}}(t);if(!t.length)return wt("`e.data` doesn't appear to be an Array, bailing...");var n=t[t.length-1];if(!(n in Nt))return wt("bailing, no matching request with callback: %o",n);var r=Nt[n],i=r.params,o=t[0],a=t[1],c=t[2];if(207===a||delete Nt[n],i.metaAPI?a="metaAPIupdated"===o?200:500:wt("got %o status code for URL: %o",a,i.path),"object"==typeof c&&(c.status=a),a&&2===Math.floor(a/100))!function(e,t,n){var r=new Et.a("load");r.data=r.body=r.response=t,r.headers=n,e.dispatchEvent(r)}(r,o,c);else!function(e,t,n){var r=new Et.a("error");r.error=r.err=t,r.headers=n,e.dispatchEvent(r)}(r,yt()(i,a,o),c)}else!function(){if(wt('proxy <iframe> "load" event'),jt=!0,gt){for(var e=0;e<gt.length;e++)Lt(gt[e]);gt=null}}()}else wt("ignoring message... iframe elements do not match");else wt("ignoring message... %o !== %o",e.origin,St)}var Mt=Tt,Bt=function(e){return{type:"WPCOM_REQUEST",request:e}},Ut=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},zt={WPCOM_REQUEST:function(e){var t=e.request;return Mt(t)},FETCH_AND_PARSE:function(e){var t=e.resource,n=e.options;return $(void 0,void 0,void 0,(function(){var e,r;return G(this,(function(i){switch(i.label){case 0:return[4,window.fetch(t,n)];case 1:return e=i.sent(),r={ok:e.ok},[4,e.json()];case 2:return[2,(r.body=i.sent(),r)]}}))}))},RELOAD_PROXY:function(){Rt()},REQUEST_ALL_BLOGS_ACCESS:function(){return Tt({metaAPI:{accessAllUsersBlogs:!0}})},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}},Vt=function(e){var t,n;return G(this,(function(r){switch(r.label){case 0:t="https://public-api.wordpress.com/rest/v1.3/domains/"+encodeURIComponent(e)+"/is-available?is_cart_pre_check=true",r.label=1;case 1:return r.trys.push([1,3,,4]),[4,Ut(t)];case 2:return n=r.sent().body,[2,ae(e,n)];case 3:return r.sent(),[2,ae(e,{domain_name:e,mappable:"unknown",status:"unknown",supports_privacy:!1})];case 4:return[2]}}))};function Ht(){var e;return G(this,(function(t){switch(t.label){case 0:return[4,Ut("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories")];case 1:return e=t.sent(),[2,ie(e.body)]}}))}function qt(e){var t,n;return G(this,(function(r){switch(r.label){case 0:return e.query?[4,oe()]:[2,se("Empty query")];case 1:r.sent(),r.label=2;case 2:return r.trys.push([2,4,,5]),[4,Bt({apiVersion:"1.1",path:"/domains/suggestions",query:Object(le.stringify)(e)})];case 3:return t=r.sent(),[3,5];case 4:return n=r.sent(),[2,se(n.message||st("Error while fetching server response"))];case 5:return t&&""!==t?[2,ce(e,t)]:[2,se(st("Invalid response from the server"))]}}))}var $t=function(e){function t(t,n){return H(H({include_wordpressdotcom:n.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:e},n),{query:t.trim().toLocaleLowerCase()})}return{getCategories:function(e){return function(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(W(arguments[t]));return e}(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1})),e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)})))},getDomainSuggestions:function(e,n,r){void 0===r&&(r={});var i=t(n,r);return Object(w.select)(z).__internalGetDomainSuggestions(i)},getDomainState:function(e){return e.domainSuggestions.state},getDomainErrorMessage:function(e){return e.domainSuggestions.errorMessage},getDomainSuggestionVendor:function(){return e},isLoadingDomainSuggestions:function(e,n,r){void 0===r&&(r={});var i=t(n,r);return Object(w.select)("core/data").isResolving(z,"__internalGetDomainSuggestions",[i])},__internalGetDomainSuggestions:function(e,t){return e.domainSuggestions.data[te(t)]},isAvailable:function(e,t){return e.availability[t]},getDomainAvailabilities:function(e){return e.availability}}},Gt=!1;function Wt(e){var t=e.vendor;return Gt||(Gt=!0,Object(w.registerStore)(z,{actions:r,controls:zt,reducer:re,resolvers:i,selectors:$t(t)})),z}var Yt,Kt="free_plan",Jt="personal-bundle",Xt="value_bundle",Qt="business-bundle",Zt="ecommerce-bundle",en="automattic/onboard/plans",tn=Xt,nn=[Jt,Xt,Qt,Zt],rn=["beginner","personal","premium","business","ecommerce"],on=[Kt,Jt,Xt,Qt,Zt],an={USD:{format:"SYMBOL_THEN_AMOUNT",symbol:"$",decimal:2},GBP:{format:"SYMBOL_THEN_AMOUNT",symbol:"£",decimal:2},JPY:{format:"SYMBOL_THEN_AMOUNT",symbol:"¥",decimal:0},BRL:{format:"SYMBOL_THEN_AMOUNT",symbol:"R$",decimal:2},EUR:{format:"SYMBOL_THEN_AMOUNT",symbol:"€",decimal:2},NZD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NZ$",decimal:2},AUD:{format:"SYMBOL_THEN_AMOUNT",symbol:"A$",decimal:2},CAD:{format:"SYMBOL_THEN_AMOUNT",symbol:"C$",decimal:2},IDR:{format:"AMOUNT_THEN_SYMBOL",symbol:"Rp",decimal:0},INR:{format:"AMOUNT_THEN_SYMBOL",symbol:"₹",decimal:0},ILS:{format:"AMOUNT_THEN_SYMBOL",symbol:"₪",decimal:2},RUB:{format:"AMOUNT_THEN_SYMBOL",symbol:"₽",decimal:2},MXN:{format:"SYMBOL_THEN_AMOUNT",symbol:"MX$",decimal:2},SEK:{format:"AMOUNT_THEN_SYMBOL",symbol:"SEK",decimal:2},HUF:{format:"AMOUNT_THEN_SYMBOL",symbol:"Ft",decimal:0},CHF:{format:"AMOUNT_THEN_SYMBOL",symbol:"CHF",decimal:2},CZK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kč",decimal:2},DKK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Dkr",decimal:2},HKD:{format:"AMOUNT_THEN_SYMBOL",symbol:"HK$",decimal:2},NOK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kr",decimal:2},PHP:{format:"AMOUNT_THEN_SYMBOL",symbol:"₱",decimal:2},PLN:{format:"AMOUNT_THEN_SYMBOL",symbol:"PLN",decimal:2},SGD:{format:"SYMBOL_THEN_AMOUNT",symbol:"S$",decimal:2},TWD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NT$",decimal:0},THB:{format:"SYMBOL_THEN_AMOUNT",symbol:"฿",decimal:2},TRY:{format:"AMOUNT_THEN_SYMBOL",symbol:"TL",decimal:2}},cn=((Yt={})[Kt]="",Yt[Jt]="",Yt[Xt]="",Yt[Qt]="",Yt[Zt]="",Yt),sn=Object(w.combineReducers)({features:function(e,t){switch(void 0===e&&(e={}),t.type){case"SET_FEATURES":return t.features;default:return e}},featuresByType:function(e,t){switch(void 0===e&&(e=[]),t.type){case"SET_FEATURES_BY_TYPE":return t.featuresByType;default:return e}},plans:function(e,t){switch(void 0===e&&(e={}),t.type){case"SET_PLANS":return t.plans;default:return e}},prices:function(e,t){switch(void 0===e&&(e=cn),t.type){case"SET_PRICES":return t.prices;default:return e}},supportedPlanSlugs:function(e,t){return void 0===e&&(e=on),t.type,e}}),ln=function(e){return{type:"SET_FEATURES",features:e}},un=function(e){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e}},dn=function(e){return{type:"SET_PLANS",plans:e}},pn=function(e){return{type:"SET_PRICES",prices:e}},fn=function(){return{type:"RESET_PLAN"}},mn=function(e){return e.features},hn=function(e){return e.featuresByType},gn=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:void 0},bn=function(){var e;return null===(e=Object(w.select)(en).getPlansDetails(""))||void 0===e?void 0:e.plans[tn]},vn=function(){var e;return null===(e=Object(w.select)(en).getPlansDetails(""))||void 0===e?void 0:e.plans[Kt]},yn=function(e){var t=[];return e.supportedPlanSlugs.forEach((function(n){n in e.plans&&t.push(e.plans[n])})),t},_n=function(e,t){return t?yn(e).find((function(e){return(null==e?void 0:e.pathSlug)===t})):void 0},En=function(e,t){return e},wn=function(e){return yn(e).map((function(e){return null==e?void 0:e.pathSlug}))},Sn=function(e,t){return e.prices},On=function(e,t){return t===Zt},xn=function(e,t){return t===Kt};function Cn(e){var t,n,r;return void 0===e&&(e="en"),G(this,(function(i){switch(i.label){case 0:return[4,Bt({path:"/plans",query:Object(le.stringify)({locale:e}),apiVersion:"1.5"})];case 1:return t=i.sent(),n=t.filter((function(e){return-1!==on.indexOf(e.product_slug)})),r=n.reduce((function(e,t){return e[t.product_slug]=function(e){var t=an[e.currency_code],n=e.raw_price/12;return Number.isInteger(n)||(n=n.toFixed(t.decimal)),"AMOUNT_THEN_SYMBOL"===t.format?""+n+t.symbol:""+t.symbol+n}(t),e}),{}),[4,pn(r)];case 2:return i.sent(),[2]}}))}var kn={Free:Kt,Personal:Jt,Premium:Xt,Business:Qt,eCommerce:Zt};function jn(e){var t,n,r;return void 0===e&&(e="en"),G(this,(function(i){switch(i.label){case 0:return i.trys.push([0,5,,6]),[4,Ut("https://public-api.wordpress.com/wpcom/v2/plans/details?locale="+encodeURIComponent(e),{mode:"cors",credentials:"omit"})];case 1:return t=i.sent().body,n={},r={},t.features.forEach((function(e){var t;r[e.id]={id:e.id,name:e.name,description:e.description,type:null!==(t=e.type)&&void 0!==t?t:"checkbox"}})),t.plans.forEach((function(e){var t,r={title:e.short_name,description:e.tagline,productId:e.products[0].plan_id,storeSlug:kn[e.nonlocalized_short_name],features:e.highlighted_features,pathSlug:null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase(),featuresSlugs:e.features.reduce((function(e,t){var n;return H(H({},e),((n={})[t]=!0,n))}),{}),storage:e.storage};"Free"===e.nonlocalized_short_name&&(r.isFree=!0),"Premium"===e.nonlocalized_short_name&&(r.isPopular=!0),n[kn[e.nonlocalized_short_name]]=r})),[4,dn(n)];case 2:return i.sent(),[4,ln(r)];case 3:return i.sent(),[4,un(t.features_by_type)];case 4:return i.sent(),[3,6];case 5:return i.sent(),[2];case 6:return[2]}}))}var Nn=!1;function Pn(){return Nn||(Nn=!0,Object(w.registerStore)(en,{resolvers:s,actions:a,controls:zt,reducer:sn,selectors:c})),en}var An="automattic/site",Tn=Object(w.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(e,t){switch(void 0===e&&(e=!1),t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),Ln=Object(w.combineReducers)({newSite:Tn,sites:function(e,t){var n,r;if(void 0===e&&(e={}),"RECEIVE_SITE"===t.type)return H(H({},e),((n={})[t.siteId]=t.response,n));if("RECEIVE_SITE_FAILED"===t.type){var i=e,o=t.siteId,a=(i[o],q(i,["symbol"==typeof o?o:o+""]));return H({},a)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?H(H({},e),((r={})[t.siteId]=H(H({},e[t.siteId]),{name:t.title}),r)):e},launchStatus:function(e,t){var n;return void 0===e&&(e={}),"LAUNCHED_SITE"===t.type?H(H({},e),((n={})[t.siteId]=!0,n)):e},sitesDomains:function(e,t){var n;return void 0===e&&(e={}),"RECEIVE_SITE_DOMAINS"===t.type?H(H({},e),((n={})[t.siteId]=t.domains,n)):e}});function In(e){var t=function(){return{type:"FETCH_NEW_SITE"}},n=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},r=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};var i=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},o=function(e){return{type:"LAUNCHED_SITE",siteId:e}};return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:function(e,t){return G(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,4]),[4,Bt({path:"/sites/"+encodeURIComponent(e)+"/settings",apiVersion:"1.4",body:{blogname:t},method:"POST"})];case 1:return n.sent(),[4,i(e,t)];case 2:return n.sent(),[3,4];case 3:return n.sent(),[3,4];case 4:return[2]}}))},receiveSiteTitle:i,fetchNewSite:t,receiveNewSite:n,receiveNewSiteFailed:r,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:function(t){var i,o,a,c,s,l;return G(this,(function(u){switch(u.label){case 0:return[4,{type:"FETCH_NEW_SITE"}];case 1:u.sent(),u.label=2;case 2:return u.trys.push([2,5,,7]),i=t.authToken,o=q(t,["authToken"]),a={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},c=H(H(H({},a),o),{validate:!1}),[4,Bt({path:"/sites/new",apiVersion:"1.1",method:"post",body:c,token:i})];case 3:return s=u.sent(),[4,n(s)];case 4:return u.sent(),[2,!0];case 5:return l=u.sent(),[4,r(l)];case 6:return u.sent(),[2,!1];case 7:return[2]}}))},receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:function(e){return G(this,(function(t){switch(t.label){case 0:return[4,Bt({path:"/sites/"+e+"/launch",apiVersion:"1.1",method:"post"})];case 1:return t.sent(),[4,o(e)];case 2:return t.sent(),[2,!0]}}))},launchedSite:o,getCart:function(e){return G(this,(function(t){switch(t.label){case 0:return[4,Bt({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"})];case 1:return[2,t.sent()]}}))},setCart:function(e,t){return G(this,(function(n){switch(n.label){case 0:return[4,Bt({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t})];case 1:return[2,n.sent()]}}))}}}function Dn(e){var t;return G(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,5]),[4,Bt({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"})];case 1:return t=n.sent(),[4,Object(w.dispatch)(An).receiveSite(e,t)];case 2:return n.sent(),[3,5];case 3:return n.sent(),[4,Object(w.dispatch)(An).receiveSiteFailed(e,void 0)];case 4:return n.sent(),[3,5];case 5:return[2]}}))}function Rn(e){var t;return G(this,(function(n){switch(n.label){case 0:return n.trys.push([0,3,,4]),[4,Bt({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"})];case 1:return t=n.sent(),[4,Object(w.dispatch)(An).receiveSiteDomains(e,null==t?void 0:t.domains)];case 2:return n.sent(),[3,4];case 3:return n.sent(),[3,4];case 4:return[2]}}))}var Fn,Mn=function(e){return e},Bn=function(e){return e.newSite.data},Un=function(e){return e.newSite.error},zn=function(e){return e.newSite.isFetching},Vn=function(e){return!!e.newSite.data},Hn=function(e,t){return e.sites[t]},qn=function(e,t){var n;return null===(n=Object(w.select)(An).getSite(t))||void 0===n?void 0:n.name},$n=function(e,t){return e.launchStatus[t]},Gn=function(e,t){return e.sitesDomains[t]},Wn=function(e,t){var n;return null===(n=Object(w.select)(An).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},Yn=function(e,t){var n;return null===(n=Object(w.select)(An).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))};!function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(Fn||(Fn={}));var Kn=!1;function Jn(e){return Kn||(Kn=!0,Object(w.registerStore)(An,{actions:In(e),controls:zt,reducer:Ln,resolvers:u,selectors:d})),An}var Xn=n(14),Qn="automattic/launch",Zn=window._currentSiteId,er={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},tr=[er.Name,er.Domain,er.Plan,er.Final],nr=Object(w.combineReducers)({step:function(e,t){return void 0===e&&(e=er.Name),"SET_STEP"===t.type?t.step:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(e,t){return void 0===e&&(e=!1),"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(e,t){return void 0===e&&(e=""),"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},plan:function(e,t){return"SET_PLAN"===t.type?t.plan:"UNSET_PLAN"!==t.type?e:void 0},isSidebarOpen:function(e,t){return void 0===e&&(e=!1),"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(e,t){return void 0===e&&(e=!1),"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isExperimental:function(e,t){return void 0===e&&(e=!1),"ENABLE_EXPERIMENTAL"===t.type||e},isFocusedLaunchOpen:function(e,t){return void 0===e&&(e=!1),"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(e,t){return void 0===e&&(e=!1),"SHOW_SITE_TITLE_STEP"===t.type||e}}),rr=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},ir=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},or=function(e){return{type:"SET_STEP",step:e}},ar=function(e){return{type:"SET_DOMAIN",domain:e}},cr=function(){return{type:"UNSET_DOMAIN"}},sr=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},lr=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},ur=function(e){return{type:"SET_PLAN",plan:e}},dr=function(){return{type:"UNSET_PLAN"}};function pr(e){var t;return G(this,(function(n){switch(n.label){case 0:return[4,Object(Xn.select)("automattic/onboard/plans","getPlanBySlug",e)];case 1:return t=n.sent(),[4,ur(t)];case 2:return n.sent(),[2]}}))}function fr(){return G(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,Object(Xn.dispatch)("automattic/site","launchSite",Zn)];case 1:return[2,e.sent()];case 2:return e.sent(),[3,3];case 3:return[2]}}))}var mr=function(){return{type:"OPEN_SIDEBAR"}},hr=function(){return{type:"CLOSE_SIDEBAR"}},gr=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},br=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},vr=function(){return{type:"ENABLE_EXPERIMENTAL"}},yr=function(){return{type:"SHOW_SITE_TITLE_STEP"}},_r=function(){return tr},Er=function(){return er},wr=function(e){return e},Sr=function(e){return!!e.domain&&!e.domain.is_free},Or=function(e){return e.domain},xr=function(e){return e.plan},Cr=function(e,t){if(t===er.Plan)return!!xr(e);if(t===er.Name){var n=Object(w.select)("core").getEntityRecord("root","site",void 0);return!!(null==n?void 0:n.title)}return t===er.Domain&&(!!Or(e)||e.confirmedDomainSelection)},kr=function(e){return tr.slice(0,tr.length-1).every((function(t){return Cr(e,t)}))},jr=function(e){return tr.some((function(t){return Cr(e,t)}))},Nr=function(e){return tr.find((function(t){return!Cr(e,t)}))},Pr=function(e){return e.isSiteTitleStepVisible};var Ar,Tr,Lr,Ir,Dr,Rr,Fr=(Tr=Ar="WP_LAUNCH",Lr=Ar+"_TS",Ir={},Dr={getItem:function(e){return Ir.hasOwnProperty(e)?Ir[e]:null},setItem:function(e,t){Ir[e]=String(t)},removeItem:function(e){delete Ir[e]}},Rr=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:Dr,{storageKey:Tr,storage:{getItem:function(e){var t=Rr.getItem(Lr);return t&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(t)&&!new URLSearchParams(window.location.search).has("fresh")?Rr.getItem(e):(Rr.removeItem(Tr),Rr.removeItem(Lr),null)},setItem:function(e,t){Rr.setItem(Lr,JSON.stringify(Date.now())),Rr.setItem(e,t)}}});Object(w.use)(w.plugins.persistence,Fr);var Mr=!1;function Br(){return Mr||(Mr=!0,Object(w.registerStore)(Qn,{actions:f,controls:Xn.controls,reducer:nr,selectors:m,persist:["domain","domainSearch","plan","confirmedDomainSelection","isExperimental","isSiteTitleStepVisible"]})),Qn}var Ur="automattic/wpcom-features",zr={domain:{id:"domain",minSupportedPlan:Jt},store:{id:"store",minSupportedPlan:Zt},seo:{id:"seo",minSupportedPlan:Qt},plugins:{id:"plugins",minSupportedPlan:Qt},"ad-free":{id:"ad-free",minSupportedPlan:Jt},"image-storage":{id:"image-storage",minSupportedPlan:Xt},"video-storage":{id:"video-storage",minSupportedPlan:Xt},support:{id:"support",minSupportedPlan:Qt}},Vr=function(e){return void 0===e&&(e=zr),e},Hr=function(e){return e},qr=function(e,t){var n=Hr(e);return t.length?t.reduce((function(e,t){var r=n[t].minSupportedPlan;return nn.indexOf(r)>nn.indexOf(e)?r:e}),n[t[0]].minSupportedPlan):""},$r=!1;function Gr(){return $r||($r=!0,Object(w.registerStore)(Ur,{controls:Xn.controls,reducer:Vr,selectors:g})),Ur}var Wr=p.register({client_id:"",client_secret:""}),Yr=l.register(),Kr=o.register({vendor:"variation2_front"}),Jr=h.register();function Xr(){var e,t,n=_.useContext(x).siteId,r=Object(w.useSelect)((function(e){return e(Wr).getSite(n)})),i=Object(w.useSelect)((function(e){return e(Wr).isLaunched(n)}));return{sitePlan:null==r?void 0:r.plan,isPaidPlan:r&&!(null===(e=r.plan)||void 0===e?void 0:e.is_free),launchStatus:i,currentDomainName:(null==r?void 0:r.URL)&&new URL(null==r?void 0:r.URL).hostname,selectedFeatures:null===(t=null==r?void 0:r.options)||void 0===t?void 0:t.selected_features}}var Qr=n(60),Zr=function(){var e=_.useContext(x).siteId,t=Xr().launchStatus,n=Object(w.useSelect)((function(e){return e(Jr).getState()})),r=n.plan,i=n.domain,o=Object(w.useSelect)((function(e){return e(Yr).isPlanEcommerce(null==r?void 0:r.storeSlug)})),a=Object(w.useDispatch)(Wr),c=a.getCart,s=a.setCart;_.useEffect((function(){if(t){if(r&&!(null==r?void 0:r.isFree)){var n={product_id:r.productId,product_slug:r.storeSlug,extra:{source:"gutenboarding"}},a={meta:null==i?void 0:i.domain_name,product_id:null==i?void 0:i.product_id,extra:{privacy_available:null==i?void 0:i.supports_privacy,privacy:null==i?void 0:i.supports_privacy,source:"gutenboarding"}};return void $(void 0,void 0,void 0,(function(){var t,r;return G(this,(function(i){switch(i.label){case 0:return[4,c(e)];case 1:return t=i.sent(),[4,s(e,H(H({},t),{products:Y(t.products,[n,a])}))];case 2:return i.sent(),r=Object(Qr.addQueryArgs)("https://wordpress.com/checkout/"+e,H({preLaunch:1},!o&&{redirect_to:"/home/"+e})),window.top.location.href=r,[2]}}))}))}window.top.location.href="https://wordpress.com/home/"+e}}),[t])},ei=(n(96),function(e){var t=e.children;return _.createElement("h1",{className:"onboarding-title"},t)}),ti=function(e){var t=e.children;return _.createElement("h2",{className:"onboarding-subtitle"},t)},ni=_.createContext(ii()),ri=function(){return _.useContext(ni)};Object(it.createHigherOrderComponent)((function(e){return function(t){var n=ri();return _.createElement(e,H({},n,t))}}),"withI18n");function ii(e){var t,n,r=Object(j.createI18n)(e),i=null!==(n=null===(t=null==e?void 0:e[""])||void 0===t?void 0:t.localeSlug)&&void 0!==n?n:"en";return{__:r.__.bind(r),_n:r._n.bind(r),_nx:r._nx.bind(r),_x:r._x.bind(r),isRTL:r.isRTL.bind(r),i18nLocale:i}}n(97);var oi=function(e){var t=e.className,n=e.children,r=e.sticky,i=void 0===r?null:r,o="";return!0===i&&(o="is-sticky"),!1===i&&(o="no-sticky"),_.createElement("div",{className:U()("action-buttons",t,o)},n)},ai=function(e){var t=e.className,n=e.children,r=q(e,["className","children"]),i=ri().__;return _.createElement(N.Button,H({className:U()("action_buttons__button action-buttons__back",t),isLink:!0},r),n||i("Go back"))},ci=function(e){var t=e.className,n=e.children,r=q(e,["className","children"]),i=ri().__;return _.createElement(N.Button,H({className:U()("action_buttons__button action-buttons__next",t),isPrimary:!0},r),n||i("Continue"))},si=(n(73),function(e){var t=e.children;return Object(y.createElement)(y.Fragment,null,t)});function li(){var e=Object(_.useContext)(x).siteId,t=Object(w.useSelect)((function(t){return t(Wr).getSiteTitle(e)})),n=Object(_.useState)(t||""),r=n[0],i=n[1];Object(_.useEffect)((function(){i(t||"")}),[t]);var o=Object(w.useDispatch)(Wr).saveSiteTitle,a=Object(w.useSelect)((function(e){return e(Jr).isSiteTitleStepVisible()})),c=Object(w.useDispatch)(Jr).showSiteTitleStep;return{title:r,updateTitle:i,saveTitle:function(){void 0!==t&&o(e,r)},isSiteTitleStepVisible:a,showSiteTitleStep:c}}n(74);var ui=function(e){var t=e.onPrevStep,n=e.onNextStep,r=li(),i=r.title,o=r.updateTitle,a=r.saveTitle,c=function(){a(),null==n||n()};return Object(y.createElement)(si,null,Object(y.createElement)("div",{className:"nux-launch-step__header"},Object(y.createElement)("div",null,Object(y.createElement)(ei,null,Object(j.__)("Name your site","full-site-editing")),Object(y.createElement)(ti,null,Object(j.__)("Pick a name for your site.","full-site-editing"))),Object(y.createElement)(oi,{sticky:!1},Object(y.createElement)(ci,{onClick:c,disabled:!(null==i?void 0:i.trim())}))),Object(y.createElement)("div",{className:"nux-launch-step__body"},Object(y.createElement)("form",{onSubmit:c},Object(y.createElement)(N.TextControl,{id:"nux-launch-step__input",className:"nux-launch-step__input",onChange:o,onBlur:a,value:i,spellCheck:!1,autoComplete:"off",placeholder:Object(j.__)("Enter site name","full-site-editing"),autoCorrect:"off"}),Object(y.createElement)("div",{className:"nux-launch-step__input-hint"},Object(y.createElement)(N.Tip,{size:18}),Object(y.createElement)("span",null,Object(j.__)("Don't worry, you can change it later.","full-site-editing"))))),Object(y.createElement)("div",{className:"nux-launch-step__footer"},Object(y.createElement)(oi,{sticky:!0},Object(y.createElement)(ai,{onClick:function(){null==t||t()}}),Object(y.createElement)(ci,{onClick:c,disabled:!(null==i?void 0:i.trim())}))))},di=n(10);function pi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var fi=function(e){var t=e.icon,n=e.size,r=void 0===n?24:n,i=T(e,["icon","size"]);return Object(y.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?pi(Object(n),!0).forEach((function(t){P(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):pi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:r,height:r},i))},mi=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(y.createElement)(R.Path,{d:"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"})),hi=he()("calypso:analytics");n(59);"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}));n(28);var gi=he()("lib/load-script/callback-handler"),bi=new Map;function vi(){return bi}function yi(e){return vi().has(e)}function _i(e,t){var n=vi();yi(e)?(gi('Adding a callback for an existing script from "'.concat(e,'"')),n.get(e).add(t)):(gi('Adding a callback for a new script from "'.concat(e,'"')),n.set(e,new Set([t])))}function Ei(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=vi(),r=n.get(e);if(r){var i='Executing callbacks for "'.concat(e,'"')+(null===t?" with success":' with error "'.concat(t,'"'));gi(i),r.forEach((function(e){"function"==typeof e&&e(t)})),n.delete(e)}}function wi(){var e=this.getAttribute("src");gi('Handling successful request for "'.concat(e,'"')),Ei(e),this.onload=null}function Si(){var e=this.getAttribute("src");gi('Handling failed request for "'.concat(e,'"')),Ei(e,new Error('Failed to load script "'.concat(e,'"'))),this.onerror=null}var Oi=he()("lib/load-script/dom-operations");he()("package/load-script");function xi(e,t){var n;if(!yi(e)&&(n=function(e){Oi('Creating script element for "'.concat(e,'"'));var t=document.createElement("script");return t.src=e,t.type="text/javascript",t.async=!0,t.onload=wi,t.onerror=Si,t}(e),Oi("Attaching element to head"),document.head.appendChild(n)),"function"!=typeof t)return new Promise((function(t,n){_i(e,(function(e){null===e?t():n(e)}))}));_i(e,t)}var Ci,ki=["a8c_cookie_banner_ok","wcadmin_storeprofiler_create_jetpack_account","wcadmin_storeprofiler_connect_store","wcadmin_storeprofiler_login_jetpack_account","wcadmin_storeprofiler_payment_login","wcadmin_storeprofiler_payment_create_account"];Promise.resolve();function ji(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&xi("//stats.wp.com/w.js?61");var Ni=new Ce.EventEmitter;function Pi(e,t){if(hi('Record event "%s" called with props %o',e,t=t||{}),e.startsWith("calypso_")||Object(di.includes)(ki,e)){if(Ci){var n=Ci(t);t=H(H({},t),n)}t=Object(di.omitBy)(t,di.isUndefined),hi('Recording event "%s" with actual props %o',e,t),ji(["recordEvent",e,t]),Ni.emit("record-event",e,t)}else hi('- Event name must be prefixed by "calypso_" or added to `EVENT_NAME_EXCEPTIONS`')}var Ai;!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(Ai||(Ai={}));var Ti=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(y.createElement)(R.Path,{d:"M12 3.2c-4.8 0-8.8 3.9-8.8 8.8 0 4.8 3.9 8.8 8.8 8.8 4.8 0 8.8-3.9 8.8-8.8 0-4.8-4-8.8-8.8-8.8zm0 16c-4 0-7.2-3.3-7.2-7.2C4.8 8 8 4.8 12 4.8s7.2 3.3 7.2 7.2c0 4-3.2 7.2-7.2 7.2zM11 17h2v-6h-2v6zm0-8h2V7h-2v2z"})),Li=(n(100),function(e){var t=e.children,n=e.className,r=e.id,i=e.position,o=void 0===i?"bottom center":i,a=e.noArrow,c=void 0===a||a,s=Object(_.useState)(!1),l=s[0],u=s[1];return E.a.createElement(N.Button,{icon:Ti,onClick:function(){u(!l)},className:"info-tooltip","data-testid":"info-tooltip"},l&&E.a.createElement(N.Popover,{id:r,className:U()("info-tooltip__content",n),onClose:function(){u(!1)},position:o,noArrow:c},t))}),Ii="radio",Di="individual-item",Ri=function(e){var t=e.isUnavailable,n=e.domain,r=e.isLoading,i=e.cost,o=e.railcarId,a=e.hstsRequired,c=void 0!==a&&a,s=e.isFree,l=void 0!==s&&s,u=e.isExistingSubdomain,d=void 0!==u&&u,p=e.isRecommended,f=void 0!==p&&p,m=e.onSelect,h=e.onRender,g=e.selected,b=e.type,v=void 0===b?Ii:b,w=Object(it.useViewportMatch)("small","<"),S=n.indexOf("."),O=n.slice(0,S),x=n.slice(S),C=Object(_.useState)(),k=C[0],P=C[1],A=Object(_.useState)(),T=A[0],L=A[1],I=bt(),D=v===Di?Object(j.__)("Default","full-site-editing"):Object(j.__)("Free","full-site-editing"),R=w?Object(j.__)("Included in paid plans","full-site-editing"):Object(y.createInterpolateElement)(Object(j.__)("<strong>First year included</strong> in paid plans","full-site-editing"),{strong:E.a.createElement("strong",null)}),F=v===Di?R:Object(j.__)("Included in plans","full-site-editing");Object(_.useEffect)((function(){n!==k&&T!==o&&o&&(h(),P(n),L(o))}),[n,k,T,o,h]);var M=function(){T&&function(e){Pi("calypso_traintracks_interact",{railcar:e.railcarId,action:e.action})}({action:"domain_selected",railcarId:T}),m(n)};return E.a.createElement("label",{className:U()("domain-picker__suggestion-item",{"is-free":l,"is-selected":g,"is-unavailable":t},"type-"+v)},[Ii,Di].indexOf(v)>-1&&(r?E.a.createElement(N.Spinner,null):E.a.createElement("input",{"aria-labelledby":I,className:"domain-picker__suggestion-radio-button",type:"radio",disabled:t,name:"domain-picker-suggestion-option",onChange:M,checked:g&&!t})),E.a.createElement("div",{className:"domain-picker__suggestion-item-name"},E.a.createElement("div",{className:"domain-picker__suggestion-item-name-inner"},E.a.createElement("span",{className:"domain-picker__domain-name"},O),E.a.createElement("span",{className:U()("domain-picker__domain-tld",{"with-margin":!c})},x),c&&E.a.createElement(Li,{position:w?"bottom center":"middle right",noArrow:!1,className:"domain-picker__info-tooltip"},Object(y.createInterpolateElement)(Object(j.__)("All domains ending with <tld /> require an SSL certificate to host a website. When you host this domain at WordPress.com an SSL certificate is included. <learn_more_link>Learn more</learn_more_link>","full-site-editing"),{tld:E.a.createElement("b",null,x),learn_more_link:E.a.createElement("a",{target:"_blank",rel:"noreferrer",href:"https://wordpress.com/support/https-ssl"})})),f&&!t&&E.a.createElement("div",{className:"domain-picker__badge is-recommended"},Object(j.__)("Recommended","full-site-editing"))),d&&v!==Di&&E.a.createElement("div",{className:"domain-picker__change-subdomain-tip"},Object(j.__)("You can change your free subdomain later under Domain Settings.","full-site-editing"))),E.a.createElement("div",{className:U()("domain-picker__price",{"is-paid":!l})},t&&Object(j.__)("Unavailable","full-site-editing"),l&&!t&&D,!l&&!t&&E.a.createElement(E.a.Fragment,null,E.a.createElement("span",{className:"domain-picker__price-inclusive"}," ",F," "),E.a.createElement("span",{className:"domain-picker__price-cost"},Object(j.sprintf)(Object(j.__)("%s/year","full-site-editing"),i)))),"button"===v&&(r?E.a.createElement(N.Spinner,null):E.a.createElement("div",{className:"domain-picker__action"},E.a.createElement(N.Button,{isSecondary:!0,"aria-labelledby":I,className:U()("domain-picker__suggestion-select-button",{"is-selected":g&&!t}),disabled:t,onClick:M},g&&!t?Object(j.__)("Selected","full-site-editing"):Object(j.__)("Select","full-site-editing")))))},Fi=function(){return E.a.createElement("div",{className:"domain-picker__suggestion-item placeholder"},E.a.createElement("div",{className:"domain-picker__suggestion-item-name placeholder"}),E.a.createElement("div",{className:"domain-picker__price placeholder"}))};function Mi(e,t){return e===t}function Bi(e,t,n){var r=n&&n.equalityFn?n.equalityFn:Mi,i=Object(_.useState)(e),o=i[0],a=i[1],c=function(e,t,n){void 0===n&&(n={});var r=n.maxWait,i=Object(_.useRef)(null),o=Object(_.useRef)([]),a=n.leading,c=Object(_.useRef)(!1),s=Object(_.useRef)(null),l=Object(_.useRef)(!1),u=Object(_.useRef)(e);u.current=e;var d=Object(_.useCallback)((function(){clearTimeout(s.current),clearTimeout(i.current),i.current=null,o.current=[],s.current=null,c.current=!1}),[]);return Object(_.useEffect)((function(){return function(){l.current=!0}}),[]),[Object(_.useCallback)((function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];if(o.current=e,clearTimeout(s.current),!s.current&&a&&!c.current)return u.current.apply(u,e),void(c.current=!0);s.current=setTimeout((function(){d(),l.current||u.current.apply(u,e)}),t),r&&!i.current&&(i.current=setTimeout((function(){var e=o.current;d(),l.current||u.current.apply(null,e)}),r))}),[r,t,d,a]),d,function(){s.current&&(u.current.apply(null,o.current),d())}]}(Object(_.useCallback)((function(e){return a(e)}),[]),t,n),s=c[0],l=c[1],u=Object(_.useRef)(e);return Object(_.useEffect)((function(){r(u.current,e)||(s(e),u.current=e)}),[e,s,r]),[o,l]}var Ui=o.register({vendor:"variation2_front"}),zi=["available","available_premium"];var Vi=Object(y.createElement)(R.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},Object(y.createElement)(R.Path,{d:"M17 9.4L12 14 7 9.4l-1 1.2 6 5.4 6-5.4z"})),Hi=(n(101),function(e){var t=e.onSelect,n=e.selected,r=Object(y.useState)(!1),i=r[0],o=r[1],a=function(e){o(!1),t(e)},c=Object(w.useSelect)((function(e){return e(Ui).getCategories()}));return _.createElement("div",{className:U()("domain-categories",{"is-open":i})},_.createElement(N.Button,{className:"domain-categories__dropdown-button",onClick:function(){return o(!i)}},_.createElement("span",null,n||Object(j.__)("All Categories","full-site-editing")),_.createElement(fi,{icon:Vi,size:16})),_.createElement("ul",{className:"domain-categories__item-group"},_.createElement("li",{className:U()("domain-categories__item",{"is-selected":!n})},_.createElement(N.Button,{onClick:function(){return a()}},Object(j.__)("View all","full-site-editing"))),c.map((function(e){var t=e.slug,r=e.title;return _.createElement("li",{key:t,className:U()("domain-categories__item",{"is-selected":t===n})},_.createElement(N.Button,{onClick:function(){return a(t)}},r))}))))}),qi=function(){return E.a.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 300 40",xmlSpace:"preserve",width:"300"},E.a.createElement("rect",{x:"0",width:"310",height:"50",rx:"10",fill:"#D8D8D8"}),E.a.createElement("rect",{x:"8",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),E.a.createElement("rect",{x:"40",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),E.a.createElement("rect",{x:"72",y:"8",width:"300",height:"25",rx:"5",fill:"#fff"}),E.a.createElement("text",{x:"80",y:"26",fill:"#999"},"https://"),E.a.createElement("text",{x:"133",y:"26",fill:"#515151"},Object(j.__)("example.com","full-site-editing")))},$i=(n(99),function(e){var t=e.groupItems,n=e.children;return t?E.a.createElement("div",{className:"domain-picker__suggestion-item-group"},n):E.a.createElement(E.a.Fragment,null,n)}),Gi=function(e){var t,n,r=e.header,i=e.showDomainCategories,o=e.onDomainSelect,a=e.onExistingSubdomainSelect,c=e.quantity,s=void 0===c?5:c,l=e.quantityExpanded,u=void 0===l?10:l,d=e.onDomainSearchBlur,p=void 0===d?di.noop:d,f=e.analyticsFlowId,m=e.analyticsUiAlgo,h=e.initialDomainSearch,g=void 0===h?"":h,b=e.onSetDomainSearch,v=void 0===b?di.noop:b,y=e.currentDomain,S=e.isCheckingDomainAvailability,O=e.existingSubdomain,x=e.segregateFreeAndPaid,C=void 0!==x&&x,k=e.showSearchField,P=void 0===k||k,A=e.itemType,T=void 0===A?Ii:A,L=e.locale,I=Object(j.__)("Search for a domain","full-site-editing"),D=Object(_.useState)(!1),R=D[0],F=D[1],M=Object(_.useState)(g),B=M[0],U=M[1],z=Object(_.useState)(),V=z[0],H=z[1],q=Object(w.useSelect)((function(e){return e(Ui).getDomainSuggestionVendor()})),$=function(e,t,n,r){void 0===e&&(e=""),void 0===r&&(r="en");var i=Bi(e,300)[0],o=Object(w.useDispatch)(Ui).invalidateResolutionForStoreSelector;return Object(w.useSelect)((function(e){if(i&&!(i.length<2)){var a=e(Ui),c=a.getDomainSuggestions,s=a.getDomainState,l=a.getDomainErrorMessage;return{allDomainSuggestions:c(i,{include_wordpressdotcom:!0,include_dotblogsubdomain:!1,quantity:t+1,locale:r,category_slug:n}),state:s(),errorMessage:l(),retryRequest:function(){o("__internalGetDomainSuggestions")}}}}),[i,n,t])}(B.trim(),u,V,L)||{},G=$.allDomainSuggestions,W=$.errorMessage,Y=$.state,K=$.retryRequest,J=null==G?void 0:G.slice(O?1:0,R?u:s),X=Object(w.useSelect)((function(e){return e(Ui).getDomainAvailabilities()}),[]);Object(_.useEffect)((function(){F(!1)}),[B]);var Q=Object(_.useState)(),Z=Q[0],ee=Q[1];Object(_.useEffect)((function(){var e;G&&ee((void 0===(e="suggestion")&&(e="recommendation"),bt().replace(/-/g,"")+"-"+e))}),[G,ee]),Object(_.useEffect)((function(){P||U(g)}),[g,P]);var te=function(e,t,n,r){!function(e){Pi("calypso_traintracks_render",{railcar:e.railcarId,ui_algo:e.uiAlgo,ui_position:e.uiPosition,fetch_algo:e.fetchAlgo,rec_result:e.result,fetch_query:e.query})}({uiAlgo:"/"+f+"/"+m,fetchAlgo:"/domains/search/"+q+"/"+f+(V?"/"+V:""),query:B,railcarId:t,result:r?e+"#recommended":e,uiPosition:n})},ne=Y===Ai.Failure,re=(null===(t=B.trim)||void 0===t?void 0:t.call(B).length)<=1,ie=!ne&&!re,oe=!ne&&re;return E.a.createElement("div",{className:"domain-picker"},r&&r,P&&E.a.createElement("div",{className:"domain-picker__search"},E.a.createElement("div",{className:"domain-picker__search-icon"},E.a.createElement(fi,{icon:mi})),E.a.createElement(N.TextControl,{hideLabelFromVision:!0,label:I,placeholder:I,onChange:function(e){U(e),v(e)},onBlur:function(e){p&&p(e.currentTarget.value)},value:B})),ne&&E.a.createElement("div",{className:"domain-picker__error"},E.a.createElement("p",{className:"domain-picker__error-message"},Object(j.__)("An error has occurred, please check your connection and retry.","full-site-editing"),W&&" "+W),E.a.createElement(N.Button,{isPrimary:!0,className:"domain-picker__error-retry-btn",onClick:K},"Retry")),ie&&E.a.createElement("div",{className:"domain-picker__body"},i&&E.a.createElement("div",{className:"domain-picker__aside"},E.a.createElement(Hi,{selected:V,onSelect:H})),E.a.createElement("div",{className:"domain-picker__suggestion-sections"},E.a.createElement(E.a.Fragment,null,C&&E.a.createElement("p",{className:"domain-picker__suggestion-group-label"},Object(j.__)("Keep sub-domain","full-site-editing")),E.a.createElement($i,{groupItems:C},O&&E.a.createElement(Ri,{key:O,domain:O,cost:"Free",isFree:!0,isExistingSubdomain:!0,railcarId:Z?""+Z+0:void 0,onRender:function(){return te(O,""+Z+0,0,!1)},selected:y===O,onSelect:function(){null==a||a(O)},type:T})),C&&E.a.createElement("p",{className:"domain-picker__suggestion-group-label"},Object(j.__)("Professional domains","full-site-editing")),E.a.createElement($i,{groupItems:C},null!==(n=null==J?void 0:J.map((function(e,t){var n,r=O?t+1:t,i=1===r,a=null===(n=X[null==e?void 0:e.domain_name])||void 0===n?void 0:n.status,c=!a||(null==zi?void 0:zi.includes(a));return E.a.createElement(Ri,{key:e.domain_name,isUnavailable:!c,domain:e.domain_name,cost:e.cost,isLoading:y===e.domain_name&&S,hstsRequired:e.hsts_required,isFree:e.is_free,isRecommended:i,railcarId:Z?""+Z+r:void 0,onRender:function(){return te(e.domain_name,""+Z+r,r,i)},onSelect:function(){o(e)},selected:y===e.domain_name,type:T})})))&&void 0!==n?n:Object(di.times)(s,(function(e){return E.a.createElement(Fi,{key:e})})))),!R&&s<u&&(null==G?void 0:G.length)&&(null==G?void 0:G.length)>s&&E.a.createElement("div",{className:"domain-picker__show-more"},E.a.createElement(N.Button,{onClick:function(){return F(!0)},isLink:!0},Object(j.__)("View more results","full-site-editing"))))),oe&&E.a.createElement("div",{className:"domain-picker__empty-state"},E.a.createElement("p",{className:"domain-picker__empty-state--text"},Object(j.__)("A domain name is the site address people type in their browser to visit your site.","full-site-editing")),E.a.createElement("div",null,E.a.createElement(qi,null))))},Wi=Object(j.__)("Site Title","full-site-editing"),Yi=function(e){var t=e.currentSiteTitle,n=void 0===t?"":t,r=e.exact;return void 0!==r&&r?n===Wi:new RegExp(Wi,"i").test(n)};function Ki(){var e,t=Object(w.useSelect)((function(e){return e(Jr).getState()})).domainSearch,n=li().title,r=Xr().currentDomainName,i=t.trim()||n;return i&&!Yi({currentSiteTitle:i,exact:!0})||(i=null!==(e=null==r?void 0:r.split(".")[0])&&void 0!==e?e:""),i}var Ji="gutenboarding",Xi=(n(98),function(e){var t=e.onPrevStep,n=e.onNextStep,r=Object(w.useSelect)((function(e){return e(v).getState()})),i=r.plan,o=r.domain,a=Xr().currentDomainName,c=Ki(),s=Object(w.useDispatch)(v),l=s.setDomain,u=s.unsetDomain,d=s.setDomainSearch,p=s.unsetPlan,f=s.confirmDomainSelection,m=function(){f(),null==n||n()};return Object(y.createElement)(si,null,Object(y.createElement)("div",{className:"nux-launch-step__header"},Object(y.createElement)("div",null,Object(y.createElement)(ei,null,Object(j.__)("Choose a domain","full-site-editing")),Object(y.createElement)(ti,null,Object(j.__)("Free for the first year with any paid plan.","full-site-editing"))),Object(y.createElement)(oi,{sticky:!1},Object(y.createElement)(ci,{onClick:m,disabled:!c}))),Object(y.createElement)("div",{className:"nux-launch-step__body"},Object(y.createElement)(Gi,{analyticsFlowId:Ji,initialDomainSearch:c,onSetDomainSearch:d,onDomainSearchBlur:function(e){Pi("calypso_newsite_domain_search_blur",{flow:Ji,query:e,where:"editor_domain_modal"})},currentDomain:(null==o?void 0:o.domain_name)||a,existingSubdomain:a,onDomainSelect:function(e){f(),l(e),(null==i?void 0:i.isFree)&&p()},onExistingSubdomainSelect:function(){u()},analyticsUiAlgo:"editor_domain_modal",segregateFreeAndPaid:!0,locale:document.documentElement.lang})),Object(y.createElement)("div",{className:"nux-launch-step__footer"},Object(y.createElement)(oi,{sticky:!0},Object(y.createElement)(ai,{onClick:function(){null==t||t()}}),Object(y.createElement)(ci,{onClick:m,disabled:!c}))))}),Qi=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(y.createElement)(R.Path,{d:"M9 18.6L3.5 13l1-1L9 16.4l9.5-9.9 1 1z"})),Zi=Object(y.createElement)(R.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(y.createElement)(R.Path,{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"})),eo=(n(47),E.a.createElement(fi,{icon:Qi,size:17})),to=E.a.createElement(fi,{icon:Zi,size:17}),no=E.a.createElement("svg",{width:"8",viewBox:"0 0 8 4"},E.a.createElement("path",{d:"M0 0 L8 0 L4 4 L0 0",fill:"currentColor"}));var ro=function(e){var t=e.features,n=e.domain,r=e.isFree,i=void 0!==r&&r,o=e.isOpen,a=void 0!==o&&o,c=e.onPickDomain,s=e.disabledLabel,l=e.multiColumn,u=void 0!==l&&l,d=function(e,t,n){return{NO_DOMAIN:{FREE_PLAN:null,PAID_PLAN:{className:"plans-feature-list__domain-summary is-cta",icon:eo,domainMessage:E.a.createElement(E.a.Fragment,null,n("Pick a free domain (1 year)","full-site-editing")," ",no)}},FREE_DOMAIN:{FREE_PLAN:null,PAID_PLAN:{className:"plans-feature-list__domain-summary is-cta",icon:eo,domainMessage:E.a.createElement(E.a.Fragment,null,n("Pick a free domain (1 year)","full-site-editing")," ",no)}},PAID_DOMAIN:{FREE_PLAN:{className:"plans-feature-list__domain-summary is-free",icon:to,domainMessage:E.a.createElement("span",null,Object(y.createInterpolateElement)(n("<url /> is not included","full-site-editing"),{url:E.a.createElement("span",{className:"plans-feature-list__item-url"},null==t?void 0:t.domain_name)}))},PAID_PLAN:{className:"plans-feature-list__domain-summary is-picked",icon:eo,domainMessage:E.a.createElement("span",null,Object(y.createInterpolateElement)(n("<url /> is included","full-site-editing"),{url:E.a.createElement("span",{className:"plans-feature-list__item-url"},null==t?void 0:t.domain_name)}))}}}[t&&(t.is_free?"FREE_DOMAIN":"PAID_DOMAIN")||"NO_DOMAIN"][e?"FREE_PLAN":"PAID_PLAN"]}(i,n,j.__);return E.a.createElement("div",{className:"plans-feature-list",hidden:!a},E.a.createElement("ul",{className:U()("plans-feature-list__item-group",{"plans-feature-list__item-group--columns":u})},s?E.a.createElement("li",{className:"plans-feature-list__item plans-feature-list__item--disabled-message"},to," ",E.a.createElement("span",null,s)):d&&E.a.createElement("li",{className:"plans-feature-list__item"},E.a.createElement(N.Button,{className:d.className,onClick:c,isLink:!0},d.icon,d.domainMessage)),t.map((function(e,t){return E.a.createElement("li",{key:t,className:"plans-feature-list__item"},eo," ",E.a.createElement("span",null,e))}))))},io=_.createElement("svg",{width:"8",viewBox:"0 0 8 4"},_.createElement("path",{d:"M0 0 L8 0 L4 4 L0 0",fill:"currentColor"})),oo=function(e){var t=e.slug,n=e.name,r=e.price,i=e.isPopular,o=void 0!==i&&i,a=e.isFree,c=void 0!==a&&a,s=e.domain,l=e.features,u=e.onSelect,d=e.onPickDomainClick,p=e.onToggleExpandAll,f=e.allPlansExpanded,m=e.disabledLabel,h=_.useState(!1),g=h[0],b=h[1],v=Object(it.useViewportMatch)("mobile",">=");_.useEffect((function(){b(f)}),[f]);var y=f||v||o||g;return _.createElement("div",{className:U()("plan-item",{"is-popular":o,"is-open":y})},o&&_.createElement("span",{className:"plan-item__badge"},Object(j.__)("Popular","full-site-editing")),_.createElement("div",{className:U()("plan-item__viewport",{"is-popular":o})},_.createElement("div",{className:"plan-item__details"},_.createElement("div",{tabIndex:0,role:"button",onClick:function(){return b((function(e){return!e}))},onKeyDown:function(e){return 32===e.keyCode&&b((function(e){return!e}))},className:"plan-item__summary"},_.createElement("div",{className:"plan-item__heading"},_.createElement("div",{className:"plan-item__name"},n)),_.createElement("div",{className:"plan-item__price"},_.createElement("div",{className:U()("plan-item__price-amount",{"is-loading":!r})},r||" ")),!y&&_.createElement("div",{className:"plan-item__dropdown-chevron"},io)),_.createElement("div",{hidden:!y},_.createElement("div",{className:"plan-item__price-note"},c?Object(j.__)("free forever","full-site-editing"):Object(j.__)("per month, billed yearly","full-site-editing")),_.createElement("div",{className:"plan-item__actions"},_.createElement(N.Button,{className:"plan-item__select-button",onClick:function(){u(t)},isPrimary:!0,disabled:!!m},_.createElement("span",null,Object(j.__)("Choose","full-site-editing")))),_.createElement(ro,{features:l,domain:s,isFree:c,isOpen:y,onPickDomain:d,disabledLabel:m})))),o&&!v&&_.createElement(N.Button,{onClick:p,className:"plan-item__mobile-expand-all-plans",isLink:!0},f?Object(j.__)("Collapse all plans","full-site-editing"):Object(j.__)("Expand all plans","full-site-editing")))},ao=l.register(),co=b.register(),so=(n(105),function(e){var t=e.selectedPlanSlug,n=e.onPlanSelect,r=e.onPickDomainClick,i=e.currentDomain,o=e.disabledPlans,a=e.locale,c=Object(w.useSelect)((function(e){return e(ao).getSupportedPlans()})),s=Object(w.useSelect)((function(e){return e(ao).getPrices(a)})),l=Object(_.useState)(!1),u=l[0],d=l[1];return E.a.createElement("div",{className:"plans-table"},c.map((function(e){var a;return e&&E.a.createElement(oo,{allPlansExpanded:u,key:e.storeSlug,slug:e.storeSlug,domain:i,features:null!==(a=e.features)&&void 0!==a?a:[],isPopular:e.isPopular,isFree:e.isFree,price:s[e.storeSlug],name:null==e?void 0:e.title.toString(),isSelected:e.storeSlug===t,onSelect:n,onPickDomainClick:r,onToggleExpandAll:function(){return d((function(e){return!e}))},disabledLabel:null==o?void 0:o[e.storeSlug]})})))}),lo=(n(46),E.a.createElement("svg",{width:"8",viewBox:"0 0 8 4"},E.a.createElement("path",{d:"M0 0 L8 0 L4 4 L0 0",fill:"currentColor"}))),uo=function(e){var t=e.slug,n=e.name,r=e.description,i=e.price,o=e.features,a=e.domain,c=e.badge,s=e.isFree,l=void 0!==s&&s,u=e.isOpen,d=void 0!==u&&u,p=e.isPrimary,f=void 0!==p&&p,m=e.onSelect,h=e.onPickDomainClick,g=e.onToggle,b=e.disabledLabel,v=function(){!b&&(null==g||g(t,!d))};return E.a.createElement("div",{className:U()("plans-accordion-item",{"is-open":d,"is-primary":f,"has-badge":!!c,"is-disabled":!!b})},c&&E.a.createElement("div",{className:"plans-accordion-item__badge"},E.a.createElement("span",null,c)),E.a.createElement("div",{className:"plans-accordion-item__viewport"},E.a.createElement("div",{className:"plans-accordion-item__details"},E.a.createElement("div",{tabIndex:0,role:"button",onClick:v,onKeyDown:function(e){return 32===e.keyCode&&v()},className:"plans-accordion-item__header"},E.a.createElement("div",{className:"plans-accordion-item__heading"},E.a.createElement("div",{className:"plans-accordion-item__name"},n),E.a.createElement("div",{className:"plans-accordion-item__description"},r)),E.a.createElement("div",{className:"plans-accordion-item__price"},E.a.createElement("div",{className:U()("plans-accordion-item__price-amount",{"is-loading":!i})},i||"  ",i&&E.a.createElement("span",null,Object(j.__)("/mo","full-site-editing"))),E.a.createElement("div",{className:"plans-accordion-item__price-note"},l?Object(j.__)("free forever","full-site-editing"):Object(j.__)("billed annually","full-site-editing"))),E.a.createElement("div",{className:"plans-accordion-item__disabled-label"},b),!d&&E.a.createElement("div",{className:"plans-accordion-item__dropdown-chevron"},lo)),E.a.createElement("div",{className:"plans-accordion-item__actions",hidden:!d},E.a.createElement(ci,{onClick:function(){m(t)}},Object(j.__)("Select","full-site-editing"))),E.a.createElement(ro,{features:o,domain:a,isFree:l,isOpen:d,onPickDomain:h,multiColumn:!0}))))},po=function(e){var t=e.isOpen,n=void 0!==t&&t,r=e.multiColumn,i=void 0!==r&&r,o=Array.from(Array(10).keys());return E.a.createElement("div",{className:"plans-feature-list",hidden:!n},E.a.createElement("ul",{className:U()("plans-feature-list__item-group",{"plans-feature-list__item-group--columns":i})},o.map((function(e){return E.a.createElement("li",{key:e,className:"plans-feature-list__item"},E.a.createElement("span",{className:"plans-feature-list__placeholder"},""))}))))},fo=E.a.createElement("svg",{width:"8",viewBox:"0 0 8 4"},E.a.createElement("path",{d:"M0 0 L8 0 L4 4 L0 0",fill:"currentColor"})),mo=function(e){var t=e.isOpen,n=e.isPrimary;return E.a.createElement("div",{className:U()("plans-accordion-item",{"is-open":t,"is-primary":n})},E.a.createElement("div",{className:"plans-accordion-item__viewport"},E.a.createElement("div",{className:"plans-accordion-item__details"},E.a.createElement("div",{tabIndex:0,role:"button",className:"plans-accordion-item__header"},E.a.createElement("div",{className:"plans-accordion-item__heading"},E.a.createElement("div",{className:"plans-accordion-item__name"},E.a.createElement("span",{className:"plans-accordion-item__placeholder"},"")),E.a.createElement("div",{className:"plans-accordion-item__description"},E.a.createElement("span",{className:"plans-accordion-item__placeholder plans-accordion-item__placeholder--wide"},""))),E.a.createElement("div",{className:"plans-accordion-item__price"},E.a.createElement("div",{className:"plans-accordion-item__price-amount"},E.a.createElement("span",{className:"plans-accordion-item__placeholder"},"")),E.a.createElement("div",{className:"plans-accordion-item__price-note"},E.a.createElement("span",{className:"plans-accordion-item__placeholder plans-accordion-item__placeholder--wide"},""))),E.a.createElement("div",{className:"plans-accordion-item__disabled-label"},""),!t&&E.a.createElement("div",{className:"plans-accordion-item__dropdown-chevron"},fo)),E.a.createElement("div",{className:"plans-accordion-item__actions",hidden:!t},E.a.createElement(ci,{disabled:!0},E.a.createElement("span",null,""))),E.a.createElement(po,{isOpen:t,multiColumn:!0}))))},ho=(n(104),E.a.createElement(N.SVG,{viewBox:"0 0 24 24"},E.a.createElement(N.Path,{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"}))),go=function(e){var t,n=e.selectedFeatures,r=void 0===n?[]:n,i=e.selectedPlanSlug,o=e.onPlanSelect,a=e.onPickDomainClick,c=e.currentDomain,s=e.disabledPlans,l=e.locale,u=Object(w.useSelect)((function(e){return e(ao).getSupportedPlans()})),d=Object(w.useSelect)((function(e){return e(ao).getPrices(l)})),p=!(null==u?void 0:u.length),f=Object(w.useSelect)((function(e){return e(ao).getDefaultPaidPlan()})),m=Object(w.useSelect)((function(e){return e(co).getRecommendedPlanSlug(r)})),h=Object(w.useSelect)((function(e){return e(ao).getPlanBySlug(m)})),g=h||f,b=h?Object(j.__)("Recommended for you","full-site-editing"):Object(j.__)("Popular","full-site-editing"),v=u.filter((function(e){return e.storeSlug!==g.storeSlug})),y=[null==g?void 0:g.storeSlug],S=Object(_.useState)(y),O=S[0],x=S[1],C=!p&&O.length>=u.length,k=function(e,t){x(t?Y(O,[e]):O.filter((function(t){return t!==e})))};return E.a.createElement("div",{className:"plans-accordion"},E.a.createElement("div",{className:"plans-accordion__plan-item-group"},p?E.a.createElement(mo,{isOpen:!0,isPrimary:!0}):g&&E.a.createElement(E.a.Fragment,null,h&&E.a.createElement("div",{className:"plans-accordion__recommend-hint"},E.a.createElement(fi,{icon:ho,size:16}),E.a.createElement("span",null,Object(j.__)("Based on the features you selected.","full-site-editing"))),E.a.createElement(uo,{key:g.storeSlug,slug:g.storeSlug,name:null==g?void 0:g.title.toString(),description:null==g?void 0:g.description.toString(),features:null!==(t=g.features)&&void 0!==t?t:[],price:d[g.storeSlug],domain:c,badge:b,isFree:g.isFree,isOpen:!0,isPrimary:!0,isSelected:g.storeSlug===i,onSelect:o,onPickDomainClick:a}))),E.a.createElement("div",{className:"plans-accordion__actions"},E.a.createElement(N.Button,{className:"plans-accordion__toggle-all-button",onClick:function(){x(C?y:u.map((function(e){return e.storeSlug})))},isLink:!0},C?Object(j.__)("Collapse all plans","full-site-editing"):Object(j.__)("Show all plans","full-site-editing"))),E.a.createElement("div",{className:"plans-accordion__plan-item-group"},p?[1,2,3,4].map((function(e){return E.a.createElement(mo,{key:e})})):v.map((function(e){var t;return E.a.createElement(uo,{key:e.storeSlug,slug:e.storeSlug,name:null==e?void 0:e.title.toString(),description:null==e?void 0:e.description.toString(),features:null!==(t=e.features)&&void 0!==t?t:[],price:d[e.storeSlug],domain:c,isFree:e.isFree,isOpen:O.indexOf(e.storeSlug)>-1&&!(null==s?void 0:s[e.storeSlug]),isSelected:e.storeSlug===i,onSelect:o,onPickDomainClick:a,onToggle:k,disabledLabel:null==s?void 0:s[e.storeSlug]})}))))},bo=(n(106),E.a.createElement(fi,{icon:Qi,size:25})),vo=function(e){var t=e.onSelect,n=e.locale,r=Object(w.useSelect)((function(e){return e(ao).getPlansDetails(n)})),i=r.features,o=r.featuresByType,a=r.plans,c=Object(w.useSelect)((function(e){return e(ao).getPrices(n)})),s=Object(w.useSelect)((function(e){return e(ao).getSupportedPlans()})),l=!(null==s?void 0:s.length),u=[1,2,3,4,5];return E.a.createElement("div",{className:"plans-details"},E.a.createElement("table",{className:"plans-details__table"},E.a.createElement("thead",null,E.a.createElement("tr",{className:"plans-details__header-row"},E.a.createElement("th",null,Object(j.__)("Feature","full-site-editing")),l?u.map((function(e){return E.a.createElement("th",{key:e},E.a.createElement("span",{className:"plans-details__placeholder"},""))})):s.map((function(e){return E.a.createElement("th",{key:e.storeSlug},e.title)})))),l?E.a.createElement("tbody",null,u.map((function(e,t){return E.a.createElement("tr",{className:"plans-details__feature-row",key:t},E.a.createElement("th",{key:e},E.a.createElement("span",{className:"plans-details__placeholder plans-details__placeholder--wide"},"")),u.map((function(e){return E.a.createElement("td",{key:e})})))}))):o.map((function(e){var t;return E.a.createElement("tbody",{key:e.id},e.name&&E.a.createElement("tr",{className:"plans-details__header-row"},E.a.createElement("th",{colSpan:6},e.name)),null===(t=e.features)||void 0===t?void 0:t.map((function(e,t){return E.a.createElement("tr",{className:"plans-details__feature-row",key:t},E.a.createElement("th",null,i[e].name),s.map((function(t,n){var r;return"storage"===e?E.a.createElement("td",{key:n},a[t.storeSlug][e]):E.a.createElement("td",{key:n},(null===(r=a[t.storeSlug].featuresSlugs)||void 0===r?void 0:r[e])?E.a.createElement(E.a.Fragment,null,E.a.createElement("span",{className:"hidden"},Object(j.__)("Available","full-site-editing")),bo):E.a.createElement(E.a.Fragment,null,E.a.createElement("span",{className:"hidden"},Object(j.__)("Unavailable","full-site-editing"))))})))})))})),E.a.createElement("tbody",null,E.a.createElement("tr",{className:"plans-details__header-row"},E.a.createElement("th",{colSpan:6},Object(j.__)("Sign up","full-site-editing"))),E.a.createElement("tr",{className:"plans-details__feature-row",key:"price"},E.a.createElement("th",null,Object(j.__)("Monthly subscription (billed yearly)","full-site-editing")),l?u.map((function(e){return E.a.createElement("td",{key:e},E.a.createElement("span",{className:"plans-details__placeholder"},""))})):s.map((function(e){return E.a.createElement("td",{key:e.storeSlug},c[e.storeSlug])}))),E.a.createElement("tr",{className:"plans-details__feature-row",key:"cta"},E.a.createElement("th",null),l?u.map((function(e){return E.a.createElement("td",{key:e},E.a.createElement(N.Button,{className:"plans-details__select-button",isPrimary:!0,disabled:!0},E.a.createElement("span",{className:"plans-details__placeholder plans-details__placeholder--narrow"},""))," ")})):s.map((function(e){return E.a.createElement("td",{key:e.storeSlug},E.a.createElement(N.Button,{className:"plans-details__select-button",onClick:function(){t(e.storeSlug)},isPrimary:!0},E.a.createElement("span",null,Object(j.__)("Select","full-site-editing"))))}))))))},yo=(n(103),he()("plans-grid")),_o=function(e){var t,n,r=e.header,i=e.selectedFeatures,o=e.currentPlan,a=e.currentDomain,c=e.onPlanSelect,s=e.onPickDomainClick,l=e.disabledPlans,u=e.isAccordion,d=e.locale;return u&&yo("PlansGrid accordion version is active"),_.createElement("div",{className:"plans-grid"},r&&_.createElement("div",{className:"plans-grid__header"},r),_.createElement("div",{className:"plans-grid__table"},_.createElement("div",{className:"plans-grid__table-container"},u?_.createElement(go,{selectedFeatures:i,selectedPlanSlug:null!==(t=null==o?void 0:o.storeSlug)&&void 0!==t?t:"",onPlanSelect:c,currentDomain:a,onPickDomainClick:s,disabledPlans:l,locale:d}):_.createElement(so,{selectedPlanSlug:null!==(n=null==o?void 0:o.storeSlug)&&void 0!==n?n:"",onPlanSelect:c,currentDomain:a,onPickDomainClick:s,disabledPlans:l,locale:d}))),_.createElement("div",{className:"plans-grid__details"},_.createElement("div",{className:"plans-grid__details-heading"},_.createElement(ei,null,Object(j.__)("Detailed comparison","full-site-editing"))),_.createElement("div",{className:"plans-grid__details-container"},_.createElement(vo,{onSelect:c,locale:d}))))},Eo=(n(102),function(e){var t,n=e.onPrevStep,r=e.onNextStep,i=Object(w.useSelect)((function(e){return e(v).getSelectedDomain()})),o=Object(w.useSelect)((function(e){return e(v).getLaunchStep()})),a=Object(w.useDispatch)(v),c=a.updatePlan,s=a.setStep,u=Xr().selectedFeatures,d=i&&!i.is_free;return Object(y.createElement)(si,null,Object(y.createElement)("div",{className:"nux-launch-step__header"},Object(y.createElement)("div",null,Object(y.createElement)(ei,null,Object(j.__)("Select a plan","full-site-editing")),Object(y.createElement)(ti,null,Object(j.__)("Pick a plan that’s right for you. Switch plans as your needs change. There’s no risk, you can cancel for a full refund within 30 days.","full-site-editing")))),Object(y.createElement)("div",{className:"nux-launch-step__body"},Object(y.createElement)(_o,{currentDomain:i,onPlanSelect:function(e){c(e),null==r||r()},onPickDomainClick:function(){s(o.Domain)},disabledPlans:d?fe()({},l.PLAN_FREE,Object(j.__)("Not available with custom domain","full-site-editing")):void 0,isAccordion:!0,selectedFeatures:u,locale:(null===(t=window.wpcomEditorSiteLaunch)||void 0===t?void 0:t.locale)||"en"})),Object(y.createElement)("div",{className:"nux-launch-step__footer"},Object(y.createElement)(oi,{sticky:!0},Object(y.createElement)(ai,{onClick:function(){null==n||n()}}))))}),wo=n(18),So=n.n(wo);var Oo=function(){function e(e){this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.before=null}var t=e.prototype;return t.insert=function(e){if(this.ctr%(this.isSpeedy?65e3:1)==0){var t,n=function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t}(this);t=0===this.tags.length?this.before:this.tags[this.tags.length-1].nextSibling,this.container.insertBefore(n,t),this.tags.push(n)}var r=this.tags[this.tags.length-1];if(this.isSpeedy){var i=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(r);try{var o=105===e.charCodeAt(1)&&64===e.charCodeAt(0);i.insertRule(e,o?0:i.cssRules.length)}catch(a){0}}else r.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}();var xo=function(e){function t(e,r,s,l,p){for(var f,m,h,g,_,w=0,S=0,O=0,x=0,C=0,T=0,I=h=f=0,R=0,F=0,M=0,B=0,U=s.length,z=U-1,V="",H="",q="",$="";R<U;){if(m=s.charCodeAt(R),R===z&&0!==S+x+O+w&&(0!==S&&(m=47===S?10:47),x=O=w=0,U++,z++),0===S+x+O+w){if(R===z&&(0<F&&(V=V.replace(d,"")),0<V.trim().length)){switch(m){case 32:case 9:case 59:case 13:case 10:break;default:V+=s.charAt(R)}m=59}switch(m){case 123:for(f=(V=V.trim()).charCodeAt(0),h=1,B=++R;R<U;){switch(m=s.charCodeAt(R)){case 123:h++;break;case 125:h--;break;case 47:switch(m=s.charCodeAt(R+1)){case 42:case 47:e:{
1
+ !function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=149)}([function(e,t){!function(){e.exports=this.wp.element}()},function(e,t){!function(){e.exports=this.React}()},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t){!function(){e.exports=this.wp.data}()},function(e,t){!function(){e.exports=this.wp.components}()},function(e,t,n){e.exports=n(133)()},function(e,t,n){var r=n(10);function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(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){r(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(e,t){e.exports=function(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}},function(e,t,n){var r=n(93),i=n(94),o=n(56),a=n(95);e.exports=function(e,t){return r(e)||i(e,t)||o(e,t)||a()}},function(e,t,n){var r;
2
  /*!
3
  Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
+ */!function(){"use strict";var n={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)&&r.length){var a=i.apply(null,r);a&&e.push(a)}else if("object"===o)for(var c in r)n.call(r,c)&&r[c]&&e.push(c)}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=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(e,t,n){"use strict";n.d(t,"d",(function(){return r})),n.d(t,"e",(function(){return i})),n.d(t,"f",(function(){return o})),n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return c})),n.d(t,"g",(function(){return s})),n.d(t,"a",(function(){return l})),n.d(t,"i",(function(){return u})),n.d(t,"j",(function(){return d})),n.d(t,"k",(function(){return f})),n.d(t,"h",(function(){return m}));var r="free_plan",i="personal-bundle",o="value_bundle",a="business-bundle",c="ecommerce-bundle",s="automattic/onboard/plans",l=o,u=[i,o,a,c],d=["beginner","personal","premium","business","ecommerce"],f=[r,i,o,a,c],m={USD:{format:"SYMBOL_THEN_AMOUNT",symbol:"$",decimal:2},GBP:{format:"SYMBOL_THEN_AMOUNT",symbol:"£",decimal:2},JPY:{format:"SYMBOL_THEN_AMOUNT",symbol:"¥",decimal:0},BRL:{format:"SYMBOL_THEN_AMOUNT",symbol:"R$",decimal:2},EUR:{format:"SYMBOL_THEN_AMOUNT",symbol:"€",decimal:2},NZD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NZ$",decimal:2},AUD:{format:"SYMBOL_THEN_AMOUNT",symbol:"A$",decimal:2},CAD:{format:"SYMBOL_THEN_AMOUNT",symbol:"C$",decimal:2},IDR:{format:"AMOUNT_THEN_SYMBOL",symbol:"Rp",decimal:0},INR:{format:"AMOUNT_THEN_SYMBOL",symbol:"₹",decimal:0},ILS:{format:"AMOUNT_THEN_SYMBOL",symbol:"₪",decimal:2},RUB:{format:"AMOUNT_THEN_SYMBOL",symbol:"₽",decimal:2},MXN:{format:"SYMBOL_THEN_AMOUNT",symbol:"MX$",decimal:2},SEK:{format:"AMOUNT_THEN_SYMBOL",symbol:"SEK",decimal:2},HUF:{format:"AMOUNT_THEN_SYMBOL",symbol:"Ft",decimal:0},CHF:{format:"AMOUNT_THEN_SYMBOL",symbol:"CHF",decimal:2},CZK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kč",decimal:2},DKK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Dkr",decimal:2},HKD:{format:"AMOUNT_THEN_SYMBOL",symbol:"HK$",decimal:2},NOK:{format:"AMOUNT_THEN_SYMBOL",symbol:"Kr",decimal:2},PHP:{format:"AMOUNT_THEN_SYMBOL",symbol:"₱",decimal:2},PLN:{format:"AMOUNT_THEN_SYMBOL",symbol:"PLN",decimal:2},SGD:{format:"SYMBOL_THEN_AMOUNT",symbol:"S$",decimal:2},TWD:{format:"SYMBOL_THEN_AMOUNT",symbol:"NT$",decimal:0},THB:{format:"SYMBOL_THEN_AMOUNT",symbol:"฿",decimal:2},TRY:{format:"AMOUNT_THEN_SYMBOL",symbol:"TL",decimal:2}}},function(e,t){!function(){e.exports=this.wp.primitives}()},function(e,t,n){t.log=function(){var e;return"object"==typeof console&&console.log&&(e=console).log.apply(e,arguments)},t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,i=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(i=r))})),t.splice(i,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],e.exports=n(101)(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},function(e,t,n){var r=n(102),i=n(103),o=n(56),a=n(104);e.exports=function(e){return r(e)||i(e)||o(e)||a()}},function(e,t,n){"use strict";n.d(t,"c",(function(){return P})),n.d(t,"b",(function(){return A})),n.d(t,"a",(function(){return T}));var r,i=n(25),o=n.n(i),a=n(152),c=n(71),s=n.n(c),l=n(43),u=n.n(l),d=n(13),f=n.n(d)()("wpcom-proxy-request"),m="https://public-api.wordpress.com",p=window.location.protocol+"//"+window.location.host,h=function(){var e=!1;try{window.postMessage({toString:function(){e=!0}},"*")}catch(t){}return e}(),b=function(){try{return new window.File(["a"],"test.jpg",{type:"image/jpeg"}),!0}catch(e){return!1}}(),g=null,v=!1,y={},O=!!window.ProgressEvent&&!!window.FormData;f('using "origin": %o',p);var _=function(e,t){var n=Object.assign({},e);f("request(%o)",n),g||x();var i=Object(a.a)();n.callback=i,n.supports_args=!0,n.supports_error_obj=!0,n.supports_progress=O,n.method=String(n.method||"GET").toUpperCase(),f("params object: %o",n);var o=new window.XMLHttpRequest;if(o.params=n,y[i]=o,"function"==typeof t){var c=!1,s=function(e){if(!c){c=!0;var n=e.error||e.err||e;f("error: ",n),f("headers: ",e.headers),t(n,null,e.headers)}};o.addEventListener("load",(function(e){if(!c){c=!0;var n=e.response||o.response;f("body: ",n),f("headers: ",e.headers),t(null,n,e.headers)}})),o.addEventListener("abort",s),o.addEventListener("error",s)}return v?j(n):(f("buffering API request since proxying <iframe> is not yet loaded"),r.push(n)),o},E=function(e,t){return"function"==typeof t?_(e,t):new Promise((function(t,n){_(e,(function(e,r){e?n(e):t(r)}))}))};function j(e){f("sending API request to proxy <iframe> %o",e),e.formData&&function(e){if(!window.chrome||!b)return;for(var t=0;t<e.length;t++){var n=w(e[t][1]);n&&(e[t][1]=new window.File([n],n.name,{type:n.type}))}}(e.formData),g.contentWindow.postMessage(h?JSON.stringify(e):e,m)}function S(e){return e&&"[object File]"===Object.prototype.toString.call(e)}function w(e){return S(e)?e:"object"==typeof e&&S(e.fileContents)?e.fileContents:null}function x(){f("install()"),g&&(f("uninstall()"),window.removeEventListener("message",C),document.body.removeChild(g),v=!1,g=null),r=[],window.addEventListener("message",C),(g=document.createElement("iframe")).src=m+"/wp-admin/rest-proxy/?v=2.0#"+p,g.style.display="none",document.body.appendChild(g)}function C(e){if(f("onmessage"),e.origin===m)if(e.source===g.contentWindow){var t=e.data;if(!t)return f("no `data`, bailing");if("ready"!==t){if(h&&"string"==typeof t&&(t=JSON.parse(t)),t.upload||t.download)return function(e){f('got "progress" event: %o',e);var t=y[e.callbackId];if(t){var n=new u.a("progress",e);(e.upload?t.upload:t).dispatchEvent(n)}}(t);if(!t.length)return f("`e.data` doesn't appear to be an Array, bailing...");var n=t[t.length-1];if(!(n in y))return f("bailing, no matching request with callback: %o",n);var i=y[n],o=i.params,a=t[0],c=t[1],l=t[2];if(207===c||delete y[n],o.metaAPI?c="metaAPIupdated"===a?200:500:f("got %o status code for URL: %o",c,o.path),"object"==typeof l&&(l.status=c),c&&2===Math.floor(c/100))!function(e,t,n){var r=new u.a("load");r.data=r.body=r.response=t,r.headers=n,e.dispatchEvent(r)}(i,a,l);else!function(e,t,n){var r=new u.a("error");r.error=r.err=t,r.headers=n,e.dispatchEvent(r)}(i,s()(o,c,a),l)}else!function(){if(f('proxy <iframe> "load" event'),v=!0,r){for(var e=0;e<r.length;e++)j(r[e]);r=null}}()}else f("ignoring message... iframe elements do not match");else f("ignoring message... %o !== %o",e.origin,m)}var k,N=E,P=function(e){return{type:"WPCOM_REQUEST",request:e}},A=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},T={WPCOM_REQUEST:function(e){var t=e.request;return N(t)},FETCH_AND_PARSE:(k=o()(regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return i=e.sent,e.t0=i.ok,e.next=7,i.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(e){return k.apply(this,arguments)}),RELOAD_PROXY:function(){x()},REQUEST_ALL_BLOGS_ACCESS:function(){return E({metaAPI:{accessAllUsersBlogs:!0}})},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){var r=n(118);e.exports=function(e,t){if(null==e)return{};var n,i,o=r(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i<a.length;i++)n=a[i],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}},function(e,t,n){"use strict";var r=n(58);n.d(t,"DomainSuggestions",(function(){return r}));var i=n(49);n.d(t,"Plans",(function(){return i}));var o=n(68);n.d(t,"Site",(function(){return o}));var a=n(69);n.d(t,"Launch",(function(){return a}));var c=n(70);n.d(t,"WPCOMFeatures",(function(){return c}))},function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return r}));var r,i="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},,function(e,t){!function(){e.exports=this.lodash}()},function(e,t,n){"use strict";n.r(t),n.d(t,"receiveCategories",(function(){return r})),n.d(t,"fetchDomainSuggestions",(function(){return i})),n.d(t,"receiveDomainAvailability",(function(){return o})),n.d(t,"receiveDomainSuggestionsSuccess",(function(){return a})),n.d(t,"receiveDomainSuggestionsError",(function(){return c}));var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},i=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},o=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},c=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},function(e,t){!function(){e.exports=this.wp.compose}()},,function(e,t){function n(e,t,n,r,i,o,a){try{var c=e[o](a),s=c.value}catch(l){return void n(l)}c.done?t(s):Promise.resolve(s).then(r,i)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(i,o){var a=e.apply(t,r);function c(e){n(a,i,o,c,s,"next",e)}function s(e){n(a,i,o,c,s,"throw",e)}c(void 0)}))}}},function(e,t){!function(){e.exports=this.wp.dataControls}()},,,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},,function(e,t,n){"use strict";var r,i="object"==typeof Reflect?Reflect:null,o=i&&"function"==typeof i.apply?i.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=i&&"function"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function c(){c.init.call(this)}e.exports=c,c.EventEmitter=c,c.prototype._events=void 0,c.prototype._eventsCount=0,c.prototype._maxListeners=void 0;var s=10;function l(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function u(e){return void 0===e._maxListeners?c.defaultMaxListeners:e._maxListeners}function d(e,t,n,r){var i,o,a,c;if(l(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=u(e))>0&&a.length>i&&!a.warned){a.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=e,s.type=t,s.count=a.length,c=s,console&&console.warn&&console.warn(c)}return e}function f(){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 m(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=f.bind(r);return i.listener=n,r.wrapFn=i,i}function p(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):b(i,i.length)}function h(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function b(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(c,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),c.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},c.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},c.prototype.getMaxListeners=function(){return u(this)},c.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var c=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw c.context=a,c}var s=i[e];if(void 0===s)return!1;if("function"==typeof s)o(s,this,t);else{var l=s.length,u=b(s,l);for(n=0;n<l;++n)o(u[n],this,t)}return!0},c.prototype.addListener=function(e,t){return d(this,e,t,!1)},c.prototype.on=c.prototype.addListener,c.prototype.prependListener=function(e,t){return d(this,e,t,!0)},c.prototype.once=function(e,t){return l(t),this.on(e,m(this,e,t)),this},c.prototype.prependOnceListener=function(e,t){return l(t),this.prependListener(e,m(this,e,t)),this},c.prototype.removeListener=function(e,t){var n,r,i,o,a;if(l(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},c.prototype.off=c.prototype.removeListener,c.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},c.prototype.listeners=function(e){return p(this,e,!0)},c.prototype.rawListeners=function(e){return p(this,e,!1)},c.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):h.call(e,t)},c.prototype.listenerCount=h,c.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(e,t){e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}},function(e,t,n){"use strict";var r=n(47),i=n(62);function o(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function c(e){return 1===e.length?"0"+e:e}function s(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=i,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),i=0;i<e.length;i+=2)n.push(parseInt(e[i]+e[i+1],16))}else for(var r=0,i=0;i<e.length;i++){var a=e.charCodeAt(i);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):o(e,i)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++i)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|128)}else for(i=0;i<e.length;i++)n[i]=0|e[i];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=c(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e[r];"little"===t&&(i=a(i)),n+=s(i.toString(16))}return n},t.zero2=c,t.zero8=s,t.join32=function(e,t,n,i){var o=n-t;r(o%4==0);for(var a=new Array(o/4),c=0,s=t;c<a.length;c++,s+=4){var l;l="big"===i?e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3]:e[s+3]<<24|e[s+2]<<16|e[s+1]<<8|e[s],a[c]=l>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r<e.length;r++,i+=4){var o=e[r];"big"===t?(n[i]=o>>>24,n[i+1]=o>>>16&255,n[i+2]=o>>>8&255,n[i+3]=255&o):(n[i+3]=o>>>24,n[i+2]=o>>>16&255,n[i+1]=o>>>8&255,n[i]=255&o)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],o=r+e[t+1]>>>0,a=(o<r?1:0)+n+i;e[t]=a>>>0,e[t+1]=o},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,o,a,c){var s=0,l=t;return s+=(l=l+r>>>0)<t?1:0,s+=(l=l+o>>>0)<o?1:0,e+n+i+a+(s+=(l=l+c>>>0)<c?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,i,o,a,c){return t+r+o+c>>>0},t.sum64_5_hi=function(e,t,n,r,i,o,a,c,s,l){var u=0,d=t;return u+=(d=d+r>>>0)<t?1:0,u+=(d=d+o>>>0)<o?1:0,u+=(d=d+c>>>0)<c?1:0,e+n+i+a+s+(u+=(d=d+l>>>0)<l?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,i,o,a,c,s,l){return t+r+o+c+l>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},i={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},o=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:i;return{storageKey:t,storage:{getItem:function(e){var r=o.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?o.getItem(e):(o.removeItem(t),o.removeItem(n),null)},setItem:function(e,t){o.setItem(n,JSON.stringify(Date.now())),o.setItem(e,t)}}}}n.d(t,"a",(function(){return r}))},function(e,t){!function(){e.exports=this.wp.plugins}()},function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var r=n(73),i=n.n(r).a},function(e,t,n){"use strict";var r=n(106),i=n(107),o=n(60);e.exports={formats:o,parse:i,stringify:r}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(112);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(113),i=n(114),o=n(115);e.exports=function(e){var t=i();return function(){var n,i=r(e);if(t){var a=r(this).constructor;n=Reflect.construct(i,arguments,a)}else n=i.apply(this,arguments);return o(this,n)}}},function(e,t,n){"use strict";var r=n(67),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},c={};function s(e){return r.isMemo(e)?a:c[e.$$typeof]||i}c[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},c[r.Memo]=a;var l=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,m=Object.getPrototypeOf,p=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(p){var i=m(n);i&&i!==p&&e(t,i,r)}var a=u(n);d&&(a=a.concat(d(n)));for(var c=s(t),h=s(n),b=0;b<a.length;++b){var g=a[b];if(!(o[g]||r&&r[g]||h&&h[g]||c&&c[g])){var v=f(n,g);try{l(t,g,v)}catch(y){}}}}return t}},function(e,t){var n,r=window.ProgressEvent,i=!!r;try{n=new r("loaded"),i="loaded"===n.type,n=null}catch(o){i=!1}e.exports=i?r:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},function(e,t,n){"use strict";
7
  /*!
8
  * cookie
9
  * Copyright(c) 2012-2014 Roman Shtylman
10
  * Copyright(c) 2015 Douglas Christopher Wilson
11
  * MIT Licensed
12
+ */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var n={},i=t||{},a=e.split(o),s=i.decode||r,l=0;l<a.length;l++){var u=a[l],d=u.indexOf("=");if(!(d<0)){var f=u.substr(0,d).trim(),m=u.substr(++d,u.length).trim();'"'==m[0]&&(m=m.slice(1,-1)),null==n[f]&&(n[f]=c(m,s))}}return n},t.serialize=function(e,t,n){var r=n||{},o=r.encode||i;if("function"!=typeof o)throw new TypeError("option encode is invalid");if(!a.test(e))throw new TypeError("argument name is invalid");var c=o(t);if(c&&!a.test(c))throw new TypeError("argument val is invalid");var s=e+"="+c;if(null!=r.maxAge){var l=r.maxAge-0;if(isNaN(l))throw new Error("maxAge should be a Number");s+="; Max-Age="+Math.floor(l)}if(r.domain){if(!a.test(r.domain))throw new TypeError("option domain is invalid");s+="; Domain="+r.domain}if(r.path){if(!a.test(r.path))throw new TypeError("option path is invalid");s+="; Path="+r.path}if(r.expires){if("function"!=typeof r.expires.toUTCString)throw new TypeError("option expires is invalid");s+="; Expires="+r.expires.toUTCString()}r.httpOnly&&(s+="; HttpOnly");r.secure&&(s+="; Secure");if(r.sameSite){switch("string"==typeof r.sameSite?r.sameSite.toLowerCase():r.sameSite){case!0:s+="; SameSite=Strict";break;case"lax":s+="; SameSite=Lax";break;case"strict":s+="; SameSite=Strict";break;case"none":s+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return s};var r=decodeURIComponent,i=encodeURIComponent,o=/; */,a=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function c(e,t){try{return t(e)}catch(n){return e}}},,function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,i=Array.isArray,o=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],a=o.obj[o.prop],c=Object.keys(a),s=0;s<c.length;++s){var l=c[s],u=a[l];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:a,prop:l}),n.push(u))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(i){return r}},encode:function(e,t,n){if(0===e.length)return e;var r=e;if("symbol"==typeof e?r=Symbol.prototype.toString.call(e):"string"!=typeof e&&(r=String(e)),"iso-8859-1"===n)return escape(r).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var i="",a=0;a<r.length;++a){var c=r.charCodeAt(a);45===c||46===c||95===c||126===c||c>=48&&c<=57||c>=65&&c<=90||c>=97&&c<=122?i+=r.charAt(a):c<128?i+=o[c]:c<2048?i+=o[192|c>>6]+o[128|63&c]:c<55296||c>=57344?i+=o[224|c>>12]+o[128|c>>6&63]+o[128|63&c]:(a+=1,c=65536+((1023&c)<<10|1023&r.charCodeAt(a)),i+=o[240|c>>18]+o[128|c>>12&63]+o[128|c>>6&63]+o[128|63&c])}return i},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,o){if(!n)return t;if("object"!=typeof n){if(i(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(o&&(o.plainObjects||o.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var c=t;return i(t)&&!i(n)&&(c=a(t,o)),i(t)&&i(n)?(n.forEach((function(n,i){if(r.call(t,i)){var a=t[i];a&&"object"==typeof a&&n&&"object"==typeof n?t[i]=e(a,n,o):t.push(n)}else t[i]=n})),t):Object.keys(n).reduce((function(t,i){var a=n[i];return r.call(t,i)?t[i]=e(t[i],a,o):t[i]=a,t}),c)}}},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t,n){"use strict";n.r(t),n.d(t,"PLAN_FREE",(function(){return s.d})),n.d(t,"PLAN_PERSONAL",(function(){return s.e})),n.d(t,"PLAN_PREMIUM",(function(){return s.f})),n.d(t,"PLAN_BUSINESS",(function(){return s.b})),n.d(t,"PLAN_ECOMMERCE",(function(){return s.c})),n.d(t,"plansPaths",(function(){return s.j})),n.d(t,"register",(function(){return V}));var r={};n.r(r),n.d(r,"setFeatures",(function(){return m})),n.d(r,"setFeaturesByType",(function(){return p})),n.d(r,"setPlans",(function(){return h})),n.d(r,"setPrices",(function(){return b})),n.d(r,"resetPlan",(function(){return g}));var i={};n.r(i),n.d(i,"getFeatures",(function(){return v})),n.d(i,"getFeaturesByType",(function(){return y})),n.d(i,"getPlanBySlug",(function(){return O})),n.d(i,"getDefaultPaidPlan",(function(){return _})),n.d(i,"getDefaultFreePlan",(function(){return E})),n.d(i,"getSupportedPlans",(function(){return j})),n.d(i,"getPlanByPath",(function(){return S})),n.d(i,"getPlansDetails",(function(){return w})),n.d(i,"getPlansPaths",(function(){return x})),n.d(i,"getPrices",(function(){return C})),n.d(i,"isPlanEcommerce",(function(){return k})),n.d(i,"isPlanFree",(function(){return N}));var o={};n.r(o),n.d(o,"getPrices",(function(){return F})),n.d(o,"getPlansDetails",(function(){return B}));var a,c=n(3),s=n(11),l=n(10),u=n.n(l),d=(a={},u()(a,s.d,""),u()(a,s.e,""),u()(a,s.f,""),u()(a,s.b,""),u()(a,s.c,""),a),f=Object(c.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return t.features;default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return t.featuresByType;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return t.plans;default:return e}},prices:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:d,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PRICES":return t.prices;default:return e}},supportedPlanSlugs:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s.k,t=arguments.length>1?arguments[1]:void 0;return t.type,e}}),m=function(e){return{type:"SET_FEATURES",features:e}},p=function(e){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e}},h=function(e){return{type:"SET_PLANS",plans:e}},b=function(e){return{type:"SET_PRICES",prices:e}},g=function(){return{type:"RESET_PLAN"}},v=function(e){return e.features},y=function(e){return e.featuresByType},O=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:void 0},_=function(e,t){var n;return null===(n=Object(c.select)(s.g).getPlansDetails(t))||void 0===n?void 0:n.plans[s.a]},E=function(e,t){var n;return null===(n=Object(c.select)(s.g).getPlansDetails(t))||void 0===n?void 0:n.plans[s.d]},j=function(e){var t=[];return e.supportedPlanSlugs.forEach((function(n){n in e.plans&&t.push(e.plans[n])})),t},S=function(e,t){return t?j(e).find((function(e){return(null==e?void 0:e.pathSlug)===t})):void 0},w=function(e,t){return e},x=function(e){return j(e).map((function(e){return null==e?void 0:e.pathSlug}))},C=function(e,t){return e.prices},k=function(e,t){return t===s.c},N=function(e,t){return t===s.d},P=n(6),A=n.n(P),T=n(37),L=n(15),D=regeneratorRuntime.mark(F),R=regeneratorRuntime.mark(B);function I(e){var t=s.h[e.currency_code],n=e.raw_price/12;return Number.isInteger(n)||(n=n.toFixed(t.decimal)),"AMOUNT_THEN_SYMBOL"===t.format?"".concat(n).concat(t.symbol):"".concat(t.symbol).concat(n)}function F(){var e,t,n,r,i=arguments;return regeneratorRuntime.wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return e=i.length>0&&void 0!==i[0]?i[0]:"en",o.next=3,Object(L.c)({path:"/plans",query:Object(T.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=o.sent,n=t.filter((function(e){return-1!==s.k.indexOf(e.product_slug)})),r=n.reduce((function(e,t){return e[t.product_slug]=I(t),e}),{}),o.next=8,b(r);case 8:case"end":return o.stop()}}),D)}var M={Free:s.d,Personal:s.e,Premium:s.f,Business:s.b,eCommerce:s.c};function B(){var e,t,n,r,i,o=arguments;return regeneratorRuntime.wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return e=o.length>0&&void 0!==o[0]?o[0]:"en",a.prev=1,a.next=4,Object(L.b)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 4:return t=a.sent,n=t.body,r={},i={},n.features.forEach((function(e){var t;i[e.id]={id:e.id,name:e.name,description:e.description,type:null!==(t=e.type)&&void 0!==t?t:"checkbox"}})),n.plans.forEach((function(e){var t,n={title:e.short_name,description:e.tagline,productId:e.products[0].plan_id,storeSlug:M[e.nonlocalized_short_name],features:e.highlighted_features,pathSlug:null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase(),featuresSlugs:e.features.reduce((function(e,t){return A()(A()({},e),{},u()({},t,!0))}),{}),storage:e.storage};"Free"===e.nonlocalized_short_name&&(n.isFree=!0),"Premium"===e.nonlocalized_short_name&&(n.isPopular=!0),r[M[e.nonlocalized_short_name]]=n})),a.next=12,h(r);case 12:return a.next=14,m(i);case 14:return a.next=16,p(n.features_by_type);case 16:a.next=21;break;case 18:return a.prev=18,a.t0=a.catch(1),a.abrupt("return");case 21:case"end":return a.stop()}}),R,null,[[1,18]])}var U=!1;function V(){return U||(U=!0,Object(c.registerStore)(s.g,{resolvers:o,actions:r,controls:L.a,reducer:f,selectors:i})),s.g}},function(e,t){!function(){e.exports=this.wp.hooks}()},function(e,t,n){var r=n(142);e.exports=m,e.exports.parse=o,e.exports.compile=function(e,t){return c(o(e,t),t)},e.exports.tokensToFunction=c,e.exports.tokensToRegExp=f;var i=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function o(e,t){for(var n,r=[],o=0,a=0,c="",u=t&&t.delimiter||"/";null!=(n=i.exec(e));){var d=n[0],f=n[1],m=n.index;if(c+=e.slice(a,m),a=m+d.length,f)c+=f[1];else{var p=e[a],h=n[2],b=n[3],g=n[4],v=n[5],y=n[6],O=n[7];c&&(r.push(c),c="");var _=null!=h&&null!=p&&p!==h,E="+"===y||"*"===y,j="?"===y||"*"===y,S=n[2]||u,w=g||v;r.push({name:b||o++,prefix:h||"",delimiter:S,optional:j,repeat:E,partial:_,asterisk:!!O,pattern:w?l(w):O?".*":"[^"+s(S)+"]+?"})}}return a<e.length&&(c+=e.substr(a)),c&&r.push(c),r}function a(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function c(e,t){for(var n=new Array(e.length),i=0;i<e.length;i++)"object"==typeof e[i]&&(n[i]=new RegExp("^(?:"+e[i].pattern+")$",d(t)));return function(t,i){for(var o="",c=t||{},s=(i||{}).pretty?a:encodeURIComponent,l=0;l<e.length;l++){var u=e[l];if("string"!=typeof u){var d,f=c[u.name];if(null==f){if(u.optional){u.partial&&(o+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(r(f)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(f)+"`");if(0===f.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var m=0;m<f.length;m++){if(d=s(f[m]),!n[l].test(d))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(d)+"`");o+=(0===m?u.prefix:u.delimiter)+d}}else{if(d=u.asterisk?encodeURI(f).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):s(f),!n[l].test(d))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+d+'"');o+=u.prefix+d}}else o+=u}return o}}function s(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function l(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function u(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function f(e,t,n){r(t)||(n=t||n,t=[]);for(var i=(n=n||{}).strict,o=!1!==n.end,a="",c=0;c<e.length;c++){var l=e[c];if("string"==typeof l)a+=s(l);else{var f=s(l.prefix),m="(?:"+l.pattern+")";t.push(l),l.repeat&&(m+="(?:"+f+m+")*"),a+=m=l.optional?l.partial?f+"("+m+")?":"(?:"+f+"("+m+"))?":f+"("+m+")"}}var p=s(n.delimiter||"/"),h=a.slice(-p.length)===p;return i||(a=(h?a.slice(0,-p.length):a)+"(?:"+p+"(?=$))?"),a+=o?"$":i&&h?"":"(?="+p+"|$)",u(new RegExp("^"+a,d(n)),t)}function m(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return u(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],i=0;i<e.length;i++)r.push(m(e[i],t,n).source);return u(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return f(o(e,n),t,n)}(e,t,n)}},,,,,function(e,t,n){var r=n(57);e.exports=function(e,t){if(e){if("string"==typeof e)return r(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)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){"use strict";n.r(t),n.d(t,"register",(function(){return m}));var r=n(3),i=n(19),o=n(72),a=n(22),c=n(84),s=n(78),l=n(15),u=n(59);for(var d in u)["default","register"].indexOf(d)<0&&function(e){n.d(t,e,(function(){return u[e]}))}(d);var f=!1;function m(e){var t=e.vendor;return f||(f=!0,Object(r.registerStore)(i.b,{actions:a,controls:l.a,reducer:o.a,resolvers:c,selectors:Object(s.a)(t)})),i.b}},function(e,t){},function(e,t,n){"use strict";var r=String.prototype.replace,i=/%20/g,o=n(46),a={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports=o.assign({default:a.RFC3986,formatters:{RFC1738:function(e){return r.call(e,i,"+")},RFC3986:function(e){return String(e)}}},a)},function(e,t,n){"use strict";function r(e){return function(){return e}}var i=function(){};i.thatReturns=r,i.thatReturnsFalse=r(!1),i.thatReturnsTrue=r(!0),i.thatReturnsNull=r(null),i.thatReturnsThis=function(){return this},i.thatReturnsArgument=function(e){return e},e.exports=i},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t,n){"use strict";var r=n(33),i=n(47);function o(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=o,o.prototype.update=function(e,t){if(e=r.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var i=0;i<e.length;i+=this._delta32)this._update(e,i,i+this._delta32)}return this},o.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},o.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var i=1;i<n;i++)r[i]=0;if(e<<=3,"big"===this.endian){for(var o=8;o<this.padLength;o++)r[i++]=0;r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=e>>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,o=8;o<this.padLength;o++)r[i++]=0;return r}},function(e,t,n){"use strict";var r=n(33).rotr32;function i(e,t,n){return e&t^~e&n}function o(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?i(t,n,r):1===e||3===e?a(t,n,r):2===e?o(t,n,r):void 0},t.ch32=i,t.maj32=o,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";e.exports=n(131)},function(e,t,n){"use strict";n.r(t),n.d(t,"Visibility",(function(){return j})),n.d(t,"register",(function(){return F}));var r={};n.r(r),n.d(r,"getSite",(function(){return _})),n.d(r,"getSiteDomains",(function(){return E}));var i={};n.r(i),n.d(i,"getState",(function(){return S})),n.d(i,"getNewSite",(function(){return w})),n.d(i,"getNewSiteError",(function(){return x})),n.d(i,"isFetchingSite",(function(){return C})),n.d(i,"isFetchingSiteDetails",(function(){return k})),n.d(i,"isNewSite",(function(){return N})),n.d(i,"getSite",(function(){return P})),n.d(i,"getSiteTitle",(function(){return A})),n.d(i,"isLaunched",(function(){return T})),n.d(i,"getSiteDomains",(function(){return L})),n.d(i,"getPrimarySiteDomain",(function(){return D})),n.d(i,"getSiteSubdomain",(function(){return R}));var o=n(3),a="automattic/site",c=n(17),s=n.n(c),l=n(79),u=n.n(l),d=n(10),f=n.n(d),m=n(6),p=n.n(m),h=Object(o.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),b=Object(o.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:h,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return p()(p()({},e),{},f()({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,r=(e[n],s()(e,[n].map(u.a)));return p()({},r)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?p()(p()({},e),{},f()({},t.siteId,p()(p()({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCHED_SITE"===t.type?p()(p()({},e),{},f()({},t.siteId,!0)):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?p()(p()({},e),{},f()({},t.siteId,t.domains)):e}}),g=n(15);function v(e){var t=regeneratorRuntime.mark(u),n=regeneratorRuntime.mark(m),r=regeneratorRuntime.mark(h),i=regeneratorRuntime.mark(b),o=regeneratorRuntime.mark(v),a=function(){return{type:"FETCH_NEW_SITE"}},c=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},l=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function u(n){var r,i,o,a,u;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,r=n.authToken,i=s()(n,["authToken"]),o={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},a=p()(p()(p()({},o),i),{},{validate:!1}),t.next=8,Object(g.c)({path:"/sites/new",apiVersion:"1.1",method:"post",body:a,token:r});case 8:return u=t.sent,t.next=11,c(u);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,l(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var d=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},f=function(e){return{type:"LAUNCHED_SITE",siteId:e}};function m(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,Object(g.c)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 2:return t.next=4,f(e);case 4:return t.abrupt("return",!0);case 5:case"end":return t.stop()}}),n)}function h(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(g.c)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),r)}function b(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,Object(g.c)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),i)}function v(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,Object(g.c)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,d(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),o,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:v,receiveSiteTitle:d,fetchNewSite:a,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:c,receiveNewSiteFailed:l,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:u,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:m,launchedSite:f,getCart:h,setCart:b}}var y=regeneratorRuntime.mark(_),O=regeneratorRuntime.mark(E);function _(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(o.dispatch)(a).fetchSite();case 2:return n.prev=2,n.next=5,Object(g.c)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,Object(o.dispatch)(a).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,Object(o.dispatch)(a).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),y,null,[[2,10]])}function E(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,Object(g.c)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,Object(o.dispatch)(a).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),O,null,[[0,8]])}var j,S=function(e){return e},w=function(e){return e.newSite.data},x=function(e){return e.newSite.error},C=function(e){return e.newSite.isFetching},k=function(e){return e.isFetchingSiteDetails},N=function(e){return!!e.newSite.data},P=function(e,t){return e.sites[t]},A=function(e,t){var n;return null===(n=Object(o.select)(a).getSite(t))||void 0===n?void 0:n.name},T=function(e,t){return e.launchStatus[t]},L=function(e,t){return e.sitesDomains[t]},D=function(e,t){var n;return null===(n=Object(o.select)(a).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},R=function(e,t){var n;return null===(n=Object(o.select)(a).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))};!function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(j||(j={}));var I=!1;function F(e){return I||(I=!0,Object(o.registerStore)(a,{actions:v(e),controls:g.a,reducer:b,resolvers:r,selectors:i})),a}},function(e,t,n){"use strict";n.r(t),n.d(t,"STORE_KEY",(function(){return c})),n.d(t,"register",(function(){return Z}));var r={};n.r(r),n.d(r,"setSidebarFullscreen",(function(){return p})),n.d(r,"unsetSidebarFullscreen",(function(){return h})),n.d(r,"setStep",(function(){return b})),n.d(r,"setDomain",(function(){return g})),n.d(r,"unsetDomain",(function(){return v})),n.d(r,"confirmDomainSelection",(function(){return y})),n.d(r,"setDomainSearch",(function(){return O})),n.d(r,"setPlan",(function(){return _})),n.d(r,"unsetPlan",(function(){return E})),n.d(r,"updatePlan",(function(){return j})),n.d(r,"launchSite",(function(){return S})),n.d(r,"openSidebar",(function(){return w})),n.d(r,"closeSidebar",(function(){return x})),n.d(r,"openFocusedLaunch",(function(){return C})),n.d(r,"closeFocusedLaunch",(function(){return k})),n.d(r,"enableExperimental",(function(){return N})),n.d(r,"showSiteTitleStep",(function(){return P})),n.d(r,"setModalDismissible",(function(){return A})),n.d(r,"unsetModalDismissible",(function(){return T})),n.d(r,"showModalTitle",(function(){return L})),n.d(r,"hideModalTitle",(function(){return D}));var i={};n.r(i),n.d(i,"getLaunchSequence",(function(){return R})),n.d(i,"getLaunchStep",(function(){return I})),n.d(i,"getState",(function(){return F})),n.d(i,"hasPaidDomain",(function(){return M})),n.d(i,"getSelectedDomain",(function(){return B})),n.d(i,"getSelectedPlan",(function(){return U})),n.d(i,"getPaidPlan",(function(){return V})),n.d(i,"isStepCompleted",(function(){return z})),n.d(i,"isFlowCompleted",(function(){return H})),n.d(i,"isFlowStarted",(function(){return q})),n.d(i,"getFirstIncompleteStep",(function(){return $})),n.d(i,"isSiteTitleStepVisible",(function(){return W})),n.d(i,"isModalDismissible",(function(){return G})),n.d(i,"isModalTitleVisible",(function(){return Y})),n.d(i,"isFocusedLaunchOpen",(function(){return K}));var o=n(26),a=n(3),c="automattic/launch",s=window._currentSiteId,l={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},u=[l.Name,l.Domain,l.Plan,l.Final],d=Object(a.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},plan:function(e,t){return"SET_PLAN"===t.type?t.plan:"UNSET_PLAN"!==t.type?e:void 0},paidPlan:function(e,t){var n;return"SET_PLAN"!==t.type||(null===(n=t.plan)||void 0===n?void 0:n.isFree)?e:t.plan},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isExperimental:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_EXPERIMENTAL"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}}),f=regeneratorRuntime.mark(j),m=regeneratorRuntime.mark(S),p=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},h=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},b=function(e){return{type:"SET_STEP",step:e}},g=function(e){return{type:"SET_DOMAIN",domain:e}},v=function(){return{type:"UNSET_DOMAIN"}},y=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},O=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},_=function(e){return{type:"SET_PLAN",plan:e}},E=function(){return{type:"UNSET_PLAN"}};function j(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Object(o.select)("automattic/onboard/plans","getPlanBySlug",e);case 2:return t=n.sent,n.next=5,_(t);case 5:case"end":return n.stop()}}),f)}function S(){var e;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,Object(o.dispatch)("automattic/site","launchSite",s);case 3:return e=t.sent,t.abrupt("return",e);case 7:t.prev=7,t.t0=t.catch(0);case 9:case"end":return t.stop()}}),m,null,[[0,7]])}var w=function(){return{type:"OPEN_SIDEBAR"}},x=function(){return{type:"CLOSE_SIDEBAR"}},C=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},k=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},N=function(){return{type:"ENABLE_EXPERIMENTAL"}},P=function(){return{type:"SHOW_SITE_TITLE_STEP"}},A=function(){return{type:"SET_MODAL_DISMISSIBLE"}},T=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},L=function(){return{type:"SHOW_MODAL_TITLE"}},D=function(){return{type:"HIDE_MODAL_TITLE"}},R=function(){return u},I=function(){return l},F=function(e){return e},M=function(e){return!!e.domain&&!e.domain.is_free},B=function(e){return e.domain},U=function(e){return e.plan},V=function(e){return e.paidPlan},z=function(e,t){if(t===l.Plan)return!!U(e);if(t===l.Name){var n=Object(a.select)("core").getEntityRecord("root","site",void 0);return!!(null==n?void 0:n.title)}return t===l.Domain&&(!!B(e)||e.confirmedDomainSelection)},H=function(e){return u.slice(0,u.length-1).every((function(t){return z(e,t)}))},q=function(e){return u.some((function(t){return z(e,t)}))},$=function(e){return u.find((function(t){return!z(e,t)}))},W=function(e){return e.isSiteTitleStepVisible},G=function(e){return e.isModalDismissible},Y=function(e){return e.isModalTitleVisible},K=function(e){return e.isFocusedLaunchOpen},X=n(34),J=Object(X.a)("WP_LAUNCH");Object(a.use)(a.plugins.persistence,J);var Q=!1;function Z(){return Q||(Q=!0,Object(a.registerStore)(c,{actions:r,controls:o.controls,reducer:d,selectors:i,persist:["domain","domainSearch","plan","confirmedDomainSelection","isExperimental","isSiteTitleStepVisible"]})),c}},function(e,t,n){"use strict";n.r(t),n.d(t,"featuresList",(function(){return d})),n.d(t,"register",(function(){return b}));var r={};n.r(r),n.d(r,"getAllFeatures",(function(){return m})),n.d(r,"getRecommendedPlanSlug",(function(){return p}));var i=n(26),o=n(3),a="automattic/wpcom-features",c=n(11),s=c.e,l=c.f,u=c.b,d={domain:{id:"domain",minSupportedPlan:s},store:{id:"store",minSupportedPlan:c.c},seo:{id:"seo",minSupportedPlan:u},plugins:{id:"plugins",minSupportedPlan:u},"ad-free":{id:"ad-free",minSupportedPlan:s},"image-storage":{id:"image-storage",minSupportedPlan:l},"video-storage":{id:"video-storage",minSupportedPlan:l},support:{id:"support",minSupportedPlan:u}},f=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:d;return e},m=function(e){return e},p=function(e,t){var n=m(e);return t.length?t.reduce((function(e,t){var r=n[t].minSupportedPlan;return c.i.indexOf(r)>c.i.indexOf(e)?r:e}),n[t[0]].minSupportedPlan):""},h=!1;function b(){return h||(h=!0,Object(o.registerStore)(a,{controls:i.controls,reducer:f,selectors:r})),a}},function(e,t,n){var r=n(98),i=n(100);function o(e,t){if(t)if("number"==typeof t)a(e,t);else{t.status_code&&a(e,t.status_code),t.error&&(e.name=s(t.error)),t.error_description&&(e.message=t.error_description);var n=t.errors;if(n)o(e,n.length?n[0]:n);for(var r in t)e[r]=t[r];e.status&&(t.method||t.path)&&c(e)}}function a(e,t){e.name=s(i[t]),e.status=e.statusCode=t,c(e)}function c(e){var t=e.status,n=e.method,r=e.path,i=t+" status code",o=n||r;o&&(i+=' for "'),n&&(i+=n),o&&(i+=" "),r&&(i+=r),o&&(i+='"'),e.message=i}function s(e){return r(String(e).replace(/error$/i,""),"error")}e.exports=function e(){for(var t=new Error,n=0;n<arguments.length;n++)o(t,arguments[n]);"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(t,e);return t}},function(e,t,n){"use strict";var r=n(10),i=n.n(r),o=n(6),a=n.n(o),c=n(3),s=n(19),l=n(36),u={state:s.a.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},d=Object(c.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:u,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?a()(a()({},e),{},{state:s.a.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?a()(a()({},e),{},{state:s.a.Success,data:a()(a()({},e.data),{},i()({},Object(l.a)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?a()(a()({},e),{},{state:s.a.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?a()(a()({},e),{},i()({},t.domainName,t.availability)):e}});t.a=d},function(e,t,n){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,i=t.cmp&&(n=t.cmp,function(e){return function(t,r){var i={key:t,value:e[t]},o={key:r,value:e[r]};return n(i,o)}}),o=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==o.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var c=o.push(t)-1,s=Object.keys(t).sort(i&&i(t));for(a="",n=0;n<s.length;n++){var l=s[n],u=e(t[l]);u&&(a&&(a+=","),a+=JSON.stringify(l)+":"+u)}return o.splice(c,1),"{"+a+"}"}}(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var 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},i=c(n(1)),o=c(n(108)),a=c(n(111));function c(e){return e&&e.__esModule?e:{default:e}}var s=void 0;function l(e,t){var n,a,c,u,d,f,m,p,h=[],b={};for(f=0;f<e.length;f++)if("string"!==(d=e[f]).type){if(!t.hasOwnProperty(d.value)||void 0===t[d.value])throw new Error("Invalid interpolation, missing component node: `"+d.value+"`");if("object"!==r(t[d.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+d.value+"`","\n> "+s);if("componentClose"===d.type)throw new Error("Missing opening component token: `"+d.value+"`");if("componentOpen"===d.type){n=t[d.value],c=f;break}h.push(t[d.value])}else h.push(d.value);return n&&(u=function(e,t){var n,r,i=t[e],o=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===i.value){if("componentOpen"===n.type){o++;continue}if("componentClose"===n.type){if(0===o)return r;o--}}throw new Error("Missing closing component token `"+i.value+"`")}(c,e),m=l(e.slice(c+1,u),t),a=i.default.cloneElement(n,{},m),h.push(a),u<e.length-1&&(p=l(e.slice(u+1),t),h=h.concat(p))),1===h.length?h[0]:(h.forEach((function(e,t){e&&(b["interpolation-child-"+t]=e)})),(0,o.default)(b))}t.default=function(e){var t=e.mixedString,n=e.components,i=e.throwErrors;if(s=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var o=(0,a.default)(t);try{return l(o,n)}catch(c){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+c.message+"`");return t}}},function(e,t,n){var r=n(31),i=n(62);function o(e){if(!(this instanceof o))return new o(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=o,i(o,r.EventEmitter),Object.defineProperty(o.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),o.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},o.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},o.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},o.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},o.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},o.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},o.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},o.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},function(e,t,n){"use strict";var r=n(33),i=n(63),o=n(64),a=r.rotl32,c=r.sum32,s=r.sum32_5,l=o.ft_1,u=i.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function f(){if(!(this instanceof f))return new f;u.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(f,u),e.exports=f,f.blockSize=512,f.outSize=160,f.hmacStrength=80,f.padLength=64,f.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var i=this.h[0],o=this.h[1],u=this.h[2],f=this.h[3],m=this.h[4];for(r=0;r<n.length;r++){var p=~~(r/20),h=s(a(i,5),l(p,o,u,f),m,n[r],d[p]);m=f,f=u,u=a(o,30),o=i,i=h}this.h[0]=c(this.h[0],i),this.h[1]=c(this.h[1],o),this.h[2]=c(this.h[2],u),this.h[3]=c(this.h[3],f),this.h[4]=c(this.h[4],m)},f.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t,n){"use strict";e.exports=n(116)},function(e,t,n){"use strict";var r=n(6),i=n.n(r),o=n(14),a=n.n(o),c=n(3),s=n(19),l=n(36);t.a=function(e){function t(t,n){return i()(i()({include_wordpressdotcom:n.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:e},n),{},{query:t.trim().toLocaleLowerCase()})}return{getCategories:function(e){return[].concat(a()(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),a()(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},getDomainSuggestions:function(e,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=t(n,r);return Object(c.select)(s.b).__internalGetDomainSuggestions(i)},getDomainState:function(e){return e.domainSuggestions.state},getDomainErrorMessage:function(e){return e.domainSuggestions.errorMessage},getDomainSuggestionVendor:function(){return e},isLoadingDomainSuggestions:function(e,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=t(n,r);return Object(c.select)("core/data").isResolving(s.b,"__internalGetDomainSuggestions",[i])},__internalGetDomainSuggestions:function(e,t){return e.domainSuggestions.data[Object(l.a)(t)]},isAvailable:function(e,t){return e.availability[t]},getDomainAvailabilities:function(e){return e.availability}}}},function(e,t,n){var r=n(48),i=n(119);e.exports=function(e){var t=i(e,"string");return"symbol"===r(t)?t:String(t)}},function(e,t,n){"use strict";var r=n(33),i=n(63),o=n(64),a=n(47),c=r.sum32,s=r.sum32_4,l=r.sum32_5,u=o.ch32,d=o.maj32,f=o.s0_256,m=o.s1_256,p=o.g0_256,h=o.g1_256,b=i.BlockHash,g=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function v(){if(!(this instanceof v))return new v;b.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=g,this.W=new Array(64)}r.inherits(v,b),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=s(h(n[r-2]),n[r-7],p(n[r-15]),n[r-16]);var i=this.h[0],o=this.h[1],b=this.h[2],g=this.h[3],v=this.h[4],y=this.h[5],O=this.h[6],_=this.h[7];for(a(this.k.length===n.length),r=0;r<n.length;r++){var E=l(_,m(v),u(v,y,O),this.k[r],n[r]),j=c(f(i),d(i,o,b));_=O,O=y,y=v,v=c(g,E),g=b,b=o,o=i,i=c(E,j)}this.h[0]=c(this.h[0],i),this.h[1]=c(this.h[1],o),this.h[2]=c(this.h[2],b),this.h[3]=c(this.h[3],g),this.h[4]=c(this.h[4],v),this.h[5]=c(this.h[5],y),this.h[6]=c(this.h[6],O),this.h[7]=c(this.h[7],_)},v.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},function(e,t){!function(){e.exports=this.wp.url}()},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){"use strict";var r="__global_unique_id__";e.exports=function(){return window[r]=(window[r]||0)+1}},function(e,t,n){"use strict";n.r(t),n.d(t,"isAvailable",(function(){return ge})),n.d(t,"getCategories",(function(){return ve})),n.d(t,"__internalGetDomainSuggestions",(function(){return ye}));var r,i,o,a,c=n(37),s=n(14),l=n.n(s),u=n(10),d=n.n(u),f=n(13),m=n.n(f),p=n(74),h=n.n(p);r={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},i=["(","?"],o={")":["("],":":["?","?:"]},a=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var b={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function g(e){var t=function(e){for(var t,n,c,s,l=[],u=[];t=e.match(a);){for(n=t[0],(c=e.substr(0,t.index).trim())&&l.push(c);s=u.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(i.indexOf(s)>=0||r[s]<r[n]){u.push(s);break}l.push(s)}o[n]||u.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&l.push(e),l.concat(u.reverse())}(e);return function(e){return function(e,t){var n,r,i,o,a,c,s=[];for(n=0;n<e.length;n++){if(a=e[n],o=b[a]){for(r=o.length,i=Array(r);r--;)i[r]=s.pop();try{c=o.apply(null,i)}catch(l){return l}}else c=t.hasOwnProperty(a)?t[a]:+a;s.push(c)}return s[0]}(t,e)}}var v={contextDelimiter:"",onMissingKey:null};function y(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},v)this.options[n]=void 0!==t&&n in t?t[n]:v[n]}y.prototype.getPluralForm=function(e,t){var n,r,i,o,a=this.pluralForms[e];return a||("function"!=typeof(i=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=g(r),i=function(e){return+o({n:e})}),a=this.pluralForms[e]=i),a(t)},y.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,c;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(c=this.data[e][a])&&c[o]?c[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)};var O=n(75),_=n.n(O),E=n(76),j=n.n(E),S=n(31),w=/%(((\d+)\$)|(\(([$_a-zA-Z][$_a-zA-Z0-9]*)\)))?[ +0#-]*\d*(\.(\d+|\*))?(ll|[lhqL])?([cduxXefgsp%])/g;function x(e,t){var n;if(!Array.isArray(t))for(t=new Array(arguments.length-1),n=1;n<arguments.length;n++)t[n-1]=arguments[n];return n=1,e.replace(w,(function(){var e,r,i,o,a;return e=arguments[3],r=arguments[5],"%"===(o=arguments[9])?"%":("*"===(i=arguments[7])&&(i=t[n-1],n++),void 0!==r?t[0]&&"object"==typeof t[0]&&t[0].hasOwnProperty(r)&&(a=t[0][r]):(void 0===e&&(e=n),n++,a=t[e-1]),"f"===o?a=parseFloat(a)||0:"d"===o&&(a=parseInt(a)||0),void 0!==i&&("f"===o?a=a.toFixed(i):"s"===o&&(a=a.substr(0,i))),null!=a?a:"")}))}
13
+ /*
14
+ * Exposes number format capability
15
+ *
16
+ * @copyright Copyright (c) 2013 Kevin van Zonneveld (http://kvz.io) and Contributors (http://phpjs.org/authors).
17
+ * @license See CREDITS.md
18
+ * @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
19
+ */function C(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,c=void 0===n?".":n,s="";return(s=(o?function(e,t){var n=Math.pow(10,t);return""+(Math.round(e*n)/n).toFixed(t)}(i,o):""+Math.round(i)).split("."))[0].length>3&&(s[0]=s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,a)),(s[1]||"").length<o&&(s[1]=s[1]||"",s[1]+=new Array(o-s[1].length+1).join("0")),s.join(c)}var k=m()("i18n-calypso"),N="number_format_decimals",P="number_format_thousands_sep",A="messages",T=[function(e){return e}],L={};function D(){B.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function R(e){return Array.prototype.slice.call(e)}function I(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&D("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",R(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&D("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",R(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function F(e,t){return e.dcnpgettext(A,t.context,t.original,t.plural,t.count)}function M(e,t){for(var n=T.length-1;n>=0;n--){var r=T[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return F(e.state.tannin,r)}return null}function B(){if(!(this instanceof B))return new B;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:_()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new S.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}B.throwErrors=!1,B.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},B.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},B.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},B.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return C(e,n,r,i)},B.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},B.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var i=e[""]["key-hash"],o=function(e,t){var n=!1===t?"":String(t);if(void 0!==L[n+e])return L[n+e];var r=j()().update(e).digest("hex");return L[n+e]=t?r.substr(0,t):r},a=function(e){return function(t){return t.context?(t.original=o(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=o(t.original,e),t}};if("sha1"===i.substr(0,4))if(4===i.length)T.push(a(!1));else{var c=i.substr(5).indexOf("-");if(c<0){var s=Number(i.substr(5));T.push(a(s))}else for(var l=Number(i.substr(5,c)),u=Number(i.substr(6+c)),f=l;f<=u;f++)T.push(a(f))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new y(d()({},A,this.state.locale)),this.state.numberFormatSettings.decimal_point=F(this.state.tannin,I([N])),this.state.numberFormatSettings.thousands_sep=F(this.state.tannin,I([P])),this.state.numberFormatSettings.decimal_point===N&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===P&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},B.prototype.getLocale=function(){return this.state.locale},B.prototype.getLocaleSlug=function(){return this.state.localeSlug},B.prototype.getLocaleVariant=function(){return this.state.localeVariant},B.prototype.isRtl=function(){return"rtl"===this.state.textDirection},B.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},B.prototype.hasTranslation=function(){return!!M(this,I(arguments))},B.prototype.translate=function(){var e=I(arguments),t=M(this,e);if(t||(t=F(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=x.apply(void 0,l()(n))}catch(i){if(!window||!window.console)return;var r=this.throwErrors?"error":"warn";"string"!=typeof i?window.console[r](i):window.console[r]("i18n sprintf error:",n)}}return e.components&&(t=h()({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},B.prototype.reRenderTranslations=function(){k("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},B.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},B.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)};var U=B,V=n(6),z=n.n(V),H=n(38),q=n.n(H),$=n(39),W=n.n($),G=n(29),Y=n.n(G),K=n(40),X=n.n(K),J=n(41),Q=n.n(J),Z=n(0),ee=n(1),te=n.n(ee),ne=n(8),re=n.n(ne),ie=n(16),oe=n.n(ie),ae=n(77),ce=n(23);var se,le,ue=new U,de=(ue.numberFormat.bind(ue),ue.translate.bind(ue)),fe=(ue.configure.bind(ue),ue.setLocale.bind(ue),ue.getLocale.bind(ue),ue.getLocaleSlug.bind(ue),ue.getLocaleVariant.bind(ue),ue.isRtl.bind(ue),ue.addTranslations.bind(ue),ue.reRenderTranslations.bind(ue),ue.registerComponentUpdateHook.bind(ue),ue.registerTranslateHook.bind(ue),ue.state,ue.stateObserver,ue.on.bind(ue),ue.off.bind(ue),ue.emit.bind(ue),le={numberFormat:(se=ue).numberFormat.bind(se),translate:se.translate.bind(se)},function(e){function t(){var t=e.translate.bind(e);return Object.defineProperty(t,"localeSlug",{get:e.getLocaleSlug.bind(e)}),t}}(ue),function(e){var t={getCurrentValue:function(){return e.isRtl()},subscribe:function(t){return e.on("change",t),function(){return e.off("change",t)}}};function n(){return Object(ae.useSubscription)(t)}var r=Object(ce.createHigherOrderComponent)((function(e){return Object(ee.forwardRef)((function(t,r){var i=n();return Object(Z.createElement)(e,oe()({},t,{isRtl:i,ref:r}))}))}),"WithRTL");return{useRtl:n,withRtl:r}}(ue)),me=(fe.useRtl,fe.withRtl,n(22)),pe=n(15),he=regeneratorRuntime.mark(ve),be=regeneratorRuntime.mark(ye),ge=regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n="https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(t),"/is-available?is_cart_pre_check=true"),e.prev=1,e.next=4,Object(pe.b)(n);case 4:return r=e.sent,i=r.body,e.abrupt("return",Object(me.receiveDomainAvailability)(t,i));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",Object(me.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function ve(){var e;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,Object(pe.b)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=t.sent,t.abrupt("return",Object(me.receiveCategories)(e.body));case 4:case"end":return t.stop()}}),he)}function ye(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(e.query){n.next=2;break}return n.abrupt("return",Object(me.receiveDomainSuggestionsError)("Empty query"));case 2:return n.next=4,Object(me.fetchDomainSuggestions)();case 4:return n.prev=4,n.next=7,Object(pe.c)({apiVersion:"1.1",path:"/domains/suggestions",query:Object(c.stringify)(e)});case 7:t=n.sent,n.next=13;break;case 10:return n.prev=10,n.t0=n.catch(4),n.abrupt("return",Object(me.receiveDomainSuggestionsError)(n.t0.message||de("Error while fetching server response")));case 13:if(t&&""!==t){n.next=15;break}return n.abrupt("return",Object(me.receiveDomainSuggestionsError)(de("Invalid response from the server")));case 15:return n.abrupt("return",Object(me.receiveDomainSuggestionsSuccess)(e,t));case 16:case"end":return n.stop()}}),be,null,[[4,10]])}},,,,,,,,function(e,t){!function(){e.exports=this["a8c-fse-common-data-stores"]}()},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var a,c=e[Symbol.iterator]();!(r=(a=c.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(s){i=!0,o=s}finally{try{r||null==c.return||c.return()}finally{if(i)throw o}}return n}}},function(e,t){e.exports=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(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";var r=n(99);e.exports=function(){var e=r.apply(r,arguments);return e.charAt(0).toUpperCase()+e.slice(1)}},function(e,t,n){"use strict";e.exports=function(){var e=[].map.call(arguments,(function(e){return e.trim()})).filter((function(e){return e.length})).join("-");return e.length?1!==e.length&&/[_.\- ]+/.test(e)?e.replace(/^[_.\- ]+/,"").toLowerCase().replace(/[_.\- ]+(\w|$)/g,(function(e,t){return t.toUpperCase()})):e[0]===e[0].toLowerCase()&&e.slice(1)!==e.slice(1).toLowerCase()?e:e.toLowerCase():""}},function(e,t){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},function(e,t,n){var r=n(14);e.exports=function(e){function t(e){for(var t=0,n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return i.colors[Math.abs(t)%i.colors.length]}function i(e){var n;function r(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];if(r.enabled){var a=r,c=Number(new Date),s=c-(n||c);a.diff=s,a.prev=n,a.curr=c,n=c,t[0]=i.coerce(t[0]),"string"!=typeof t[0]&&t.unshift("%O");var l=0;t[0]=t[0].replace(/%([a-zA-Z%])/g,(function(e,n){if("%%"===e)return e;l++;var r=i.formatters[n];if("function"==typeof r){var o=t[l];e=r.call(a,o),t.splice(l,1),l--}return e})),i.formatArgs.call(a,t);var u=a.log||i.log;u.apply(a,t)}}return r.namespace=e,r.enabled=i.enabled(e),r.useColors=i.useColors(),r.color=t(e),r.destroy=o,r.extend=a,"function"==typeof i.init&&i.init(r),i.instances.push(r),r}function o(){var e=i.instances.indexOf(this);return-1!==e&&(i.instances.splice(e,1),!0)}function a(e,t){var n=i(this.namespace+(void 0===t?":":t)+e);return n.log=this.log,n}function c(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return i.debug=i,i.default=i,i.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},i.disable=function(){var e=[].concat(r(i.names.map(c)),r(i.skips.map(c).map((function(e){return"-"+e})))).join(",");return i.enable(""),e},i.enable=function(e){var t;i.save(e),i.names=[],i.skips=[];var n=("string"==typeof e?e:"").split(/[\s,]+/),r=n.length;for(t=0;t<r;t++)n[t]&&("-"===(e=n[t].replace(/\*/g,".*?"))[0]?i.skips.push(new RegExp("^"+e.substr(1)+"$")):i.names.push(new RegExp("^"+e+"$")));for(t=0;t<i.instances.length;t++){var o=i.instances[t];o.enabled=i.enabled(o.namespace)}},i.enabled=function(e){if("*"===e[e.length-1])return!0;var t,n;for(t=0,n=i.skips.length;t<n;t++)if(i.skips[t].test(e))return!1;for(t=0,n=i.names.length;t<n;t++)if(i.names[t].test(e))return!0;return!1},i.humanize=n(105),Object.keys(e).forEach((function(t){i[t]=e[t]})),i.instances=[],i.names=[],i.skips=[],i.formatters={},i.selectColor=t,i.enable(i.load()),i}},function(e,t,n){var r=n(57);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=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){var n=1e3,r=60*n,i=60*r,o=24*i,a=7*o,c=365.25*o;function s(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}e.exports=function(e,t){t=t||{};var l=typeof e;if("string"===l&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var s=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*c;case"weeks":case"week":case"w":return s*a;case"days":case"day":case"d":return s*o;case"hours":case"hour":case"hrs":case"hr":case"h":return s*i;case"minutes":case"minute":case"mins":case"min":case"m":return s*r;case"seconds":case"second":case"secs":case"sec":case"s":return s*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===l&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=o)return s(e,t,o,"day");if(t>=i)return s(e,t,i,"hour");if(t>=r)return s(e,t,r,"minute");if(t>=n)return s(e,t,n,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=o)return Math.round(e/o)+"d";if(t>=i)return Math.round(e/i)+"h";if(t>=r)return Math.round(e/r)+"m";if(t>=n)return Math.round(e/n)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},function(e,t,n){"use strict";var r=n(46),i=n(60),o=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},c=Array.isArray,s=Array.prototype.push,l=function(e,t){s.apply(e,c(t)?t:[t])},u=Date.prototype.toISOString,d=i.default,f={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:d,formatter:i.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},m=function e(t,n,i,o,a,s,u,d,m,p,h,b,g){var v,y=t;if("function"==typeof u?y=u(n,y):y instanceof Date?y=p(y):"comma"===i&&c(y)&&(y=r.maybeMap(y,(function(e){return e instanceof Date?p(e):e})).join(",")),null===y){if(o)return s&&!b?s(n,f.encoder,g,"key"):n;y=""}if("string"==typeof(v=y)||"number"==typeof v||"boolean"==typeof v||"symbol"==typeof v||"bigint"==typeof v||r.isBuffer(y))return s?[h(b?n:s(n,f.encoder,g,"key"))+"="+h(s(y,f.encoder,g,"value"))]:[h(n)+"="+h(String(y))];var O,_=[];if(void 0===y)return _;if(c(u))O=u;else{var E=Object.keys(y);O=d?E.sort(d):E}for(var j=0;j<O.length;++j){var S=O[j],w=y[S];if(!a||null!==w){var x=c(y)?"function"==typeof i?i(n,S):n:n+(m?"."+S:"["+S+"]");l(_,e(w,x,i,o,a,s,u,d,m,p,h,b,g))}}return _};e.exports=function(e,t){var n,r=e,s=function(e){if(!e)return f;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||f.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=i.default;if(void 0!==e.format){if(!o.call(i.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=i.formatters[n],a=f.filter;return("function"==typeof e.filter||c(e.filter))&&(a=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:f.addQueryPrefix,allowDots:void 0===e.allowDots?f.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:f.charsetSentinel,delimiter:void 0===e.delimiter?f.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:f.encode,encoder:"function"==typeof e.encoder?e.encoder:f.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:f.encodeValuesOnly,filter:a,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:f.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:f.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:f.strictNullHandling}}(t);"function"==typeof s.filter?r=(0,s.filter)("",r):c(s.filter)&&(n=s.filter);var u,d=[];if("object"!=typeof r||null===r)return"";u=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var p=a[u];n||(n=Object.keys(r)),s.sort&&n.sort(s.sort);for(var h=0;h<n.length;++h){var b=n[h];s.skipNulls&&null===r[b]||l(d,m(r[b],b,p,s.strictNullHandling,s.skipNulls,s.encode?s.encoder:null,s.filter,s.sort,s.allowDots,s.serializeDate,s.formatter,s.encodeValuesOnly,s.charset))}var g=d.join(s.delimiter),v=!0===s.addQueryPrefix?"?":"";return s.charsetSentinel&&("iso-8859-1"===s.charset?v+="utf8=%26%2310003%3B&":v+="utf8=%E2%9C%93&"),g.length>0?v+g:""}},function(e,t,n){"use strict";var r=n(46),i=Object.prototype.hasOwnProperty,o=Array.isArray,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},c=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},s=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},l=function(e,t,n,r){if(e){var o=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,c=n.depth>0&&/(\[[^[\]]*])/.exec(o),l=c?o.slice(0,c.index):o,u=[];if(l){if(!n.plainObjects&&i.call(Object.prototype,l)&&!n.allowPrototypes)return;u.push(l)}for(var d=0;n.depth>0&&null!==(c=a.exec(o))&&d<n.depth;){if(d+=1,!n.plainObjects&&i.call(Object.prototype,c[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(c[1])}return c&&u.push("["+o.slice(c.index)+"]"),function(e,t,n,r){for(var i=r?t:s(t,n),o=e.length-1;o>=0;--o){var a,c=e[o];if("[]"===c&&n.parseArrays)a=[].concat(i);else{a=n.plainObjects?Object.create(null):{};var l="["===c.charAt(0)&&"]"===c.charAt(c.length-1)?c.slice(1,-1):c,u=parseInt(l,10);n.parseArrays||""!==l?!isNaN(u)&&c!==l&&String(u)===l&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(a=[])[u]=i:a[l]=i:a={0:i}}i=a}return i}(u,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?a.charset:e.charset;return{allowDots:void 0===e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:a.comma,decoder:"function"==typeof e.decoder?e.decoder:a.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof e?function(e,t){var n,l={},u=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,f=u.split(t.delimiter,d),m=-1,p=t.charset;if(t.charsetSentinel)for(n=0;n<f.length;++n)0===f[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===f[n]?p="utf-8":"utf8=%26%2310003%3B"===f[n]&&(p="iso-8859-1"),m=n,n=f.length);for(n=0;n<f.length;++n)if(n!==m){var h,b,g=f[n],v=g.indexOf("]="),y=-1===v?g.indexOf("="):v+1;-1===y?(h=t.decoder(g,a.decoder,p,"key"),b=t.strictNullHandling?null:""):(h=t.decoder(g.slice(0,y),a.decoder,p,"key"),b=r.maybeMap(s(g.slice(y+1),t),(function(e){return t.decoder(e,a.decoder,p,"value")}))),b&&t.interpretNumericEntities&&"iso-8859-1"===p&&(b=c(b)),g.indexOf("[]=")>-1&&(b=o(b)?[b]:b),i.call(l,h)?l[h]=r.combine(l[h],b):l[h]=b}return l}(e,n):e,d=n.plainObjects?Object.create(null):{},f=Object.keys(u),m=0;m<f.length;++m){var p=f[m],h=l(p,u[p],n,"string"==typeof e);d=r.merge(d,h,n)}return r.compact(d)}},function(e,t,n){"use strict";var r=n(1),i="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,o=n(61),a=n(109),c=n(110),s="function"==typeof Symbol&&Symbol.iterator;function l(e,t){return e&&"object"==typeof e&&null!=e.key?(n=e.key,r={"=":"=0",":":"=2"},"$"+(""+n).replace(/[=:]/g,(function(e){return r[e]}))):t.toString(36);var n,r}function u(e,t,n,r){var o,c=typeof e;if("undefined"!==c&&"boolean"!==c||(e=null),null===e||"string"===c||"number"===c||"object"===c&&e.$$typeof===i)return n(r,e,""===t?"."+l(e,0):t),1;var d=0,f=""===t?".":t+":";if(Array.isArray(e))for(var m=0;m<e.length;m++)d+=u(o=e[m],f+l(o,m),n,r);else{var p=function(e){var t=e&&(s&&e[s]||e["@@iterator"]);if("function"==typeof t)return t}(e);if(p){0;for(var h,b=p.call(e),g=0;!(h=b.next()).done;)d+=u(o=h.value,f+l(o,g++),n,r)}else if("object"===c){0;var v=""+e;a(!1,"Objects are not valid as a React child (found: %s).%s","[object Object]"===v?"object with keys {"+Object.keys(e).join(", ")+"}":v,"")}}return d}var d=/\/+/g;function f(e){return(""+e).replace(d,"$&/")}var m,p,h=b,b=function(e){var t=this;if(t.instancePool.length){var n=t.instancePool.pop();return t.call(n,e),n}return new t(e)},g=function(e){var t=this;a(e instanceof t,"Trying to release an instance into a pool of a different type."),e.destructor(),t.instancePool.length<t.poolSize&&t.instancePool.push(e)};function v(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function y(e,t,n){var i,a,c=e.result,s=e.keyPrefix,l=e.func,u=e.context,d=l.call(u,t,e.count++);Array.isArray(d)?O(d,c,n,o.thatReturnsArgument):null!=d&&(r.isValidElement(d)&&(i=d,a=s+(!d.key||t&&t.key===d.key?"":f(d.key)+"/")+n,d=r.cloneElement(i,{key:a},void 0!==i.props?i.props.children:void 0)),c.push(d))}function O(e,t,n,r,i){var o="";null!=n&&(o=f(n)+"/");var a=v.getPooled(t,o,r,i);!function(e,t,n){null==e||u(e,"",t,n)}(e,y,a),v.release(a)}v.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},m=function(e,t,n,r){var i=this;if(i.instancePool.length){var o=i.instancePool.pop();return i.call(o,e,t,n,r),o}return new i(e,t,n,r)},(p=v).instancePool=[],p.getPooled=m||h,p.poolSize||(p.poolSize=10),p.release=g;e.exports=function(e){if("object"!=typeof e||!e||Array.isArray(e))return c(!1,"React.addons.createFragment only accepts a single object. Got: %s",e),e;if(r.isValidElement(e))return c(!1,"React.addons.createFragment does not accept a ReactElement without a wrapper object."),e;a(1!==e.nodeType,"React.addons.createFragment(...): Encountered an invalid child; DOM elements are not valid children of React components.");var t=[];for(var n in e)O(e[n],t,n,o.thatReturnsArgument);return t}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,i,o,a,c){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,o,a,c],u=0;(s=new Error(t.replace(/%s/g,(function(){return l[u++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},function(e,t,n){"use strict";var r=n(61);e.exports=r},function(e,t,n){"use strict";function r(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(r)}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t){e.exports=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}},function(e,t,n){var r=n(48),i=n(29);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?i(e):t}},function(e,t,n){"use strict";
20
  /** @license React v1.3.0
21
  * use-subscription.production.min.js
22
  *
24
  *
25
  * This source code is licensed under the MIT license found in the
26
  * LICENSE file in the root directory of this source tree.
27
+ */Object.defineProperty(t,"__esModule",{value:!0});var r=n(117),i=n(1);t.useSubscription=function(e){var t=e.getCurrentValue,n=e.subscribe,o=i.useState((function(){return{getCurrentValue:t,subscribe:n,value:t()}}));e=o[0];var a=o[1];return o=e.value,e.getCurrentValue===t&&e.subscribe===n||(o=t(),a({getCurrentValue:t,subscribe:n,value:o})),i.useDebugValue(o),i.useEffect((function(){function e(){if(!i){var e=t();a((function(i){return i.getCurrentValue!==t||i.subscribe!==n||i.value===e?i:r({},i,{value:e})}))}}var i=!1,o=n(e);return e(),function(){i=!0,o()}}),[t,n]),o}},function(e,t,n){"use strict";
28
  /*
29
  object-assign
30
  (c) Sindre Sorhus
31
  @license MIT
32
+ */var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(i){return!1}}()?Object.assign:function(e,t){for(var n,c,s=a(e),l=1;l<arguments.length;l++){for(var u in n=Object(arguments[l]))i.call(n,u)&&(s[u]=n[u]);if(r){c=r(n);for(var d=0;d<c.length;d++)o.call(n,c[d])&&(s[c[d]]=n[c[d]])}}return s}},function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}},function(e,t,n){var r=n(48);e.exports=function(e,t){if("object"!==r(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,t||"default");if("object"!==r(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";
33
  /** @license React v16.13.1
34
  * react-is.production.min.js
35
  *
37
  *
38
  * This source code is licensed under the MIT license found in the
39
  * LICENSE file in the root directory of this source tree.