'f5efe0', ) ); // Set content-width. global $content_width; if ( ! isset( $content_width ) ) { $content_width = 580; } /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // Set post thumbnail size. set_post_thumbnail_size( 1200, 9999 ); // Add custom image size used in Cover Template. add_image_size( 'twentytwenty-fullscreen', 1980, 9999 ); // Custom logo. $logo_width = 120; $logo_height = 90; // If the retina setting is active, double the recommended width and height. if ( get_theme_mod( 'retina_logo', false ) ) { $logo_width = floor( $logo_width * 2 ); $logo_height = floor( $logo_height * 2 ); } add_theme_support( 'custom-logo', array( 'height' => $logo_height, 'width' => $logo_width, 'flex-height' => true, 'flex-width' => true, ) ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', 'navigation-widgets', ) ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); /* * Adds starter content to highlight the theme on fresh sites. * This is done conditionally to avoid loading the starter content on every * page load, as it is a one-off operation only needed once in the customizer. */ if ( is_customize_preview() ) { require get_template_directory() . '/inc/starter-content.php'; add_theme_support( 'starter-content', twentytwenty_get_starter_content() ); } // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * Adds `async` and `defer` support for scripts registered or enqueued * by the theme. */ $loader = new TwentyTwenty_Script_Loader(); if ( version_compare( $GLOBALS['wp_version'], '6.3', '<' ) ) { add_filter( 'script_loader_tag', array( $loader, 'filter_script_loader_tag' ), 10, 2 ); } else { add_filter( 'print_scripts_array', array( $loader, 'migrate_legacy_strategy_script_data' ), 100 ); } } add_action( 'after_setup_theme', 'twentytwenty_theme_support' ); /** * REQUIRED FILES * Include required files. */ require get_template_directory() . '/inc/template-tags.php'; // Handle SVG icons. require get_template_directory() . '/classes/class-twentytwenty-svg-icons.php'; require get_template_directory() . '/inc/svg-icons.php'; // Handle Customizer settings. require get_template_directory() . '/classes/class-twentytwenty-customize.php'; // Require Separator Control class. require get_template_directory() . '/classes/class-twentytwenty-separator-control.php'; // Custom comment walker. require get_template_directory() . '/classes/class-twentytwenty-walker-comment.php'; // Custom page walker. require get_template_directory() . '/classes/class-twentytwenty-walker-page.php'; // Custom script loader class. require get_template_directory() . '/classes/class-twentytwenty-script-loader.php'; // Non-latin language handling. require get_template_directory() . '/classes/class-twentytwenty-non-latin-languages.php'; // Custom CSS. require get_template_directory() . '/inc/custom-css.php'; /** * Register block patterns and pattern categories. * * @since Twenty Twenty 2.8 */ function twentytwenty_register_block_patterns() { require get_template_directory() . '/inc/block-patterns.php'; } add_action( 'init', 'twentytwenty_register_block_patterns' ); /** * Register and Enqueue Styles. * * @since Twenty Twenty 1.0 * @since Twenty Twenty 2.6 Enqueue the CSS file for the variable font. */ function twentytwenty_register_styles() { $theme_version = wp_get_theme()->get( 'Version' ); wp_enqueue_style( 'twentytwenty-style', get_stylesheet_uri(), array(), $theme_version ); wp_style_add_data( 'twentytwenty-style', 'rtl', 'replace' ); // Enqueue the CSS file for the variable font, Inter. wp_enqueue_style( 'twentytwenty-fonts', get_theme_file_uri( '/assets/css/font-inter.css' ), array(), $theme_version, 'all' ); // Add output of Customizer settings as inline style. $customizer_css = twentytwenty_get_customizer_css( 'front-end' ); if ( $customizer_css ) { wp_add_inline_style( 'twentytwenty-style', $customizer_css ); } // Add print CSS. wp_enqueue_style( 'twentytwenty-print-style', get_template_directory_uri() . '/print.css', null, $theme_version, 'print' ); } add_action( 'wp_enqueue_scripts', 'twentytwenty_register_styles' ); /** * Register and Enqueue Scripts. * * @since Twenty Twenty 1.0 */ function twentytwenty_register_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); if ( ( ! is_admin() ) && is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } /* * This script is intentionally printed in the head because it involves the page header. The `defer` script loading * strategy ensures that it does not block rendering; being in the head it will start loading earlier so that it * will execute sooner once the DOM has loaded. The $args array is not used here to avoid unintentional footer * placement in WP<6.3; the wp_script_add_data() call is used instead. */ wp_enqueue_script( 'twentytwenty-js', get_template_directory_uri() . '/assets/js/index.js', array(), $theme_version ); wp_script_add_data( 'twentytwenty-js', 'strategy', 'defer' ); } add_action( 'wp_enqueue_scripts', 'twentytwenty_register_scripts' ); /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @since Twenty Twenty 1.0 * @deprecated Twenty Twenty 2.3 Removed from wp_print_footer_scripts action. * * @link https://git.io/vWdr2 */ function twentytwenty_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- assets/js/skip-link-focus-fix.js`. ?> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <?php } /** * Enqueue non-latin language styles. * * @since Twenty Twenty 1.0 * * @return void */ function twentytwenty_non_latin_languages() { $custom_css = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'front-end' ); if ( $custom_css ) { wp_add_inline_style( 'twentytwenty-style', $custom_css ); } } add_action( 'wp_enqueue_scripts', 'twentytwenty_non_latin_languages' ); /** * Register navigation menus uses wp_nav_menu in five places. * * @since Twenty Twenty 1.0 */ function twentytwenty_menus() { $locations = array( 'primary' => __( 'Desktop Horizontal Menu', 'twentytwenty' ), 'expanded' => __( 'Desktop Expanded Menu', 'twentytwenty' ), 'mobile' => __( 'Mobile Menu', 'twentytwenty' ), 'footer' => __( 'Footer Menu', 'twentytwenty' ), 'social' => __( 'Social Menu', 'twentytwenty' ), ); register_nav_menus( $locations ); } add_action( 'init', 'twentytwenty_menus' ); /** * Get the information about the logo. * * @since Twenty Twenty 1.0 * * @param string $html The HTML output from get_custom_logo (core function). * @return string */ function twentytwenty_get_custom_logo( $html ) { $logo_id = get_theme_mod( 'custom_logo' ); if ( ! $logo_id ) { return $html; } $logo = wp_get_attachment_image_src( $logo_id, 'full' ); if ( $logo ) { // For clarity. $logo_width = esc_attr( $logo[1] ); $logo_height = esc_attr( $logo[2] ); // If the retina logo setting is active, reduce the width/height by half. if ( get_theme_mod( 'retina_logo', false ) ) { $logo_width = floor( $logo_width / 2 ); $logo_height = floor( $logo_height / 2 ); $search = array( '/width=\"\d+\"/iU', '/height=\"\d+\"/iU', ); $replace = array( "width=\"{$logo_width}\"", "height=\"{$logo_height}\"", ); // Add a style attribute with the height, or append the height to the style attribute if the style attribute already exists. if ( false === strpos( $html, ' style=' ) ) { $search[] = '/(src=)/'; $replace[] = "style=\"height: {$logo_height}px;\" src="; } else { $search[] = '/(style="[^"]*)/'; $replace[] = "$1 height: {$logo_height}px;"; } $html = preg_replace( $search, $replace, $html ); } } return $html; } add_filter( 'get_custom_logo', 'twentytwenty_get_custom_logo' ); if ( ! function_exists( 'wp_body_open' ) ) { /** * Shim for wp_body_open, ensuring backward compatibility with versions of WordPress older than 5.2. * * @since Twenty Twenty 1.0 */ function wp_body_open() { /** This action is documented in wp-includes/general-template.php */ do_action( 'wp_body_open' ); } } /** * Include a skip to content link at the top of the page so that users can bypass the menu. * * @since Twenty Twenty 1.0 */ function twentytwenty_skip_link() { echo '<a class="skip-link screen-reader-text" href="#site-content">' . /* translators: Hidden accessibility text. */ __( 'Skip to the content', 'twentytwenty' ) . '</a>'; } add_action( 'wp_body_open', 'twentytwenty_skip_link', 5 ); /** * Register widget areas. * * @since Twenty Twenty 1.0 * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function twentytwenty_sidebar_registration() { // Arguments used in all register_sidebar() calls. $shared_args = array( 'before_title' => '<h2 class="widget-title subheading heading-size-3">', 'after_title' => '</h2>', 'before_widget' => '<div class="widget %2$s"><div class="widget-content">', 'after_widget' => '</div></div>', ); // Footer #1. register_sidebar( array_merge( $shared_args, array( 'name' => __( 'Footer #1', 'twentytwenty' ), 'id' => 'sidebar-1', 'description' => __( 'Widgets in this area will be displayed in the first column in the footer.', 'twentytwenty' ), ) ) ); // Footer #2. register_sidebar( array_merge( $shared_args, array( 'name' => __( 'Footer #2', 'twentytwenty' ), 'id' => 'sidebar-2', 'description' => __( 'Widgets in this area will be displayed in the second column in the footer.', 'twentytwenty' ), ) ) ); } add_action( 'widgets_init', 'twentytwenty_sidebar_registration' ); /** * Enqueue supplemental block editor styles. * * @since Twenty Twenty 1.0 * @since Twenty Twenty 2.4 Removed a script related to the obsolete Squared style of Button blocks. * @since Twenty Twenty 2.6 Enqueue the CSS file for the variable font. */ function twentytwenty_block_editor_styles() { $theme_version = wp_get_theme()->get( 'Version' ); // Enqueue the editor styles. wp_enqueue_style( 'twentytwenty-block-editor-styles', get_theme_file_uri( '/assets/css/editor-style-block.css' ), array(), $theme_version, 'all' ); wp_style_add_data( 'twentytwenty-block-editor-styles', 'rtl', 'replace' ); // Add inline style from the Customizer. $customizer_css = twentytwenty_get_customizer_css( 'block-editor' ); if ( $customizer_css ) { wp_add_inline_style( 'twentytwenty-block-editor-styles', $customizer_css ); } // Enqueue the CSS file for the variable font, Inter. wp_enqueue_style( 'twentytwenty-fonts', get_theme_file_uri( '/assets/css/font-inter.css' ), array(), $theme_version, 'all' ); // Add inline style for non-latin fonts. $custom_css = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'block-editor' ); if ( $custom_css ) { wp_add_inline_style( 'twentytwenty-block-editor-styles', $custom_css ); } } if ( is_admin() && version_compare( $GLOBALS['wp_version'], '6.3', '>=' ) ) { add_action( 'enqueue_block_assets', 'twentytwenty_block_editor_styles', 1, 1 ); } else { add_action( 'enqueue_block_editor_assets', 'twentytwenty_block_editor_styles', 1, 1 ); } /** * Enqueue classic editor styles. * * @since Twenty Twenty 1.0 * @since Twenty Twenty 2.6 Enqueue the CSS file for the variable font. */ function twentytwenty_classic_editor_styles() { $classic_editor_styles = array( '/assets/css/editor-style-classic.css', '/assets/css/font-inter.css', ); add_editor_style( $classic_editor_styles ); } add_action( 'init', 'twentytwenty_classic_editor_styles' ); /** * Output Customizer settings in the classic editor. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution. * * @since Twenty Twenty 1.0 * * @param array $mce_init TinyMCE styles. * @return array TinyMCE styles. */ function twentytwenty_add_classic_editor_customizer_styles( $mce_init ) { $styles = twentytwenty_get_customizer_css( 'classic-editor' ); if ( ! $styles ) { return $mce_init; } if ( ! isset( $mce_init['content_style'] ) ) { $mce_init['content_style'] = $styles . ' '; } else { $mce_init['content_style'] .= ' ' . $styles . ' '; } return $mce_init; } add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_customizer_styles' ); /** * Output non-latin font styles in the classic editor. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution. * * @param array $mce_init TinyMCE styles. * @return array TinyMCE styles. */ function twentytwenty_add_classic_editor_non_latin_styles( $mce_init ) { $styles = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'classic-editor' ); // Return if there are no styles to add. if ( ! $styles ) { return $mce_init; } if ( ! isset( $mce_init['content_style'] ) ) { $mce_init['content_style'] = $styles . ' '; } else { $mce_init['content_style'] .= ' ' . $styles . ' '; } return $mce_init; } add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_non_latin_styles' ); /** * Block Editor Settings. * Add custom colors and font sizes to the block editor. * * @since Twenty Twenty 1.0 */ function twentytwenty_block_editor_settings() { // Block Editor Palette. $editor_color_palette = array( array( 'name' => __( 'Accent Color', 'twentytwenty' ), 'slug' => 'accent', 'color' => twentytwenty_get_color_for_area( 'content', 'accent' ), ), array( 'name' => _x( 'Primary', 'color', 'twentytwenty' ), 'slug' => 'primary', 'color' => twentytwenty_get_color_for_area( 'content', 'text' ), ), array( 'name' => _x( 'Secondary', 'color', 'twentytwenty' ), 'slug' => 'secondary', 'color' => twentytwenty_get_color_for_area( 'content', 'secondary' ), ), array( 'name' => __( 'Subtle Background', 'twentytwenty' ), 'slug' => 'subtle-background', 'color' => twentytwenty_get_color_for_area( 'content', 'borders' ), ), ); // Add the background option. $background_color = get_theme_mod( 'background_color' ); if ( ! $background_color ) { $background_color_arr = get_theme_support( 'custom-background' ); $background_color = $background_color_arr[0]['default-color']; } $editor_color_palette[] = array( 'name' => __( 'Background Color', 'twentytwenty' ), 'slug' => 'background', 'color' => '#' . $background_color, ); // If we have accent colors, add them to the block editor palette. if ( $editor_color_palette ) { add_theme_support( 'editor-color-palette', $editor_color_palette ); } // Block Editor Font Sizes. add_theme_support( 'editor-font-sizes', array( array( 'name' => _x( 'Small', 'Name of the small font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'S', 'Short name of the small font size in the block editor.', 'twentytwenty' ), 'size' => 18, 'slug' => 'small', ), array( 'name' => _x( 'Regular', 'Name of the regular font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'M', 'Short name of the regular font size in the block editor.', 'twentytwenty' ), 'size' => 21, 'slug' => 'normal', ), array( 'name' => _x( 'Large', 'Name of the large font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'L', 'Short name of the large font size in the block editor.', 'twentytwenty' ), 'size' => 26.25, 'slug' => 'large', ), array( 'name' => _x( 'Larger', 'Name of the larger font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'XL', 'Short name of the larger font size in the block editor.', 'twentytwenty' ), 'size' => 32, 'slug' => 'larger', ), ) ); add_theme_support( 'editor-styles' ); // If we have a dark background color then add support for dark editor style. // We can determine if the background color is dark by checking if the text-color is white. if ( '#ffffff' === strtolower( twentytwenty_get_color_for_area( 'content', 'text' ) ) ) { add_theme_support( 'dark-editor-style' ); } } add_action( 'after_setup_theme', 'twentytwenty_block_editor_settings' ); /** * Overwrite default more tag with styling and screen reader markup. * * @param string $html The default output HTML for the more tag. * @return string */ function twentytwenty_read_more_tag( $html ) { return preg_replace( '/<a(.*)>(.*)<\/a>/iU', sprintf( '<div class="read-more-button-wrap"><a$1><span class="faux-button">$2</span> <span class="screen-reader-text">"%1$s"</span></a></div>', get_the_title( get_the_ID() ) ), $html ); } add_filter( 'the_content_more_link', 'twentytwenty_read_more_tag' ); /** * Enqueues scripts for customizer controls & settings. * * @since Twenty Twenty 1.0 * * @return void */ function twentytwenty_customize_controls_enqueue_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); // Add main customizer js file. wp_enqueue_script( 'twentytwenty-customize', get_template_directory_uri() . '/assets/js/customize.js', array( 'jquery' ), $theme_version ); // Add script for color calculations. wp_enqueue_script( 'twentytwenty-color-calculations', get_template_directory_uri() . '/assets/js/color-calculations.js', array( 'wp-color-picker' ), $theme_version ); // Add script for controls. wp_enqueue_script( 'twentytwenty-customize-controls', get_template_directory_uri() . '/assets/js/customize-controls.js', array( 'twentytwenty-color-calculations', 'customize-controls', 'underscore', 'jquery' ), $theme_version ); wp_localize_script( 'twentytwenty-customize-controls', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() ); } add_action( 'customize_controls_enqueue_scripts', 'twentytwenty_customize_controls_enqueue_scripts' ); /** * Enqueue scripts for the customizer preview. * * @since Twenty Twenty 1.0 * * @return void */ function twentytwenty_customize_preview_init() { $theme_version = wp_get_theme()->get( 'Version' ); wp_enqueue_script( 'twentytwenty-customize-preview', get_theme_file_uri( '/assets/js/customize-preview.js' ), array( 'customize-preview', 'customize-selective-refresh', 'jquery' ), $theme_version, array( 'in_footer' => true ) ); wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() ); wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyPreviewEls', twentytwenty_get_elements_array() ); wp_add_inline_script( 'twentytwenty-customize-preview', sprintf( 'wp.customize.selectiveRefresh.partialConstructor[ %1$s ].prototype.attrs = %2$s;', wp_json_encode( 'cover_opacity' ), wp_json_encode( twentytwenty_customize_opacity_range() ) ) ); } add_action( 'customize_preview_init', 'twentytwenty_customize_preview_init' ); /** * Get accessible color for an area. * * @since Twenty Twenty 1.0 * * @param string $area The area we want to get the colors for. * @param string $context Can be 'text' or 'accent'. * @return string Returns a HEX color. */ function twentytwenty_get_color_for_area( $area = 'content', $context = 'text' ) { // Get the value from the theme-mod. $settings = get_theme_mod( 'accent_accessible_colors', array( 'content' => array( 'text' => '#000000', 'accent' => '#cd2653', 'secondary' => '#6d6d6d', 'borders' => '#dcd7ca', ), 'header-footer' => array( 'text' => '#000000', 'accent' => '#cd2653', 'secondary' => '#6d6d6d', 'borders' => '#dcd7ca', ), ) ); // If we have a value return it. if ( isset( $settings[ $area ] ) && isset( $settings[ $area ][ $context ] ) ) { return $settings[ $area ][ $context ]; } // Return false if the option doesn't exist. return false; } /** * Returns an array of variables for the customizer preview. * * @since Twenty Twenty 1.0 * * @return array */ function twentytwenty_get_customizer_color_vars() { $colors = array( 'content' => array( 'setting' => 'background_color', ), 'header-footer' => array( 'setting' => 'header_footer_background_color', ), ); return $colors; } /** * Get an array of elements. * * @since Twenty Twenty 1.0 * * @return array */ function twentytwenty_get_elements_array() { // The array is formatted like this: // [key-in-saved-setting][sub-key-in-setting][css-property] = [elements]. $elements = array( 'content' => array( 'accent' => array( 'color' => array( '.color-accent', '.color-accent-hover:hover', '.color-accent-hover:focus', ':root .has-accent-color', '.has-drop-cap:not(:focus):first-letter', '.wp-block-button.is-style-outline', 'a' ), 'border-color' => array( 'blockquote', '.border-color-accent', '.border-color-accent-hover:hover', '.border-color-accent-hover:focus' ), 'background-color' => array( 'button', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file .wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.bg-accent', '.bg-accent-hover:hover', '.bg-accent-hover:focus', ':root .has-accent-background-color', '.comment-reply-link' ), 'fill' => array( '.fill-children-accent', '.fill-children-accent *' ), ), 'background' => array( 'color' => array( ':root .has-background-color', 'button', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.wp-block-button', '.comment-reply-link', '.has-background.has-primary-background-color:not(.has-text-color)', '.has-background.has-primary-background-color *:not(.has-text-color)', '.has-background.has-accent-background-color:not(.has-text-color)', '.has-background.has-accent-background-color *:not(.has-text-color)' ), 'background-color' => array( ':root .has-background-background-color' ), ), 'text' => array( 'color' => array( 'body', '.entry-title a', ':root .has-primary-color' ), 'background-color' => array( ':root .has-primary-background-color' ), ), 'secondary' => array( 'color' => array( 'cite', 'figcaption', '.wp-caption-text', '.post-meta', '.entry-content .wp-block-archives li', '.entry-content .wp-block-categories li', '.entry-content .wp-block-latest-posts li', '.wp-block-latest-comments__comment-date', '.wp-block-latest-posts__post-date', '.wp-block-embed figcaption', '.wp-block-image figcaption', '.wp-block-pullquote cite', '.comment-metadata', '.comment-respond .comment-notes', '.comment-respond .logged-in-as', '.pagination .dots', '.entry-content hr:not(.has-background)', 'hr.styled-separator', ':root .has-secondary-color' ), 'background-color' => array( ':root .has-secondary-background-color' ), ), 'borders' => array( 'border-color' => array( 'pre', 'fieldset', 'input', 'textarea', 'table', 'table *', 'hr' ), 'background-color' => array( 'caption', 'code', 'code', 'kbd', 'samp', '.wp-block-table.is-style-stripes tbody tr:nth-child(odd)', ':root .has-subtle-background-background-color' ), 'border-bottom-color' => array( '.wp-block-table.is-style-stripes' ), 'border-top-color' => array( '.wp-block-latest-posts.is-grid li' ), 'color' => array( ':root .has-subtle-background-color' ), ), ), 'header-footer' => array( 'accent' => array( 'color' => array( 'body:not(.overlay-header) .primary-menu > li > a', 'body:not(.overlay-header) .primary-menu > li > .icon', '.modal-menu a', '.footer-menu a, .footer-widgets a:where(:not(.wp-block-button__link))', '#site-footer .wp-block-button.is-style-outline', '.wp-block-pullquote:before', '.singular:not(.overlay-header) .entry-header a', '.archive-header a', '.header-footer-group .color-accent', '.header-footer-group .color-accent-hover:hover' ), 'background-color' => array( '.social-icons a', '#site-footer button:not(.toggle)', '#site-footer .button', '#site-footer .faux-button', '#site-footer .wp-block-button__link', '#site-footer .wp-block-file__button', '#site-footer input[type="button"]', '#site-footer input[type="reset"]', '#site-footer input[type="submit"]' ), ), 'background' => array( 'color' => array( '.social-icons a', 'body:not(.overlay-header) .primary-menu ul', '.header-footer-group button', '.header-footer-group .button', '.header-footer-group .faux-button', '.header-footer-group .wp-block-button:not(.is-style-outline) .wp-block-button__link', '.header-footer-group .wp-block-file__button', '.header-footer-group input[type="button"]', '.header-footer-group input[type="reset"]', '.header-footer-group input[type="submit"]' ), 'background-color' => array( '#site-header', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal', '.menu-modal-inner', '.search-modal-inner', '.archive-header', '.singular .entry-header', '.singular .featured-media:before', '.wp-block-pullquote:before' ), ), 'text' => array( 'color' => array( '.header-footer-group', 'body:not(.overlay-header) #site-header .toggle', '.menu-modal .toggle' ), 'background-color' => array( 'body:not(.overlay-header) .primary-menu ul' ), 'border-bottom-color' => array( 'body:not(.overlay-header) .primary-menu > li > ul:after' ), 'border-left-color' => array( 'body:not(.overlay-header) .primary-menu ul ul:after' ), ), 'secondary' => array( 'color' => array( '.site-description', 'body:not(.overlay-header) .toggle-inner .toggle-text', '.widget .post-date', '.widget .rss-date', '.widget_archive li', '.widget_categories li', '.widget cite', '.widget_pages li', '.widget_meta li', '.widget_nav_menu li', '.powered-by-wordpress', '.footer-credits .privacy-policy', '.to-the-top', '.singular .entry-header .post-meta', '.singular:not(.overlay-header) .entry-header .post-meta a' ), ), 'borders' => array( 'border-color' => array( '.header-footer-group pre', '.header-footer-group fieldset', '.header-footer-group input', '.header-footer-group textarea', '.header-footer-group table', '.header-footer-group table *', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal nav *', '.footer-widgets-outer-wrapper', '.footer-top' ), 'background-color' => array( '.header-footer-group table caption', 'body:not(.overlay-header) .header-inner .toggle-wrapper::before' ), ), ), ); /** * Filters Twenty Twenty theme elements. * * @since Twenty Twenty 1.0 * * @param array Array of elements. */ return apply_filters( 'twentytwenty_get_elements_array', $elements ); } ℼ佄呃偙⁅瑨汭ਾ㰊瑨汭挠慬獳∽潮樭≳搠物∽瑲≬氠湡㵧昢ⵡ剉㸢ਊ㰉敨摡ਾऊ㰉敭慴挠慨獲瑥∽呕ⵆ∸ਾउ洼瑥⁡慮敭∽楶睥潰瑲•潣瑮湥㵴眢摩桴搽癥捩ⵥ楷瑤ⱨ椠楮楴污猭慣敬ㄽ〮㸢ਊउ氼湩敲㵬瀢潲楦敬•牨晥∽瑨灴㩳⼯浧杰漮杲砯湦ㄯ∱ਾऊ㰉敭慴渠浡㵥爧扯瑯❳挠湯整瑮✽慭⵸浩条ⵥ牰癥敩㩷慬杲❥⼠ਾ㰉瑳汹㹥浩㩧獩嬨楳敺㵳愢瑵≯椠ⱝ嬠楳敺平∽畡潴∬椠⥝笠挠湯慴湩椭瑮楲獮捩猭穩㩥㌠〰瀰⁸㔱〰硰素⼼瑳汹㹥ऊ氼湩敲㵬愢瑬牥慮整•祴数∽灡汰捩瑡潩⽮獲⭳浸≬琠瑩敬∽藙곘蓙蟙₩뻙Ꟙ뇘돘☠慲畱㭯₱꿘께꫘뇘꣘蛚蟙₩꣘뇘蛚돘꣘•牨晥∽瑨灴㩳⼯敹火牡⹳潣⽭昿敥㵤獲㉳⌦㌰㬸慴㵧搥┹ㄸ搥┸ㅢ搥┸㝡搥┸ㅢ┭㡤愥╦㡤愥╥㡤愥╡㡤戥┱㡤愥┸慤㠥┶㥤㠥∷⼠ਾ猼牣灩⁴祴数∽整瑸樯癡獡牣灩≴ਾ⨯㰠嬡䑃呁孁⨠ਯ楷摮睯弮灷浥橯卩瑥楴杮⁳‽≻慢敳牕≬∺瑨灴㩳⽜⽜⹳⹷牯屧椯慭敧屳振牯履支潭楪⽜㘱〮ㄮ⽜㈷㝸尲∯∬硥≴∺瀮杮Ⱒ猢杶牕≬∺瑨灴㩳⽜⽜⹳⹷牯屧椯慭敧屳振牯履支潭楪⽜㘱〮ㄮ⽜癳屧∯∬癳䕧瑸㨢⸢癳≧∬潳牵散㨢≻潣据瑡浥橯≩∺瑨灴㩳⽜⽜敹火牡⹳潣屭眯⵰湩汣摵獥⽜獪⽜灷攭潭楪爭汥慥敳洮湩樮㽳敶㵲⸶⸸∲絽਻⨯‡桔獩映汩⁥獩愠瑵ⵯ敧敮慲整⁤⼪ℊ畦据楴湯猨測笩慶⁲ⱯⱩ㭥畦据楴湯挠攨笩牴筹慶⁲㵴獻灵潰瑲敔瑳㩳ⱥ楴敭瑳浡㩰渨睥䐠瑡⥥瘮污敵晏⤨㭽敳獳潩卮潴慲敧献瑥瑉浥漨䨬体⹎瑳楲杮晩⡹⥴紩慣捴⡨⥥絻晽湵瑣潩⡰ⱥⱴ⥮敻挮敬牡敒瑣〨〬攬挮湡慶⹳楷瑤ⱨ⹥慣癮獡栮楥桧⥴攬昮汩呬硥⡴ⱴⰰ⤰瘻牡琠渽睥唠湩㍴䄲牲祡攨朮瑥浉条䑥瑡⡡ⰰⰰ⹥慣癮獡眮摩桴攬挮湡慶⹳敨杩瑨⸩慤慴Ⱙ㵡攨挮敬牡敒瑣〨〬攬挮湡慶⹳楷瑤ⱨ⹥慣癮獡栮楥桧⥴攬昮汩呬硥⡴Ɱⰰ⤰測睥唠湩㍴䄲牲祡攨朮瑥浉条䑥瑡⡡ⰰⰰ⹥慣癮獡眮摩桴攬挮湡慶⹳敨杩瑨⸩慤慴⤩爻瑥牵⹴癥牥⡹畦据楴湯攨琬笩敲畴湲攠㴽愽瑛絝紩畦据楴湯甠攨琬笩⹥汣慥割捥⡴ⰰⰰ⹥慣癮獡眮摩桴攬挮湡慶⹳敨杩瑨Ⱙ⹥楦汬敔瑸琨〬〬㬩潦⡲慶⁲㵮⹥敧䥴慭敧慄慴ㄨⰶ㘱ㄬㄬⰩ㵡㬰㱡⹮慤慴氮湥瑧㭨⭡⤫晩〨㴡渽搮瑡孡嵡爩瑥牵Ⅾ㬱敲畴湲〡晽湵瑣潩⡦ⱥⱴⱮ⥡獻楷捴⡨⥴捻獡≥汦条㨢敲畴湲渠攨∬畜㡤挳畜晤㍦畜敦昰畜〲搰畜㘲㝡畜敦昰Ⱒ尢摵㌸屣摵晦尳晵づ屦㉵〰屢㉵愶尷晵づ≦㼩ㄡ℺⡮ⱥ尢摵㌸屣摵敤尸摵㌸屣摵晤∶∬畜㡤挳畜摤㡥畜〲戰畜㡤挳畜摤㙦⤢☦渡攨∬畜㡤挳畜晤㑦畜扤〴畜捤㜶畜扤〴畜捤㈶畜扤〴畜捤㔶畜扤〴畜捤收畜扤〴畜捤㜶畜扤〴畜捤昷Ⱒ尢摵㌸屣摵晦尴㉵〰屢摵㑢尰摵㙣尷㉵〰屢摵㑢尰摵㙣尲㉵〰屢摵㑢尰摵㙣尵㉵〰屢摵㑢尰摵㙣履㉵〰屢摵㑢尰摵㙣尷㉵〰屢摵㑢尰摵㝣≦㬩慣敳攢潭楪㨢敲畴湲愡攨∬畜㡤攳畜敤晤⤢牽瑥牵Ⅾ紱畦据楴湯朠攨琬測愬笩慶⁲㵲產摮晥湩摥™琽灹潥⁦潗歲牥汇扯污捓灯♥猦汥⁦湩瑳湡散景圠牯敫䝲潬慢卬潣数渿睥传晦捳敲湥慃癮獡㌨〰ㄬ〵㨩⹳牣慥整汅浥湥⡴挢湡慶≳Ⱙ㵯⹲敧䍴湯整瑸∨搲Ⱒ睻汩剬慥䙤敲畱湥汴㩹〡⥽椬⠽⹯整瑸慂敳楬敮∽潴≰漬昮湯㵴㘢〰㌠瀲⁸牁慩≬第⥽爻瑥牵⹥潦䕲捡⡨畦据楴湯攨笩孩嵥琽漨攬測愬紩Ⱙ絩畦据楴湯琠攨笩慶⁲㵴⹳牣慥整汅浥湥⡴猢牣灩≴㬩⹴牳㵣ⱥ⹴敤敦㵲〡猬栮慥⹤灡数摮桃汩⡤⥴≽湵敤楦敮≤㴡祴数景倠潲業敳☦漨∽灷浅橯卩瑥楴杮即灵潰瑲≳椬嬽昢慬≧∬浥橯≩ⱝ⹮畳灰牯獴笽癥牥瑹楨杮℺ⰰ癥牥瑹楨杮硅散瑰汆条℺細攬渽睥倠潲業敳昨湵瑣潩⡮⥥獻愮摤癅湥䱴獩整敮⡲䐢䵏潃瑮湥䱴慯敤≤攬第湯散℺細紩Ⱙ敮⁷牐浯獩⡥畦据楴湯琨笩慶⁲㵮畦据楴湯⤨瑻祲登牡攠䨽体⹎慰獲⡥敳獳潩卮潴慲敧朮瑥瑉浥漨⤩椻⡦漢橢捥≴㴽祴数景攠☦渢浵敢≲㴽祴数景攠琮浩獥慴灭☦渨睥䐠瑡⥥瘮污敵晏⤨攼琮浩獥慴灭㘫㐰〸☰∦扯敪瑣㴢琽灹潥⁦⹥畳灰牯呴獥獴爩瑥牵⹥畳灰牯呴獥獴捽瑡档攨笩牽瑥牵畮汬⡽㬩晩ℨ⥮楻⡦產摮晥湩摥™琽灹潥⁦潗歲牥☦產摮晥湩摥™琽灹潥⁦晏獦牣敥䍮湡慶♳∦湵敤楦敮≤㴡祴数景唠䱒☦剕⹌牣慥整扏敪瑣剕♌∦湵敤楦敮≤㴡祴数景䈠潬⥢牴筹慶⁲㵥瀢獯䵴獥慳敧∨末琮卯牴湩⡧⬩⠢⬢䩛体⹎瑳楲杮晩⡹⥩昬琮卯牴湩⡧Ⱙ⹰潴瑓楲杮⤨甬琮卯牴湩⡧崩樮楯⡮Ⱒ⤢∫⤩∻愬渽睥䈠潬⡢敛ⱝ瑻灹㩥琢硥⽴慪慶捳楲瑰索Ⱙ㵲敮⁷潗歲牥唨䱒挮敲瑡佥橢捥啴䱒愨Ⱙ湻浡㩥眢呰獥䕴潭楪畓灰牯獴索㬩敲畴湲瘠楯⡤⹲湯敭獳条㵥畦据楴湯攨笩⡣㵮⹥慤慴Ⱙ⹲整浲湩瑡⡥Ⱙ⡴⥮⥽捽瑡档攨笩捽渨朽椨昬瀬甬⤩瑽渨紩⸩桴湥昨湵瑣潩⡮⥥晻牯瘨牡琠椠⥥⹮畳灰牯獴瑛㵝孥嵴測献灵潰瑲⹳癥牥瑹楨杮渽献灵潰瑲⹳癥牥瑹楨杮☦⹮畳灰牯獴瑛ⱝ昢慬≧㴡琽☦渨献灵潰瑲⹳癥牥瑹楨杮硅散瑰汆条渽献灵潰瑲⹳癥牥瑹楨杮硅散瑰汆条☦⹮畳灰牯獴瑛⥝渻献灵潰瑲⹳癥牥瑹楨杮硅散瑰汆条渽献灵潰瑲⹳癥牥瑹楨杮硅散瑰汆条☦渡献灵潰瑲⹳汦条測䐮䵏敒摡㵹ㄡ測爮慥祤慃汬慢正昽湵瑣潩⡮笩⹮佄前慥祤ℽ細⥽琮敨⡮畦据楴湯⤨牻瑥牵絥⸩桴湥昨湵瑣潩⡮笩慶⁲㭥⹮畳灰牯獴攮敶祲桴湩籧⡼⹮敲摡䍹污扬捡⡫Ⱙ攨渽献畯捲籥筼⥽挮湯慣整潭楪琿攨挮湯慣整潭楪㨩⹥灷浥橯♩攦琮敷潭楪☦琨攨琮敷潭楪Ⱙ⡴⹥灷浥橯⥩⤩⥽紩⠨楷摮睯搬捯浵湥⥴眬湩潤⹷睟数潭楪敓瑴湩獧㬩⼊‪嵝‾⼪㰊猯牣灩㹴㰊瑳汹⁥摩✽灷攭潭楪猭祴敬⵳湩楬敮挭獳‧祴数✽整瑸振獳㸧ਊ椉杭眮⵰浳汩祥‬浩⹧浥橯⁩੻उ楤灳慬㩹椠汮湩⁥椡灭牯慴瑮਻उ潢摲牥›潮敮℠浩潰瑲湡㭴ऊ戉硯猭慨潤㩷渠湯⁥椡灭牯慴瑮਻उ敨杩瑨›攱椡灭牯慴瑮਻उ楷瑤㩨ㄠ浥℠浩潰瑲湡㭴ऊ洉牡楧㩮〠〠〮攷椡灭牯慴瑮਻उ敶瑲捩污愭楬湧›〭ㄮ浥℠浩潰瑲湡㭴ऊ戉捡杫潲湵㩤渠湯⁥椡灭牯慴瑮਻उ慰摤湩㩧〠℠浩潰瑲湡㭴ऊ੽⼼瑳汹㹥㰊楬歮爠汥✽瑳汹獥敨瑥‧摩✽灷戭潬正氭扩慲祲爭汴挭獳‧牨晥✽瑨灴㩳⼯敹火牡⹳潣⽭灷椭据畬敤⽳獣⽳楤瑳戯潬正氭扩慲祲猯祴敬爭汴洮湩挮獳瘿牥㘽㠮㈮‧祴数✽整瑸振獳‧敭楤㵡愧汬‧㸯㰊瑳汹⁥摩✽汣獡楳ⵣ桴浥ⵥ瑳汹獥椭汮湩ⵥ獣❳琠灹㵥琧硥⽴獣❳ਾ⨯‡桔獩映汩⁥獩愠瑵ⵯ敧敮慲整⁤⼪⸊灷戭潬正戭瑵潴彮江湩筫潣潬㩲昣晦戻捡杫潲湵ⵤ潣潬㩲㌣㌲㌷㭣潢摲牥爭摡畩㩳㤹㤹硰戻硯猭慨潤㩷潮敮琻硥⵴敤潣慲楴湯渺湯㭥慰摤湩㩧慣捬⸨㘶攷‫瀲⥸挠污⡣⸱㌳攳‫瀲⥸昻湯⵴楳敺ㄺㄮ㔲浥⹽灷戭潬正昭汩彥扟瑵潴筮慢正牧畯摮⌺㈳㜳挳挻汯牯⌺晦㭦整瑸搭捥牯瑡潩㩮潮敮੽⼼瑳汹㹥㰊瑳汹⁥摩✽汧扯污猭祴敬⵳湩楬敮挭獳‧祴数✽整瑸振獳㸧㨊潲瑯⵻眭⵰瀭敲敳⵴愭灳捥⵴慲楴ⵯ猭畱牡㩥ㄠⴻ眭⵰瀭敲敳⵴愭灳捥⵴慲楴ⵯ㐭㌭›⼴㬳ⴭ灷ⴭ牰獥瑥ⴭ獡数瑣爭瑡潩ⴭⴳ㨴㌠㐯ⴻ眭⵰瀭敲敳⵴愭灳捥⵴慲楴ⵯ㌭㈭›⼳㬲ⴭ灷ⴭ牰獥瑥ⴭ獡数瑣爭瑡潩ⴭⴲ㨳㈠㌯ⴻ眭⵰瀭敲敳⵴愭灳捥⵴慲楴ⵯㄭⴶ㨹ㄠ⼶㬹ⴭ灷ⴭ牰獥瑥ⴭ獡数瑣爭瑡潩ⴭⴹ㘱›⼹㘱ⴻ眭⵰瀭敲敳⵴挭汯牯ⴭ汢捡㩫⌠〰〰〰ⴻ眭⵰瀭敲敳⵴挭汯牯ⴭ祣湡戭畬獩⵨牧祡›愣扢挸㬳ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲眭楨整›昣晦晦㭦ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瀭污ⵥ楰歮›昣㠷慤㬷ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩爭摥›挣㉦㉥㭥ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭浵湩畯⵳楶楶ⵤ牯湡敧›昣㙦〹㬰ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭浵湩畯⵳楶楶ⵤ浡敢㩲⌠捦㥢〰ⴻ眭⵰瀭敲敳⵴挭汯牯ⴭ楬桧⵴牧敥⵮祣湡›㜣摢扣㬵ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩札敲湥挭慹㩮⌠〰つ㐸ⴻ眭⵰瀭敲敳⵴挭汯牯ⴭ慰敬挭慹⵮汢敵›㠣摥昱㭣ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩挭慹⵮汢敵›〣㤶攳㬳ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩瀭牵汰㩥⌠戹ㄵづⴻ眭⵰瀭敲敳⵴札慲楤湥⵴瘭癩摩挭慹⵮汢敵琭ⵯ楶楶ⵤ異灲敬›楬敮牡札慲楤湥⡴㌱搵来爬执⡡ⰶ㐱ⰷ㈲ⰷ⤱〠Ⱕ杲⡢㔱ⰵㄸ㈬㐲
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ楬桧⵴牧敥⵮祣湡琭ⵯ楶楶ⵤ牧敥⵮祣湡›楬敮牡札慲楤湥⡴㌱搵来爬执ㄨ㈲㈬〲ㄬ〸
┰爬执〨㈬㠰ㄬ〳
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ畬業潮獵瘭癩摩愭扭牥琭ⵯ畬業潮獵瘭癩摩漭慲杮㩥氠湩慥⵲牧摡敩瑮ㄨ㔳敤Ⱨ杲慢㈨㈵ㄬ㔸〬ㄬ
┰爬执⡡㔲ⰵ〱ⰵⰰ⤱ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴札慲楤湥⵴氭浵湩畯⵳楶楶ⵤ牯湡敧琭ⵯ楶楶ⵤ敲㩤氠湩慥⵲牧摡敩瑮ㄨ㔳敤Ⱨ杲慢㈨㔵ㄬ㔰〬ㄬ
┰爬执㈨㜰㐬ⰶ㘴
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ敶祲氭杩瑨札慲⵹潴挭慹⵮汢極桳札慲㩹氠湩慥⵲牧摡敩瑮ㄨ㔳敤Ⱨ杲⡢㌲ⰸ㌲ⰸ㌲⤸〠Ⱕ杲⡢㘱ⰹ㠱ⰴ㤱⤵ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴札慲楤湥⵴挭潯⵬潴眭牡⵭灳捥牴浵›楬敮牡札慲楤湥⡴㌱搵来爬执㜨ⰴ㌲ⰴ㈲⤰〠Ⱕ杲⡢㔱ⰱ㈱ⰰ〲⤹㈠┰爬执㈨㜰㐬ⰲ㠱⤶㐠┰爬执㈨㠳㐬ⰴ㌱⤰㘠┰爬执㈨ㄵㄬ㔰㤬⤸㠠┰爬执㈨㐵㈬㠴㜬⤶ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴札慲楤湥⵴戭畬桳氭杩瑨瀭牵汰㩥氠湩慥⵲牧摡敩瑮ㄨ㔳敤Ⱨ杲⡢㔲ⰵ〲ⰶ㌲⤶〠Ⱕ杲⡢㔱ⰲ㔱ⰰ㐲⤰ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴札慲楤湥⵴戭畬桳戭牯敤畡㩸氠湩慥⵲牧摡敩瑮ㄨ㔳敤Ⱨ杲⡢㔲ⰴ〲ⰵ㘱⤵〠Ⱕ杲⡢㔲ⰴ㔴㐬⤵㔠┰爬执ㄨ㜰〬㘬⤲ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴札慲楤湥⵴氭浵湩畯⵳畤歳›楬敮牡札慲楤湥⡴㌱搵来爬执㈨㔵㈬㌰ㄬ㈱
┰爬执ㄨ㤹㠬ⰱ㤱⤲㔠┰爬执㘨ⰵ㠸㈬㠰
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ慰敬漭散湡›楬敮牡札慲楤湥⡴㌱搵来爬执㈨㔵㈬㔴㈬㌰
┰爬执ㄨ㈸㈬㜲㈬㈱
〵Ⱕ杲⡢ㄵㄬ㜶ㄬㄸ
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ汥捥牴捩札慲獳›楬敮牡札慲楤湥⡴㌱搵来爬执㈨㈰㈬㠴ㄬ㠲
┰爬执ㄨ㌱㈬㘰ㄬ㘲
〱┰㬩ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ業湤杩瑨›楬敮牡札慲楤湥⡴㌱搵来爬执㈨㌬ㄬ㤲
┰爬执㐨ⰰㄱⰶ㔲⤲ㄠ〰⤥ⴻ眭⵰瀭敲敳⵴昭湯⵴楳敺ⴭ浳污㩬ㄠ瀳㭸ⴭ灷ⴭ牰獥瑥ⴭ潦瑮猭穩ⵥ洭摥畩㩭㈠瀰㭸ⴭ灷ⴭ牰獥瑥ⴭ潦瑮猭穩ⵥ氭牡敧›㘳硰ⴻ眭⵰瀭敲敳⵴昭湯⵴楳敺ⴭ⵸慬杲㩥㐠瀲㭸ⴭ灷ⴭ牰獥瑥ⴭ灳捡湩ⵧ㈭㨰〠㐮爴浥ⴻ眭⵰瀭敲敳⵴猭慰楣杮ⴭ〳›⸰㜶敲㭭ⴭ灷ⴭ牰獥瑥ⴭ灳捡湩ⵧ㐭㨰ㄠ敲㭭ⴭ灷ⴭ牰獥瑥ⴭ灳捡湩ⵧ㔭㨰ㄠ㔮敲㭭ⴭ灷ⴭ牰獥瑥ⴭ灳捡湩ⵧ㘭㨰㈠㈮爵浥ⴻ眭⵰瀭敲敳⵴猭慰楣杮ⴭ〷›⸳㠳敲㭭ⴭ灷ⴭ牰獥瑥ⴭ灳捡湩ⵧ㠭㨰㔠〮父浥ⴻ眭⵰瀭敲敳⵴猭慨潤⵷渭瑡牵污›瀶⁸瀶⁸瀹⁸杲慢〨‬ⰰ〠‬⸰⤲ⴻ眭⵰瀭敲敳⵴猭慨潤⵷搭敥㩰ㄠ瀲⁸㈱硰㔠瀰⁸杲慢〨‬ⰰ〠‬⸰⤴ⴻ眭⵰瀭敲敳⵴猭慨潤⵷猭慨灲›瀶⁸瀶⁸瀰⁸杲慢〨‬ⰰ〠‬⸰⤲ⴻ眭⵰瀭敲敳⵴猭慨潤⵷漭瑵楬敮㩤㘠硰㘠硰〠硰ⴠ瀳⁸杲慢㈨㔵‬㔲ⰵ㈠㔵‬⤱‬瀶⁸瀶⁸杲慢〨‬ⰰ〠‬⤱ⴻ眭⵰瀭敲敳⵴猭慨潤⵷挭楲灳›瀶⁸瀶⁸瀰⁸杲慢〨‬ⰰ〠‬⤱紻眺敨敲⸨獩氭祡畯⵴汦硥笩慧㩰〠㔮浥紻眺敨敲⸨獩氭祡畯⵴牧摩笩慧㩰〠㔮浥紻潢祤⸠獩氭祡畯⵴汦硥摻獩汰祡›汦硥紻椮⵳慬潹瑵昭敬筸汦硥眭慲㩰眠慲㭰污杩⵮瑩浥㩳挠湥整㭲⹽獩氭祡畯⵴汦硥㸠㨠獩⨨‬楤⥶浻牡楧㩮〠紻潢祤⸠獩氭祡畯⵴牧摩摻獩汰祡›牧摩紻椮⵳慬潹瑵札楲⁤‾椺⡳Ⱚ搠癩笩慭杲湩›㬰㩽桷牥⡥眮⵰汢捯⵫潣畬湭⹳獩氭祡畯⵴汦硥笩慧㩰㈠浥紻眺敨敲⸨灷戭潬正挭汯浵獮椮⵳慬潹瑵札楲⥤杻灡›攲㭭㩽桷牥⡥眮⵰汢捯⵫潰瑳琭浥汰瑡⹥獩氭祡畯⵴汦硥笩慧㩰ㄠ㈮攵㭭㩽桷牥⡥眮⵰汢捯⵫潰瑳琭浥汰瑡⹥獩氭祡畯⵴牧摩笩慧㩰ㄠ㈮攵㭭⹽慨⵳汢捡⵫潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ汢捡⥫℠浩潰瑲湡㭴⹽慨⵳祣湡戭畬獩⵨牧祡挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲挭慹⵮汢極桳札慲⥹℠浩潰瑲湡㭴⹽慨⵳桷瑩ⵥ潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ桷瑩⥥℠浩潰瑲湡㭴⹽慨⵳慰敬瀭湩⵫潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ慰敬瀭湩⥫℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ敲ⵤ潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ敲⥤℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩漭慲杮ⵥ潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ畬業潮獵瘭癩摩漭慲杮⥥℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩愭扭牥挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭浵湩畯⵳楶楶ⵤ浡敢⥲℠浩潰瑲湡㭴⹽慨⵳楬桧⵴牧敥⵮祣湡挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭杩瑨札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ牧敥⵮祣湡挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳慰敬挭慹⵮汢敵挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瀭污ⵥ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ祣湡戭畬ⵥ潣潬筲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ異灲敬挭汯牯捻汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩瀭牵汰⥥℠浩潰瑲湡㭴⹽慨⵳汢捡⵫慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ汢捡⥫℠浩潰瑲湡㭴⹽慨⵳祣湡戭畬獩⵨牧祡戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲挭慹⵮汢極桳札慲⥹℠浩潰瑲湡㭴⹽慨⵳桷瑩ⵥ慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ桷瑩⥥℠浩潰瑲湡㭴⹽慨⵳慰敬瀭湩⵫慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ慰敬瀭湩⥫℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ敲ⵤ慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ敲⥤℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩漭慲杮ⵥ慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ畬業潮獵瘭癩摩漭慲杮⥥℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩愭扭牥戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭浵湩畯⵳楶楶ⵤ浡敢⥲℠浩潰瑲湡㭴⹽慨⵳楬桧⵴牧敥⵮祣湡戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭杩瑨札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ牧敥⵮祣湡戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳慰敬挭慹⵮汢敵戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瀭污ⵥ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ祣湡戭畬ⵥ慢正牧畯摮挭汯牯扻捡杫潲湵ⵤ潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ異灲敬戭捡杫潲湵ⵤ潣潬筲慢正牧畯摮挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩瀭牵汰⥥℠浩潰瑲湡㭴⹽慨⵳汢捡⵫潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ汢捡⥫℠浩潰瑲湡㭴⹽慨⵳祣湡戭畬獩⵨牧祡戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲挭慹⵮汢極桳札慲⥹℠浩潰瑲湡㭴⹽慨⵳桷瑩ⵥ潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ桷瑩⥥℠浩潰瑲湡㭴⹽慨⵳慰敬瀭湩⵫潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ慰敬瀭湩⥫℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ敲ⵤ潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ敲⥤℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩漭慲杮ⵥ潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ畬業潮獵瘭癩摩漭慲杮⥥℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩愭扭牥戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭浵湩畯⵳楶楶ⵤ浡敢⥲℠浩潰瑲湡㭴⹽慨⵳楬桧⵴牧敥⵮祣湡戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲氭杩瑨札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ牧敥⵮祣湡戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳慰敬挭慹⵮汢敵戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瀭污ⵥ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ祣湡戭畬ⵥ潢摲牥挭汯牯扻牯敤⵲潣潬㩲瘠牡⴨眭⵰瀭敲敳⵴挭汯牯ⴭ楶楶ⵤ祣湡戭畬⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ異灲敬戭牯敤⵲潣潬筲潢摲牥挭汯牯›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潣潬⵲瘭癩摩瀭牵汰⥥℠浩潰瑲湡㭴⹽慨⵳楶楶ⵤ祣湡戭畬ⵥ潴瘭癩摩瀭牵汰ⵥ牧摡敩瑮戭捡杫潲湵筤慢正牧畯摮›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ楶楶ⵤ祣湡戭畬ⵥ潴瘭癩摩瀭牵汰⥥℠浩潰瑲湡㭴⹽慨⵳楬桧⵴牧敥⵮祣湡琭ⵯ楶楶ⵤ牧敥⵮祣湡札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴氭杩瑨札敲湥挭慹⵮潴瘭癩摩札敲湥挭慹⥮℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩愭扭牥琭ⵯ畬業潮獵瘭癩摩漭慲杮ⵥ牧摡敩瑮戭捡杫潲湵筤慢正牧畯摮›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ畬業潮獵瘭癩摩愭扭牥琭ⵯ畬業潮獵瘭癩摩漭慲杮⥥℠浩潰瑲湡㭴⹽慨⵳畬業潮獵瘭癩摩漭慲杮ⵥ潴瘭癩摩爭摥札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴氭浵湩畯⵳楶楶ⵤ牯湡敧琭ⵯ楶楶ⵤ敲⥤℠浩潰瑲湡㭴⹽慨⵳敶祲氭杩瑨札慲⵹潴挭慹⵮汢極桳札慲⵹牧摡敩瑮戭捡杫潲湵筤慢正牧畯摮›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ敶祲氭杩瑨札慲⵹潴挭慹⵮汢極桳札慲⥹℠浩潰瑲湡㭴⹽慨⵳潣汯琭ⵯ慷浲猭数瑣畲⵭牧摡敩瑮戭捡杫潲湵筤慢正牧畯摮›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ潣汯琭ⵯ慷浲猭数瑣畲⥭℠浩潰瑲湡㭴⹽慨⵳汢獵⵨楬桧⵴異灲敬札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴戭畬桳氭杩瑨瀭牵汰⥥℠浩潰瑲湡㭴⹽慨⵳汢獵⵨潢摲慥硵札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴戭畬桳戭牯敤畡⥸℠浩潰瑲湡㭴⹽慨⵳畬業潮獵搭獵⵫牧摡敩瑮戭捡杫潲湵筤慢正牧畯摮›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ牧摡敩瑮ⴭ畬業潮獵搭獵⥫℠浩潰瑲湡㭴⹽慨⵳慰敬漭散湡札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴瀭污ⵥ捯慥⥮℠浩潰瑲湡㭴⹽慨⵳汥捥牴捩札慲獳札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴攭敬瑣楲ⵣ牧獡⥳℠浩潰瑲湡㭴⹽慨⵳業湤杩瑨札慲楤湥⵴慢正牧畯摮扻捡杫潲湵㩤瘠牡⴨眭⵰瀭敲敳⵴札慲楤湥⵴洭摩楮桧⥴℠浩潰瑲湡㭴⹽慨⵳浳污⵬潦瑮猭穩筥潦瑮猭穩㩥瘠牡⴨眭⵰瀭敲敳⵴昭湯⵴楳敺ⴭ浳污⥬℠浩潰瑲湡㭴⹽慨⵳敭楤浵昭湯⵴楳敺晻湯⵴楳敺›慶⡲ⴭ灷ⴭ牰獥瑥ⴭ潦瑮猭穩ⵥ洭摥畩⥭℠浩潰瑲湡㭴⹽慨⵳慬杲ⵥ潦瑮猭穩筥潦瑮猭穩㩥瘠牡⴨眭⵰瀭敲敳⵴昭湯⵴楳敺ⴭ慬杲⥥℠浩潰瑲湡㭴⹽慨⵳⵸慬杲ⵥ潦瑮猭穩筥潦瑮猭穩㩥瘠牡⴨眭⵰瀭敲敳⵴昭湯⵴楳敺ⴭ⵸慬杲⥥℠浩潰瑲湡㭴੽眺敨敲⸨灷戭潬正瀭獯⵴整灭慬整椮⵳慬潹瑵昭敬⥸杻灡›⸱㔲浥紻眺敨敲⸨灷戭潬正瀭獯⵴整灭慬整椮⵳慬潹瑵札楲⥤杻灡›⸱㔲浥紻㨊桷牥⡥眮⵰汢捯⵫潣畬湭⹳獩氭祡畯⵴汦硥笩慧㩰㈠浥紻眺敨敲⸨灷戭潬正挭汯浵獮椮⵳慬潹瑵札楲⥤杻灡›攲㭭੽爺潯⁴眺敨敲⸨灷戭潬正瀭汵煬潵整笩潦瑮猭穩㩥ㄠ㔮浥氻湩ⵥ敨杩瑨›⸱㬶੽⼼瑳汹㹥㰊楬歮爠汥∽瑨灴㩳⼯灡⹩⹷牯⽧•牨晥∽瑨灴㩳⼯敹火牡⹳潣⽭湩敤⹸桰㽰敲瑳牟畯整⼽•㸯氼湩敲㵬愢瑬牥慮整•楴汴㵥䨢体≎琠灹㵥愢灰楬慣楴湯樯潳≮栠敲㵦栢瑴獰⼺礯步慰獲挮浯椯摮硥瀮灨爿獥彴潲瑵㵥眯⽰㉶琯条⽳㘲㠹∶⼠㰾楬歮爠汥∽摅瑩剕≉琠灹㵥愢灰楬慣楴湯爯摳砫汭•楴汴㵥刢䑓•牨晥∽瑨灴㩳⼯敹火牡⹳潣⽭浸牬捰瀮灨爿摳•㸯㰊敭慴渠浡㵥朢湥牥瑡牯•潣瑮湥㵴圢牯偤敲獳㘠㠮㈮•㸯ਊ㰉栯慥㹤ਊ㰉潢祤挠慬獳∽瑲牡档癩⁥慴⁧慴ⵧ㘲㠹‶灷琭敨敭琭敷瑮瑹敷瑮≹ਾऊਉउ格慥敤⁲摩∽楳整栭慥敤≲挠慬獳∽敨摡牥昭潯整⵲牧畯≰ਾऊउ搼癩挠慬獳∽敨摡牥椭湮牥猠捥楴湯椭湮牥㸢ਊउउ搼癩挠慬獳∽敨摡牥琭瑩敬⵳牷灡数≲ਾऊउउऊउउ㰉畢瑴湯挠慬獳∽潴杧敬猠慥捲⵨潴杧敬洠扯汩ⵥ敳牡档琭杯汧≥搠瑡ⵡ潴杧敬琭牡敧㵴⸢敳牡档洭摯污•慤慴琭杯汧ⵥ潢祤挭慬獳∽桳睯湩ⵧ敳牡档洭摯污•慤慴猭瑥昭捯獵∽献慥捲⵨潭慤献慥捲⵨楦汥≤愠楲ⵡ硥慰摮摥∽慦獬≥ਾउउउ㰉灳湡挠慬獳∽潴杧敬椭湮牥㸢ऊउउउ㰉灳湡挠慬獳∽潴杧敬椭潣≮ਾउउउउ