<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">!function(d,_){"use strict";if("IntersectionObserver"in d&amp;&amp;"IntersectionObserverEntry"in d&amp;&amp;"intersectionRatio"in d.IntersectionObserverEntry.prototype)"isIntersecting"in d.IntersectionObserverEntry.prototype||Object.defineProperty(d.IntersectionObserverEntry.prototype,"isIntersecting",{get:function(){return 0&lt;this.intersectionRatio}});else{var e=[];t.prototype.THROTTLE_TIMEOUT=100,t.prototype.POLL_INTERVAL=null,t.prototype.USE_MUTATION_OBSERVER=!0,t.prototype.observe=function(e){if(!this._observationTargets.some(function(t){return t.element==e})){if(!e||1!=e.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:e,entry:null}),this._monitorIntersections(),this._checkForIntersections()}},t.prototype.unobserve=function(e){this._observationTargets=this._observationTargets.filter(function(t){return t.element!=e}),this._observationTargets.length||(this._unmonitorIntersections(),this._unregisterInstance())},t.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorIntersections(),this._unregisterInstance()},t.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},t.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter(function(t,e,n){if("number"!=typeof t||isNaN(t)||t&lt;0||1&lt;t)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==n[e-1]})},t.prototype._parseRootMargin=function(t){var e=(t||"0px").split(/\s+/).map(function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}});return e[1]=e[1]||e[0],e[2]=e[2]||e[0],e[3]=e[3]||e[1],e},t.prototype._monitorIntersections=function(){this._monitoringIntersections||(this._monitoringIntersections=!0,this.POLL_INTERVAL?this._monitoringInterval=setInterval(this._checkForIntersections,this.POLL_INTERVAL):(n(d,"resize",this._checkForIntersections,!0),n(_,"scroll",this._checkForIntersections,!0),this.USE_MUTATION_OBSERVER&amp;&amp;"MutationObserver"in d&amp;&amp;(this._domObserver=new MutationObserver(this._checkForIntersections),this._domObserver.observe(_,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))))},t.prototype._unmonitorIntersections=function(){this._monitoringIntersections&amp;&amp;(this._monitoringIntersections=!1,clearInterval(this._monitoringInterval),this._monitoringInterval=null,o(d,"resize",this._checkForIntersections,!0),o(_,"scroll",this._checkForIntersections,!0),this._domObserver&amp;&amp;(this._domObserver.disconnect(),this._domObserver=null))},t.prototype._checkForIntersections=function(){var h=this._rootIsInDom(),c=h?this._getRootRect():{top:0,bottom:0,left:0,right:0,width:0,height:0};this._observationTargets.forEach(function(t){var e=t.element,n=m(e),o=this._rootContainsTarget(e),i=t.entry,r=h&amp;&amp;o&amp;&amp;this._computeTargetAndRootIntersection(e,c),s=t.entry=new a({time:d.performance&amp;&amp;performance.now&amp;&amp;performance.now(),target:e,boundingClientRect:n,rootBounds:c,intersectionRect:r});i?h&amp;&amp;o?this._hasCrossedThreshold(i,s)&amp;&amp;this._queuedEntries.push(s):i&amp;&amp;i.isIntersecting&amp;&amp;this._queuedEntries.push(s):this._queuedEntries.push(s)},this),this._queuedEntries.length&amp;&amp;this._callback(this.takeRecords(),this)},t.prototype._computeTargetAndRootIntersection=function(t,e){if("none"!=d.getComputedStyle(t).display){for(var n,o,i,r,s,h,c,a,u=m(t),l=v(t),p=!1;!p;){var f=null,g=1==l.nodeType?d.getComputedStyle(l):{};if("none"==g.display)return;if(l==this.root||l==_?(p=!0,f=e):l!=_.body&amp;&amp;l!=_.documentElement&amp;&amp;"visible"!=g.overflow&amp;&amp;(f=m(l)),f&amp;&amp;(n=f,o=u,void 0,i=Math.max(n.top,o.top),r=Math.min(n.bottom,o.bottom),s=Math.max(n.left,o.left),h=Math.min(n.right,o.right),a=r-i,!(u=0&lt;=(c=h-s)&amp;&amp;0&lt;=a&amp;&amp;{top:i,bottom:r,left:s,right:h,width:c,height:a})))break;l=v(l)}return u}},t.prototype._getRootRect=function(){var t;if(this.root)t=m(this.root);else{var e=_.documentElement,n=_.body;t={top:0,left:0,right:e.clientWidth||n.clientWidth,width:e.clientWidth||n.clientWidth,bottom:e.clientHeight||n.clientHeight,height:e.clientHeight||n.clientHeight}}return this._expandRectByRootMargin(t)},t.prototype._expandRectByRootMargin=function(n){var t=this._rootMarginValues.map(function(t,e){return"px"==t.unit?t.value:t.value*(e%2?n.width:n.height)/100}),e={top:n.top-t[0],right:n.right+t[1],bottom:n.bottom+t[2],left:n.left-t[3]};return e.width=e.right-e.left,e.height=e.bottom-e.top,e},t.prototype._hasCrossedThreshold=function(t,e){var n=t&amp;&amp;t.isIntersecting?t.intersectionRatio||0:-1,o=e.isIntersecting?e.intersectionRatio||0:-1;if(n!==o)for(var i=0;i&lt;this.thresholds.length;i++){var r=this.thresholds[i];if(r==n||r==o||r&lt;n!=r&lt;o)return!0}},t.prototype._rootIsInDom=function(){return!this.root||i(_,this.root)},t.prototype._rootContainsTarget=function(t){return i(this.root||_,t)},t.prototype._registerInstance=function(){e.indexOf(this)&lt;0&amp;&amp;e.push(this)},t.prototype._unregisterInstance=function(){var t=e.indexOf(this);-1!=t&amp;&amp;e.splice(t,1)},d.IntersectionObserver=t,d.IntersectionObserverEntry=a}function a(t){this.time=t.time,this.target=t.target,this.rootBounds=t.rootBounds,this.boundingClientRect=t.boundingClientRect,this.intersectionRect=t.intersectionRect||{top:0,bottom:0,left:0,right:0,width:0,height:0},this.isIntersecting=!!t.intersectionRect;var e=this.boundingClientRect,n=e.width*e.height,o=this.intersectionRect,i=o.width*o.height;this.intersectionRatio=n?i/n:this.isIntersecting?1:0}function t(t,e){var n,o,i,r=e||{};if("function"!=typeof t)throw new Error("callback must be a function");if(r.root&amp;&amp;1!=r.root.nodeType)throw new Error("root must be an Element");this._checkForIntersections=(n=this._checkForIntersections.bind(this),o=this.THROTTLE_TIMEOUT,i=null,function(){i||(i=setTimeout(function(){n(),i=null},o))}),this._callback=t,this._observationTargets=[],this._queuedEntries=[],this._rootMarginValues=this._parseRootMargin(r.rootMargin),this.thresholds=this._initThresholds(r.threshold),this.root=r.root||null,this.rootMargin=this._rootMarginValues.map(function(t){return t.value+t.unit}).join(" ")}function n(t,e,n,o){"function"==typeof t.addEventListener?t.addEventListener(e,n,o||!1):"function"==typeof t.attachEvent&amp;&amp;t.attachEvent("on"+e,n)}function o(t,e,n,o){"function"==typeof t.removeEventListener?t.removeEventListener(e,n,o||!1):"function"==typeof t.detatchEvent&amp;&amp;t.detatchEvent("on"+e,n)}function m(t){var e;try{e=t.getBoundingClientRect()}catch(t){}return e?(e.width&amp;&amp;e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):{top:0,bottom:0,left:0,right:0,width:0,height:0}}function i(t,e){for(var n=e;n;){if(n==t)return!0;n=v(n)}return!1}function v(t){var e=t.parentNode;return e&amp;&amp;11==e.nodeType&amp;&amp;e.host?e.host:e}}(window,document);
(function(c){if(c.match(/\bpage-article\b/)&amp;&amp;c.match(/\bdesktop\b/)&amp;&amp;c.match(/\bjs\b/)&amp;&amp;btoa(window.location.hostname)=="bGFkeS50dXQuYnk="&amp;&amp;window.location.href.match(/\b677(946|785|560)\b/)){(function(){!function(e,t){for(var r in t)e[r]=t[r]}(window,function(e){function t(n){if(r[n])return r[n].t;var i=r[n]={o:n,i:!1,t:{}};return e[n].call(i.t,i,i.t,t),i.i=!0,i.t}var r={};return t.u=e,t.c=r,t.d=function(e,r,n){t.s(e,r)||Object.defineProperty(e,r,{l:!1,p:!0,get:n})},t.n=function(e){var r=e&amp;&amp;e.h?function(){return e["default"]}:function(){return e};return t.d(r,"a",r),r},t.s=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.g="",t(t.m=9)}([function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(15),i=r(16).k,o={pid:"",encode:{key:""},replaceClasses:[],detect:{links:[],custom:[],iframes:[]},cookieMatching:{publisherTag:"",publisherKey:"",types:[],type:n._.O,redirectUrl:["//an.yand","ex.ru/map","uid/"].join(""),imageUrl:"/static/img/logo.gif/",cryptedUidUrl:"https://http-check-headers.yandex.ru",cryptedUidCookie:"crookie",cryptedUidTTL:336},cookieTTL:336,extuidCookies:[],debug:!1,force:!1,disableShadow:!1,forcecry:{enabled:!1,expires:0,percent:0},treeProtection:{enabled:!1}};t.C="string"==typeof i?o:i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){e[e.T=0]="ELEMENT",e[e.S=1]="NETWORK",e[e.N=2]="IN_IFRAME",e[e.L=3]="INSTANT",e[e.B=4]="EXCEPTION",e[e.K=5]="FAKE",e[e.R=6]="UNKNOWN"}(t.A||(t.A={})),function(e){e.R="UNKNOWN",e.j="NOT_BLOCKED",e.D="ADBLOCK",e.P="ADBLOCKPLUS",e.M="ADBLOCKPLUS",e.I="ADGUARD",e.U="UBLOCK",e.$="GHOSTERY",e.W="UK",e.H="FF_PRIVATE",e.q="KIS",e.F="EXPERIMENT"}(t.X||(t.X={}))},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(1),i=function(){function e(){}return e.prototype.G=function(e){return{blocker:n.X.j}},e.prototype.Y=function(e,t){e({blocker:n.X.j})},e.prototype.V=function(){},e}();t.Z=i},function(e,t,r){"use strict";var n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r&lt;n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&amp;&amp;(e[i]=t[i]);return e};Object.defineProperty(t,"__esModule",{value:!0});var i=r(11);t.J=function(e,t,r,n){void 0===n&amp;&amp;(n={}),i.ee(n.expires)&amp;&amp;(n.expires=n.expires.toUTCString()),void 0===n.path&amp;&amp;(n.path="/");var o="";for(var c in n)n[c]&amp;&amp;(o+="; "+c,!0!==n[c]&amp;&amp;(o+="="+n[c]));try{var a=encodeURIComponent(String(t))+"="+encodeURIComponent(String(r));return e.cookie=a+o}catch(e){return}},t.te=function(e,t){var r=[];try{r=e.cookie?e.cookie.split("; "):[]}catch(e){}for(var n,i=/(%[0-9A-Z]{2})+/g,o=0;o&lt;r.length;o++){var c=r[o].split("="),a=c.slice(1).join("=");try{var u=c[0].replace(i,decodeURIComponent);if(a.replace(i,decodeURIComponent),t===u){n=decodeURIComponent(a);break}}catch(e){return}}return n},t.re=function(e,r,i){t.J(e,r,"",n({},i,{expires:new Date(0)}))}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ne=function(e){return e.top!==e.self}},function(e,t,r){"use strict";function n(e){e&amp;&amp;e.parentNode&amp;&amp;e.parentNode.removeChild(e)}Object.defineProperty(t,"__esModule",{value:!0});var i=["position: absolute !important;","top: -100px;","left: -100px;","height: 75px;","width: 75px;","overflow: hidden;"].join(" ");t.oe=function(e){var t=document.createElement("div");return t.innerHTML=e,t.style.cssText=i,document.body.insertBefore(t,null),t},t.ie=function(e,t,r){void 0===r&amp;&amp;(r="");var n=["display: block;","position: absolute !important;","top: -100px;","left: -1000px;","overflow: hidden;"].join(" "),i=document.createElement("iframe");return i.setAttribute("width",e.toString(10)+"px"),i.setAttribute("height",t.toString(10)+"px"),r&amp;&amp;i.setAttribute("src",r),i.style.cssText=n,document.body.insertBefore(i,null),i},t.ce=n,t.ae=function(e){for(var t=0;t&lt;e.length;t++)n(e[t])}},function(e,t,r){"use strict";function n(){if(null===a){var e=o.addEquals(c.C.encode.key);a=o.decodeUInt8String(e)}return a}function i(e,t){for(var r=[],i=0;i&lt;e.length;i++){var o=e.charCodeAt(i)^n().charCodeAt(i%t.length);r.push(String.fromCharCode(o))}return r.join("")}Object.defineProperty(t,"__esModule",{value:!0});var o=r(7),c=r(0),a=null;t.getKey=n,t.encode=function(e,t){void 0===t&amp;&amp;(t=!1);var r=t?o.encode:o.encodeUInt8String,c=i(e,n());return o.ue(r(c))},t.decode=function(e,t){return void 0===t&amp;&amp;(t=!1),i((t?o.encode:o.decodeUInt8String)(o.addEquals(e)),n())}},function(e,t,r){"use strict";function n(e){for(var t="",r=0;r&lt;e.length;){var n=e.charCodeAt(r++),i=e.charCodeAt(r++),o=e.charCodeAt(r++),a=n&gt;&gt;2,u=(3&amp;n)&lt;&lt;4|i&gt;&gt;4,s=(15&amp;i)&lt;&lt;2|o&gt;&gt;6,l=63&amp;o;isNaN(i)?s=l=64:isNaN(o)&amp;&amp;(l=64),t=t+c.charAt(a)+c.charAt(u)+c.charAt(s)+c.charAt(l)}return t}function i(e){var t=[],r=0;for(e=e.replace(/[^A-Za-z0-9\-_=]/g,"");r&lt;e.length;){var n=c.indexOf(e.charAt(r++)),i=c.indexOf(e.charAt(r++)),o=c.indexOf(e.charAt(r++)),a=c.indexOf(e.charAt(r++)),u=n&lt;&lt;2|i&gt;&gt;4,s=(15&amp;i)&lt;&lt;4|o&gt;&gt;2,l=(3&amp;o)&lt;&lt;6|a;t.push(String.fromCharCode(u)),64!==o&amp;&amp;t.push(String.fromCharCode(s)),64!==a&amp;&amp;t.push(String.fromCharCode(l))}return t.join("")}function o(e){for(var t=[],r=0;r&lt;e.length;){var n=e.charCodeAt(r);if(n&lt;128)t.push(String.fromCharCode(n)),r++;else if(n&gt;191&amp;&amp;n&lt;224){var i=e.charCodeAt(r+1);t.push(String.fromCharCode((31&amp;n)&lt;&lt;6|63&amp;i)),r+=2}else{i=e.charCodeAt(r+1);var o=e.charCodeAt(r+2);t.push(String.fromCharCode((15&amp;n)&lt;&lt;12|(63&amp;i)&lt;&lt;6|63&amp;o)),r+=3}}return t.join("")}Object.defineProperty(t,"__esModule",{value:!0});var c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=";t.encode=function(e,t){return void 0===t&amp;&amp;(t=1e6),n(function(e,t){e=e.replace(/\r\n/g,"\n");for(var r="",n=0;n&lt;e.length;n++){var i=e.charCodeAt(n),o=void 0;if(i&lt;128?o=String.fromCharCode(i):i&gt;127&amp;&amp;i&lt;2048?(o=String.fromCharCode(i&gt;&gt;6|192),o+=String.fromCharCode(63&amp;i|128)):(o=String.fromCharCode(i&gt;&gt;12|224),o+=String.fromCharCode(i&gt;&gt;6&amp;63|128),o+=String.fromCharCode(63&amp;i|128)),r.length+o.length&gt;t)break;r+=o}return r}(e,3*t/4|0))},t.encodeUInt8String=n,t.decode=function(e){return o(i(e))},t.decodeUInt8String=i,t.se=o,t.ue=function(e){return e.replace(/=+$/,"")},t.addEquals=function(e){for(;e.length%4!=0;)e+="=";return e}},function(e,t,r){"use strict";var n=function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&amp;&amp;function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&amp;&amp;(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=r(27),o=r(0),c=r(1),a=function(e){function t(){var t=e.call(this)||this;return t.links=o.C.detect.links,t}return n(t,e),t.prototype.V=function(){this.links=[]},t.prototype.G=function(e){return{blocker:c.X.j}},t.prototype.Y=function(e,t){var r=this;this.links.length?this.le((function(t){t?r.de(t,e):e({blocker:c.X.j})})):e({blocker:c.X.j})},t.prototype.le=function(e){return e(document)},t.prototype.fe=function(e,t,r,n,i){n()},t.prototype.de=function(e,t,r){var n=this;void 0===r&amp;&amp;(r=0);var o=this.links[r];o?this.fe(o,e,2,(function(){n.de(e,t,r+1)}),(function(a,u,s){var l=Date.now();l-u&gt;2e3?n.de(e,t,r+1):t({blocker:c.X.R,pe:{type:c.A.S,index:i.indexOf(n.links,o),data:{status:s?s.status:0,statusText:s?s.statusText:"",method:o.type,url:o.src,time:l-u}}})})):t({blocker:c.X.j})},t}(r(2).Z);t.he=a},function(e,t,r){"use strict";var n=["html.js.page-article .b-article"].join(", "),i=r(10);if(document.head){var o=document.createElement("style");o.innerText=n+"{filter: none!important;opacity: unset!important}",document.head.appendChild(o)}else document.write("&lt;style&gt;"+n+"{filter: none!important;opacity: unset!important}&lt;/style&gt;");e.t=i},function(e,t,r){"use strict";function n(e){var t=e.split(","),r=t[0],n=t[1],o=i(window.location.href.replace(/sign=\d+%2C\d+$/gi,""));return"&amp;"!==o[o.length-1]&amp;&amp;"?"!==o[o.length-1]&amp;&amp;(o+=-1===o.indexOf("?")?"?":"&amp;"),s.ye(a.ve(o),{g:958159042169167,ge:574559613,y:614458371438293},{r:Number(r),m:Number(n)})}function i(e){return encodeURI(decodeURI(e)).replace(/#[\w\W]+$/gi,"")}function o(){window.location.href="https://yandex.ru/turbo?text="+encodeURIComponent(i(window.location.href))+"&amp;utm_source=aab&amp;platform=desktop"}Object.defineProperty(t,"__esModule",{value:!0});var c=r(3),a=r(13),u=r(14),s=r(30),l=r(33),d="sign",f="nodiva";try{!function(){var e=["/admin","/login","/wp-admin","/wp-login","/auth","/sso","/register"],t=window.location.pathname;if(t)for(var r=0;r&lt;e.length;r++)if(0===t.indexOf(e[r]))return;var i=[/https?:\/\/(www\.)?goodhouse\.ru/gi,/https?:\/\/(www\.)?sport-express\.ru/gi],a=!1;for(r=0;r&lt;i.length;r++)if(window.location.origin.match(i[r])){a=!0;break}if(a){if(!document.referrer)return void c.J(document,f,"0");var s=window.location.origin;if(-1===document.referrer.indexOf(s))c.J(document,f,"1");else if("1"!==(k=c.te(document,f)))return}var p=(window.location.search||"").substring(1).split("&amp;");for(r=0;r&lt;p.length;r++){var h=p[r].split("="),v=h[0],y=h[1];if(v===d){var b=new Date;b.setDate(b.getDate()+14),c.J(document,d,y,{path:window.location.pathname,expires:b});break}}var g=[];try{g=document.cookie?document.cookie.split("; "):[]}catch(e){}for(r=0;r&lt;g.length;r++){var m=g[r].split("="),k=(v=m[0],m.slice(1).join("="));if(d===v&amp;&amp;k&amp;&amp;n(decodeURIComponent(unescape(k))))return}u.detect((function(e,t){l.log(e,t),e.blocked&amp;&amp;o()}))}()}catch(e){o()}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(12);t.ee=function(e){return e instanceof Date||"Date"===n.be(e)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={}.toString,i=/\[object (\w+)\]/;t.be=function(e){var t=n.call(e);if(!t)return null;var r=t.match(i);return r&amp;&amp;r[1]||null}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){for(var e=new Array(256),t=0,r=0;r&lt;256;r++)t=1&amp;(t=1&amp;(t=1&amp;(t=1&amp;(t=1&amp;(t=1&amp;(t=1&amp;(t=1&amp;(t=r)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1)?-306674912^t&gt;&gt;&gt;1:t&gt;&gt;&gt;1,e[r]=t;return"undefined"!=typeof Int32Array?new Int32Array(e):e}();t.ve=function(e){for(var t=-1,r=0;r&lt;e.length;){var i=e.charCodeAt(r++);if(i&lt;128)t=t&gt;&gt;&gt;8^n[255&amp;(t^i)];else if(i&lt;2048)t=(t=t&gt;&gt;&gt;8^n[255&amp;(t^(192|i&gt;&gt;6&amp;31))])&gt;&gt;&gt;8^n[255&amp;(t^(128|63&amp;i))];else if(i&gt;=55296&amp;&amp;i&lt;57344){i=64+(1023&amp;i);var o=1023&amp;e.charCodeAt(r++);t=(t=(t=(t=t&gt;&gt;&gt;8^n[255&amp;(t^(240|i&gt;&gt;8&amp;7))])&gt;&gt;&gt;8^n[255&amp;(t^(128|i&gt;&gt;2&amp;63))])&gt;&gt;&gt;8^n[255&amp;(t^(128|o&gt;&gt;6&amp;15|(3&amp;i)&lt;&lt;4))])&gt;&gt;&gt;8^n[255&amp;(t^(128|63&amp;o))]}else t=(t=(t=t&gt;&gt;&gt;8^n[255&amp;(t^(224|i&gt;&gt;12&amp;15))])&gt;&gt;&gt;8^n[255&amp;(t^(128|i&gt;&gt;6&amp;63))])&gt;&gt;&gt;8^n[255&amp;(t^(128|63&amp;i))]}return(t=~t)&lt;0?4294967295+t+1:t}},function(e,t,r){"use strict";function n(e,t){var r={__proto__:null};try{var n=e[t]=e[t]||r;return n&amp;&amp;"object"===(void 0===n?"undefined":p(n))||(n=r),n}catch(e){}return r}function i(){return O&amp;&amp;O[A]}function o(e){O[C].push(e)}function c(){var e=[m.me];"boolean"==typeof __disableNetworkDetection__&amp;&amp;__disableNetworkDetection__||e.push(r(25).ke),d(e,(function(e){e.blocker===b.X.j?function(e){"complete"===document.readyState||"interactive"===document.readyState?e():document.addEventListener("DOMContentLoaded",(function(){e()}))}(s):l(e)}))}function a(e){var t={blocker:b.X.j};try{return e()}catch(e){t={blocker:b.X.R,pe:{type:b.A.B,data:{message:e&amp;&amp;e.message}}}}return t}function u(e){for(var t=0;t&lt;e.length;t++)e[t].V()}function s(){var e=[m.me,k.we];"boolean"==typeof __disableNetworkDetection__&amp;&amp;__disableNetworkDetection__||e.push(r(28).Ce),d(e,(function(e){l(e)}))}function l(e){e.blocker===b.X.R?d([g.Z],(function(t){f({blocker:t.blocker,blocked:t.blocker!==b.X.j},e.pe)}),b.X.R,e.pe):f({blocker:e.blocker,blocked:e.blocker!==b.X.j},e.pe)}function d(e,t,r,n){void 0===r&amp;&amp;(r=b.X.j);for(var i={blocker:r},o=[],c=0;c&lt;e.length;c++){var s=function(r){var c=new e[r];if(o.push(c),(i=a((function(){return c.G(n)}))).blocker!==b.X.j)return u(o),t(i),{value:void 0}}(c);if("object"===(void 0===s?"undefined":p(s)))return s.value}var l=0,d=!1;for(c=0;c&lt;o.length;c++)!function(i){a((function(){return o[i].Y((function(n){if(l++,o[i].V(),!d){if(n.blocker!==b.X.j)return d=!0,void t(n);e.length===l&amp;&amp;(d=!0,t({blocker:r}))}}),n)}))}(c)}function f(e,t){O[P]=_.encode(e.blocker),O[S]=!0;for(var r=0;r&lt;O[C].length;r++)O[C][r](e,t);O[C]=[],O[A]=!1}var p="function"==typeof Symbol&amp;&amp;"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&amp;&amp;"function"==typeof Symbol&amp;&amp;e.constructor===Symbol&amp;&amp;e!==Symbol.prototype?"symbol":typeof e};Object.defineProperty(t,"__esModule",{value:!0});var h=r(3),v=r(0),y=r(17),b=r(1),g=r(2),m=r(18),k=r(20),w=r(24),_=r(6),j=_.encode("aab_context"),x=n(window,"Ya"),O=n(x,j),C=_.encode("antiadb_callback"),S=_.encode("antiadb_detected"),A=_.encode("antiadb_running"),P=_.encode("antiadb_blocker");O[P]||(O[P]=_.encode(b.X.j)),O[C]||(O[C]=[]),t.Ee=function(){O[C]=[],O[A]=!1,O[S]=!1,O[P]=_.encode(b.X.j)},t.Te=i,t.Se=function(){return O&amp;&amp;O[S]},t.Ne=o,t.detect=function(e){if(-1===O[C].indexOf(e)){o(e);var t={blocker:b.X.j,blocked:!1};if(h.te(document,"blcrm"))return void f({blocker:b.X.I,blocked:!0,fakeDetect:!0});if(y.Oe()||w._e()||!(window.addEventListener&amp;&amp;window.getComputedStyle&amp;&amp;Function.prototype.bind))return void f(t);if(!v.C.force){if(O[S]){var r=_.decode(O[P]);return r!==b.X.j&amp;&amp;(t={blocker:r,blocked:!0,fakeDetect:!1}),void f(t)}if(i())return}O[A]=!0,c()}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){e[e.O=0]="doNotMatch",e[e.xe=1]="image",e[e.refresh=2]="refresh",e[e.all=3]="all",e[e.Le=4]="scrumble"}(t._||(t._={}))},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.k={detect:{iframes:[],links:[{src:"https://an.yandex.ru/system/context.js",type:"get"}],custom:['&lt;div class="adbanner" id="AdFox_banner"&gt;&lt;/div&gt;','&lt;div class="advblock" id="yandex_ad"&gt;&lt;/div&gt;','&lt;div class="b-adv" id="yandex_rtb"&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;','&lt;div class="b-banner"&gt;&lt;/div&gt;','&lt;div class="bannerad"&gt;&lt;/div&gt;','&lt;div class="pagead"&gt;&lt;/div&gt;','&lt;div class="pub_300x250m"&gt;&lt;/div&gt;','&lt;div class="pub_728x90"&gt;&lt;/div&gt;','&lt;div class="reklama"&gt;&lt;/div&gt;','&lt;div class="sideads"&gt;&lt;/div&gt;','&lt;div class="smart-info-wrapper"&gt;&lt;/div&gt;','&lt;div class="sponsoredlinks"&gt;&lt;/div&gt;','&lt;div class="text-ad"&gt;&lt;/div&gt;']},log:{percent:0},removeAttributeId:!1,deprecatedCookies:[],hideLinks:!1,pid:"autoredirect.turbo",cookieName:"bltsr",treeProtection:{enabled:!1},cookieDomain:{type:0,list:[]},cookieTTL:336,disableShadow:!1,invertedCookieEnabled:!1,encode:{trailingSlash:!1,seed:"72a737",key:"qCrb8j85psU7i2bniSJmQ2n0Jd40RM1XZB9QoWD687UGvjt3JEPrjMLfgUGGlbzt3CNR3PNi9Y2xSXIr1bIFDw==",urlPrefix:"http://news-ru.naydex.net/"},extuidCookies:["addruid","addruid"],cookieMatching:{publisherKey:"eyJhbGciOi",publisherTag:"test_extuid_tag",imageUrl:"https://statchecker.yandex.ru/mapuid/",cryptedUidTTL:336,redirectUrl:"//an.yandex.ru/mapuid/",cryptedUidCookie:"crookie",types:[],cryptedUidUrl:"https://http-check-headers.yandex.ru"},hideMetaArgsUrlMaxSize:0,rtbRequestViaScript:!1}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=[/1c\+enterprise\//i,/24bb\.bot/i,/360(spider|user-agent)/i,/\+xml/i,/^192\.comagent$/i,/^[0-9a-za-z._]*@/i,/^appie 1\.1 (www\.walhello\.com)$/i,/^asynchttpclient 1\.0$/i,/^bdfetch$/i,/^blogpulselive (support@blogpulse\.com)$/i,/^browsershots$/i,/^cinetic_htdig$/i,/^cjb\.net proxy$/i,/^csci_b659\/0\.13$/i,/^ejupiter\.com$/i,/^exactseek\.com$/i,/^holmes\/3\.9 (onet\.pl)$/i,/^internet explorer$/i,/^java\//i,/^linkdex\.com\/v2\.0$/i,/^livedoor screenshot\/0\.10$/i,/^ng\/2\.0$/i,/^noyona_0_1$/i,/^opencalaissemanticproxy$/i,/^pagepeeker\.com$/i,/^panscient\.com$/i,/^qseero/i,/^search\.kumkie\.com$/i,/^seocheck \(fischernetzdesign seo checker, info@fischernetzdesign\.de\)$/i,/^shelob \(shelob@gmx\.net\)$/i,/^silk\/1\.0$/i,/^surphace scout&amp;v4\.0 - scout at surphace dot com$/i,/^virus_detector (virus_harvester@securecomputing\.com)$/i,/^woko 3\.0*/i,/^xml sitemaps generator/i,/^yaanb\/1\.5\.001 \(compatible; win64;\)$/i,/acoon/i,/ad municher/i,/adre/i,/afinethttp/i,/agent\//i,/aggreagtor/i,/agropoisk\//i,/al_viewer/i,/all\.by/i,/anonym(\s|$)/i,/anonynous/i,/apache/i,/api\//i,/aport/i,/appengine-google/i,/asdfghjkl/i,/ask jeeves\/teoma/i,/asterias\//i,/autoluba\//i,/backlink-check/i,/baiduspider/i,/bigli seo/i,/bingbot/i,/bitrix/i,/bits\//i,/blaiz-bee\//i,/bloglines/i,/boitho\.com-dc\//i,/bond\//i,/brytetoolbar/i,/btwwebclient/i,/ccubee/i,/check_http\//i,/checker/i,/chilkat\//i,/cjnetworkquality/i,/clever internet suite/i,/coccoc/i,/component/i,/coralwebprx\//i,/crawl\//i,/crowsnest/i,/curl/i,/dataparksearch/i,/digger\//i,/disco watchman/i,/download master/i,/download\//i,/downloader\//i,/drupal/i,/duckduckbot/i,/envolk\//i,/european search engine\//i,/everest-vulcan inc/i,/facebookexternalhit/i,/fast search/i,/feed demon/i,/feed/i,/feedburner/i,/feedfetcher-google/i,/feedsky crawler/i,/feedzirra/i,/fetch\//i,/filangy\//i,/fileboost\.net\//i,/filter\//i,/find\//i,/ftp\//i,/gethtml\//i,/getright\//i,/getrightpro\//i,/gibbon/i,/gobblegobble\//i,/google web preview/i,/googlebot/i,/grab\//i,/graber\//i,/hatena antenna\//i,/hatena/i,/hoowwwer\//i,/href-fetcher\//i,/http::lite\//i,/http_client/i,/httpclient\//i,/httpget/i,/httpsendrequestex/i,/httpsession/i,/httrack/i,/ia_archiver/i,/iaskspider/i,/ichiro\//i,/images\//i,/indy library/i,/ineturl:\//i,/info\.web/i,/ingrid\//i,/internetseer/i,/intravnews\//i,/ipcheck/i,/isa server connectivity check/i,/isilox\//i,/jetbrains/i,/js-kit/i,/kanban\//i,/keepaliveclient/i,/kretrieve\//i,/libfetch\//i,/libwww/i,/liferea\//i,/links/i,/loader\//i,/lth\//i,/ltx71/i,/luki/i,/lwp/i,/mail\.ru/i,/microsearch\.ru/i,/microsoft-cryptoapi/i,/mnogosearch/i,/mr http monitor/i,/ms web services client protocol/i,/msnbot/i,/najdi\.si\//i,/net snippets/i,/net::trackback\//i,/netcarta_webmapper\//i,/netcraft ssl server survey/i,/netcraftsurveyagent/i,/netintelligence liveassessment - www\.netintelligence\.com/i,/netmonitor\//i,/netpumper\//i,/newsblur/i,/newsgator/i,/NING/,/nutch/i,/okhttp\//i,/onlinewebcheck/i,/package http/i,/page_verifier/i,/pagepromoter/i,/parser/i,/partner, search yn\//i,/pastukhov/i,/perl/i,/[^e]php/i,/ping/i,/pogodak\.co\.yu/i,/portalmmm/i,/posh/i,/postrank/i,/puxarapido/i,/python/i,/queryseekerspider/i,/rambler/i,/reader\//i,/redir\//i,/restsharp/i,/ripper\//i,/robot|crawler|spider|[a-z]*bot(\s|$)/i,/robozilla/i,/rss grabber/i,/rss reader/i,/rss\//i,/ruby/i,/rv:x/i,/scanner\//i,/scanyandex/i,/scooter\//i,/script/i,/search\//i,/seek\//i,/semantic analyzer/i,/semonitor/i,/seonewstop\//i,/shadowwebanalyzer/i,/shopwiki\//i,/simplepie/i,/simplesubmit/i,/sitemap generator\//i,/slackbot-linkexpanding/i,/snappy\//i,/snarfer\//i,/snoopy/i,/soap/i,/sogou(\s|spider)/i,/soso[ a-z\-]*?spider/i,/speedy spider/i,/sproose\//i,/squidclam/i,/stackrambler/i,/steroid download/i,/susie/i,/szukacz\//i,/targetyournews/i,/tatpoisk/i,/teleport pro\//i,/teleport ultra\//i,/thumbnails\//i,/trendiction/i,/tron\/siteposition/i,/trustlink client/i,/turtle\//i,/twitterbot/i,/url/i,/url\//i,/useragent/i,/utilmind httpget/i,/validator\//i,/validurl/i,/vbseo/i,/verifier\//i,/vhod search/i,/w3c/i,/watznew agent/i,/webcopier/i,/wget/i,/wget/i,/winhttprequest/i,/wordpress/i,/www\.nsoftware\.com/i,/xenu link sleuth/i,/xfruits/i,/xianguo\.com/i,/y!j-bsc\//i,/y!j-psc\//i,/yahoo!\s+slurp|yahooseeker/i,/yahoo-blogs\//i,/yahoo-mmaudvid\//i,/yahoocachesystem/i,/yahoofeedseeker\//i,/yahooseeker-testing\//i,/yahoovideosearch/i,/yahooysmcm\//i,/yandesk/i,/yandexaddurl/i,/yandexantivirus/i,/yandexbot/i,/yandexbot/i,/yandexcatalog/i,/yandexdirect/i,/yandexfavicons/i,/yandeximageresizer/i,/yandeximages/i,/yandexmedia/i,/yandexmetrika/i,/yandexnews/i,/yandexvideo/i,/you?daobot/i,/zyborg\//i];t.Oe=function(){for(var e=navigator.userAgent,t=0;t&lt;n.length;t++)if(n[t].test(e))return!0;return!1}},function(e,t,r){"use strict";var n=function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&amp;&amp;function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&amp;&amp;(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=r(1),o=r(19),c=r(2),a=/^[a-z][a-z0-9]{6}$/,u=function(e){function t(){return null!==e&amp;&amp;e.apply(this,arguments)||this}return n(t,e),t.prototype.G=function(e){var t=this.Be();return t||(t=this.Ke())?{blocker:i.X.R,pe:{type:i.A.L,data:{message:t}}}:{blocker:i.X.j}},t.prototype.Be=function(){var e=["Element.prototype.attachShadow"];try{for(var t=0;t&lt;e.length;t++)for(var r=e[t].split("."),n=window,i=0;i&lt;r.length;i++)n=n[r[i]]}catch(e){if(e instanceof ReferenceError&amp;&amp;a.test(e.message))return String(e)}return""},t.prototype.Ke=function(){var e=o.Re();if(-1!==e.indexOf("get()"))return e;try{if(Element.prototype.Ae&amp;&amp;-1!==Element.prototype.Ae.toString().indexOf("MutationObserver"))return Element.prototype.Ae.toString()}catch(e){return String(e)}return""},t}(c.Z);t.me=u},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Re=function(){var e=Object.getOwnPropertyDescriptor(window.Element.prototype,"shadowRoot");if(e&amp;&amp;e.get){var t=e.get.toString();if(-1===t.indexOf("[native code]"))return t}return""}},function(e,t,r){"use strict";var n=function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&amp;&amp;function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&amp;&amp;(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=r(21),o=r(22),c=r(23),a=r(4),u=r(0),s=r(1),l=r(5),d=r(2),f=["SCRIPT","TITLE","META","HEAD","STYLE"],p=function(e){function t(){var t=e.call(this)||this;return t.je=[],t.je=t.De(),t}return n(t,e),t.prototype.V=function(){l.ae(this.je),this.je=[]},t.prototype.G=function(e){if(a.ne(window))return{blocker:s.X.j};var t=this.Pe(this.je);return t?{blocker:s.X.R,pe:{type:s.A.T,data:{element:t,styles:this.Me(t),Ie:this.Ue(t)},index:0}}:{blocker:s.X.j}},t.prototype.Y=function(e,t){!a.ne(window)&amp;&amp;this.je.length?this.$e(this.je,e):e({blocker:s.X.j})},t.prototype.We=function(e){return i.filter(Array.prototype.slice.call(e.children),(function(e){return e instanceof HTMLElement}))},t.prototype.De=function(){for(var e=u.C.detect.custom,t=[],r=0;r&lt;e.length;r++)t.push(l.oe(e[r]));return t},t.prototype.$e=function(e,t,r){var n=this;void 0===r&amp;&amp;(r=Number(new Date));var i=this.Pe(e);i?t({blocker:s.X.R,pe:{type:s.A.T,data:{element:i,styles:this.Me(i),Ie:this.Ue(i)},index:0}}):Number(new Date)-r&lt;3e3?setTimeout((function(){n.$e(e,t,r)}),500):t({blocker:s.X.j})},t.prototype.Pe=function(e){var t=this;return o.reduce(e,(function(e,r,n){return e||(e=t.He(t.We(r)[0])),e}),void 0)},t.prototype.He=function(e){var t=this;if(-1===f.indexOf(e.tagName)){var r,n=window.getComputedStyle(e),i=n.display,c=n.left,a=n.top,u=n.opacity,s=n.visibility,l=n.transform,d=e.style.left,p=e.style.top;return("none"===i||"1"!==u||"visible"!==s||"auto"!==c&amp;&amp;"0px"!==c&amp;&amp;c!==d||"auto"!==a&amp;&amp;"0px"!==a&amp;&amp;a!==p||"matrix(0, 0, 0, 0, 0, 0)"===l)&amp;&amp;(r=e),r||o.reduce(this.We(e),(function(e,r){return e||t.He(r)}),void 0)}},t.prototype.Me=function(e){var t={};try{for(var r=["display","width","height","left","top","opacity","visibility","transform"],n=window.getComputedStyle(e),i=0;i&lt;r.length;i++){var o=r[i];t[o]=n[o]}}catch(e){}return t},t.prototype.matches=function(e,t){var r=Element.prototype,n=r.matches||r.ze||r.webkitMatchesSelector||r.mozMatchesSelector||r.msMatchesSelector||r.oMatchesSelector;if(!n){var i=document.querySelectorAll(t);return c.some(i,(function(t){return t===e}))}return n.call(e,t)},t.prototype.Ue=function(e){var t=[];try{var r=document.styleSheets;if(!r)return[];for(var n in r)try{var i=r[n].rules||r[n].cssRules||[];for(var o in i)if(this.matches(e,i[o].selectorText)){t.push({qe:r[n].ownerNode,Fe:i[o].cssText});break}}catch(e){}}catch(e){}return t},t}(d.Z);t.we=p},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.filter=function(e,t,r){for(var n=[],i=0;i&lt;e.length;i++){var o=e[i];t.call(r,o,i,e)&amp;&amp;n.push(o)}return n}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.reduce=function(e,t,r){var n=0;for(arguments.length&lt;3&amp;&amp;(n=1,r=e[0]);n&lt;e.length;n++)r=t(r,e[n],n,e);return r}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.some=function(e,t){for(var r=0;r&lt;e.length;r++)if(t(e[r],r,e))return!0;return!1}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(0);t._e=function(){return!!n.C.dbltsr&amp;&amp;Math.abs(Number(new Date(n.C.dbltsr))-Number(new Date))&lt;72e5}},function(e,t,r){"use strict";var n=function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&amp;&amp;function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&amp;&amp;(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=r(26),o=function(e){function t(){return null!==e&amp;&amp;e.apply(this,arguments)||this}return n(t,e),t.prototype.fe=function(e,t,r,n,o){var c=this,a=Date.now();switch(e.type){case"head":case"post":case"get":i.Xe(e.type.toUpperCase(),e.src,!1,n,(function(i){if(r&gt;1)return c.fe(e,t,r-1,n,o);var u=i?i.status:0,s=i?i.statusText:"";o(e,a,{status:u,statusText:s})}));break;default:n()}},t}(r(8).he);t.ke=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Xe=function(e,t,r,n,i){var o=new XMLHttpRequest;o.onload=function(){return n&amp;&amp;n(o)},o.onerror=function(){return i&amp;&amp;i(o)};try{o.open(e,t),o.withCredentials=r,o.send()}catch(e){i&amp;&amp;i(o)}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.indexOf=function(e,t,r,i){void 0===r&amp;&amp;(r=0),void 0===i&amp;&amp;(i=n);for(var o=r;o&lt;e.length;o++)if(i(e[o],t))return o;return-1};var n=function(e,t){return e===t}},function(e,t,r){"use strict";var n=function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&amp;&amp;function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&amp;&amp;(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=r(29),o=r(5),c=function(e){function t(){var t=e.call(this)||this;return t.Ge=o.ie(1,1),t}return n(t,e),t.prototype.V=function(){e.prototype.V.call(this),o.ce(this.Ge)},t.prototype.le=function(e){var t=this.Ge;if(t){var r=t.contentDocument;return!r&amp;&amp;t.contentWindow&amp;&amp;(r=t.contentWindow.document),!r||"complete"!==r.readyState&amp;&amp;"interactive"!==r.readyState?t.onload=function(){t.onload=null,!(r=t.contentDocument)&amp;&amp;t.contentWindow&amp;&amp;(r=t.contentWindow.document),r.write=function(){},e(r)}:(r.write=function(){},e(r)),r}e()},t.prototype.fe=function(e,t,r,n,o){var c=this,a=Date.now();switch(e.type){case"img":case"script":i.Ye(e.type,e.src,t,n,(function(i){if(r&gt;1)return c.fe(e,t,r-1,n,o);var u=i?i.status:0,s=i?i.statusText:"";o(e,a,{status:u,statusText:s})}));break;default:n()}},t}(r(8).he);t.Ce=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Ye=function(e,t,r,n,i){var o=r.createElement(e);o.onload=function(){return n&amp;&amp;n()},o.onerror=function(){return i&amp;&amp;i()},o.src=t,r.body.appendChild(o)}},function(e,t,r){"use strict";function n(e,t,r){for(var n=1,o=e,c=i.Ve(r);t&gt;0;){1==(1&amp;t)&amp;&amp;(n=i.Ze(i.Ve(n),i.Ve(o),c),t-=1);var a=i.Ve(o);o=i.Ze(a,a,c),t/=2}return n}Object.defineProperty(t,"__esModule",{value:!0});var i=r(31);t.ye=function(e,t,r){if(r.r&lt;=0||r.r&gt;=t.g||r.m&lt;=0||r.m&gt;=t.g-1)return!1;var o=n(t.y,r.r,t.g),c=n(r.r,r.m,t.g),a=n(t.ge,e,t.g);return i.Ze(i.Ve(o),i.Ve(c),i.Ve(t.g))===a}},function(e,t,r){"use strict";function n(e){return e&lt;d?[e]:e&lt;d*d?[e%d,l.floor(e/d)]:[e%d,l.floor(e/d)%d,l.floor(e/(d*d))]}function i(e){switch(c(e),e.length){case 0:return 0;case 1:return e[0];case 2:return e[0]+e[1]*d;default:return e[0]+(e[1]+e[2]*d)*d}}function o(e){for(var t=[],r=0;r&lt;e;r++)t[r]=0;return t}function c(e){for(var t=e.length;0===e[--t];);e.length=t+1}function a(e,t){if(e.length!==t.length)return e.length&gt;t.length?1:-1;for(var r=e.length-1;r&gt;=0;r--)if(e[r]!==t[r])return e[r]&gt;t[r]?1:-1;return 0}function u(e,t){var r,n,i=o(e.length),a=0;for(r=0;r&lt;t.length;r++)(n=e[r]-a-t[r])&lt;0?(n+=d,a=1):a=0,i[r]=n;for(r=t.length;r&lt;e.length;r++){if(!((n=e[r]-a)&lt;0)){i[r++]=n;break}n+=d,i[r]=n}for(;r&lt;e.length;r++)i[r]=e[r];return c(i),i}function s(e,t){var r,n,i,a,u=o(e.length+t.length);for(i=0;i&lt;e.length;++i){a=e[i];for(var s=0;s&lt;t.length;++s)r=a*t[s]+u[i+s],n=l.floor(r/d),u[i+s]=r-n*d,u[i+s+1]+=n}return c(u),u}Object.defineProperty(t,"__esModule",{value:!0});var l=r(32),d=1e7;t.Ve=n,t.Qe=i,t.Ze=function(e,t,r){return function(e,t){for(var r,o,f,p,h,v=e.length,y=[],b=[];v;)if(b.unshift(e[--v]),c(b),a(b,t)&lt;0)y.push(0);else{f=b[(o=b.length)-1]*d+b[o-2],p=t[t.length-1]*d+t[t.length-2],o&gt;t.length&amp;&amp;(f=(f+1)*d),r=l.ceil(f/p);do{if(a(h=s(t,n(r)),b)&lt;=0)break;r--}while(r);y.push(r),b=u(b,h)}return y.reverse(),i(b)}(s(e,t),r)}},function(e,t,r){"use strict";function n(e){return~~e}Object.defineProperty(t,"__esModule",{value:!0}),t.floor=n,t.ceil=function(e){var t=n(e);return t===e?e:t+1}},function(e,t,r){"use strict";function n(){var e="",t=navigator;try{e=(t.connection||t.mozConnection||t.webkitConnection).type}catch(e){}return e}Object.defineProperty(t,"__esModule",{value:!0});var i=r(34),o=r(35),c=r(36),a=(r(4),r(37)),u=r(39),s=r(7),l=r(0),d=r(1),f=r(6),p=f.encode("2.0"),h=function(e){return p+"dmVyc2lvbg"+s.ue(l.C.encode.key)+"bHVkY2E"+f.encode(e,!0)};t.log=function(e,t){if(e.blocker!==d.X.j||e.fakeDetect){e.fakeDetect&amp;&amp;!t&amp;&amp;(t={type:d.A.K});try{!function(e,t){var r="",s="";switch(t.type){case d.A.T:var f=t.data;r="element",String(t.index),f.element&amp;&amp;(r+=" "+f.element.outerHTML,s=i.map(f.Ie||[],(function(e){return"Rule: "+(e.Fe||"")+"\nStyles: "+e.qe.outerHTML})).join("\n"),f.styles&amp;&amp;function(e){for(var t=["display","width","height","left","top","opacity","visibility","transform"],r=[],n=0;n&lt;t.length;n++)r.push(e[t[n]]||"");r.join(", ")}(f.styles));break;case d.A.S:var p=t.data;String(t.index),r="network resource ("+p.method+") "+p.url,s={connection:n(),online:navigator.onLine},a.Je(s,p);break;case d.A.N:var v=t.data;String(t.index),r="iframe "+v.url;break;case d.A.K:r="fake detect ADGUARD";break;case d.A.B:r="exception "+t.data.message;break;case d.A.L:r="instant check",s=t.data;break;default:r="unknown"}if(l.C.debug&amp;&amp;console.log("DETECTED "+e+" BY "+r),t.type!==d.A.K){var y=(new Date).toUTCString(),b=o.et(),g=c.tt(window),m=h([y,e,r,b,g].join("\n"));u.setItem("ludca",m)}}(e.blocker,t||{type:d.A.R})}catch(e){}}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.map=function(e,t,r){for(var n=new Array(e.length),i=0;i&lt;e.length;i++)n[i]=t.call(r,e[i],i,e);return n}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.et=function(e){void 0===e&amp;&amp;(e=window);try{return(e.navigator||{}).userAgent||""}catch(e){return""}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tt=function(e){if(e&amp;&amp;e.location){var t=e.location;return"function"==typeof t.toString?t.toString():t.href||""}return""}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(38);t.Je=function(e,t){for(var r in t)n.hasOwnProperty(t,r)&amp;&amp;(e[r]=t[r])}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasOwnProperty=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(40);t.setItem=function(e,t){return n.rt((function(){return localStorage.setItem(e,t)}))},t.getItem=function(e){return n.rt((function(){return localStorage.getItem(e)}))},t.removeItem=function(e){return n.rt((function(){return localStorage.removeItem(e)}))},t.clear=function(){return n.rt((function(){return localStorage.clear()}))},t.key=function(e){return n.rt((function(){return localStorage.key(e)}))}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.rt=function(e,t){try{return e()}catch(e){"function"==typeof t&amp;&amp;t(e)}}}]));})();}})(document.documentElement.className);
!function(){"use strict";var t="object"==typeof exports&amp;&amp;null!=exports&amp;&amp;"number"!=typeof exports.nodeType?exports:"undefined"!=typeof self?self:$.global,e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";function i(t){this.message=t}i.prototype=new Error,i.prototype.name="InvalidCharacterError",t.btoa||(t.btoa=function(t){for(var n,a,r=String(t),o=0,s=e,l="";r.charAt(0|o)||(s="=",o%1);l+=s.charAt(63&amp;n&gt;&gt;8-o%1*8)){if((a=r.charCodeAt(o+=.75))&gt;255)throw new i("'btoa' failed: The string to be encoded contains characters outside of the Latin1 range.");n=n&lt;&lt;8|a}return l}),t.atob||(t.atob=function(t){var n=String(t).replace(/[=]+$/,"");if(n.length%4==1)throw new i("'atob' failed: The string to be decoded is not correctly encoded.");for(var a,r,o=0,s=0,l="";r=n.charAt(s++);~r&amp;&amp;(a=o%4?64*a+r:r,o++%4)?l+=String.fromCharCode(255&amp;a&gt;&gt;(-2*o&amp;6)):0)r=e.indexOf(r);return l})}(),Array.prototype.indexOf||(Array.prototype.indexOf=function(t){"use strict";if(null===this)throw new TypeError;var e=Object(this),i=e.length&gt;&gt;&gt;0;if(0===i)return-1;var n=0;if(arguments.length&gt;1&amp;&amp;((n=Number(arguments[1]))!=n?n=0:0!==n&amp;&amp;n!=1/0&amp;&amp;n!=-1/0&amp;&amp;(n=(n&gt;0||-1)*Math.floor(Math.abs(n)))),n&gt;=i)return-1;for(var a=n&gt;=0?n:Math.max(i-Math.abs(n),0);a&lt;i;a++)if(a in e&amp;&amp;e[a]===t)return a;return-1}),Array.prototype.filter||(Array.prototype.filter=function(t){"use strict";if(null===this)throw new TypeError;var e=Object(this),i=e.length&gt;&gt;&gt;0;if("function"!=typeof t)throw new TypeError;for(var n=[],a=arguments[1],r=0;r&lt;i;r++)if(r in e){var o=e[r];t.call(a,o,r,e)&amp;&amp;n.push(o)}return n}),Array.prototype.diff||(Array.prototype.diff=function(t){return this.filter(function(e){return!(t.indexOf(e)&gt;-1)})}),String.prototype.trim||function(){var t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;String.prototype.trim=function(){return this.replace(t,"")}}(),$.fn.reverse||($.fn.reverse=[].reverse);var runCore=function(){if(window.location.href.match("%3F"))try{window.history.replaceState("",document.title,window.location.href.replace(/^([^?]+)(%3F.*?)((?:\?.*?)?(?:#.*)?)$/,function(t,e,i,n){return e+decodeURIComponent(i.split("#")[0])+n.replace(/^\?/,"&amp;")}))}catch(t){console.log(t)}var t,e,i={},n=function(){var t;this.bIsInited=!1,this.vkIsInited=!1,this.options={host:"/",lang:"rus",time:Math.round((new Date).getTime()/1e3),dayno:a(),geotarget:[15800,15800,!1],geodata:{user:0,ip:0},weathertarget:26850,user:{email:""},rev:{js:"r0",css:"r0"},navigation:{group_id:["","",""]},search:"",social_collector:"",wurfl:{id:"generic_web_browser",type:"desktop",mode:"desktop",os:"",os_version:"",browser:"",browser_version:"",is_bot:!1,width:800,height:600},ab_variant:[!1,!1],src_hash:(t=window.location.hash.toString().replace(/^(#ua:[^#]+).*$/,"$1").match(/^#ua:(.+)$/),!!t&amp;&amp;t[1])}};return n.prototype={set_option:function(t,e){return this.options.hasOwnProperty(t)?(this.options[t]=e,"time"==t&amp;&amp;this.set_option("dayno",a(new Date(1e3*e))),this):this},get_option:function(t){return this.options.hasOwnProperty(t)?this.options[t]:void 0},set_param:function(t,e){return i[t]=e,this},get_param:function(t){return i.hasOwnProperty(t)?i[t]:("function"==typeof this["param_autoload_"+t]&amp;&amp;this["param_autoload_"+t].call(this),i.hasOwnProperty(t)?i[t]:void 0)},i18n:function(t,e){if(!e)return t;var i=this.get_option("lang");return e.hasOwnProperty(i)&amp;&amp;e[i].hasOwnProperty(t)?e[i][t]:("rus"!=i&amp;&amp;(i="rus"),e.hasOwnProperty(i)&amp;&amp;e[i].hasOwnProperty(t)?e[i][t]:t)},i18gen:function(t,e,i){var n={};return function(a){return n.hasOwnProperty(a)||(n[a]=function(i){for(var n={},a=0;a&lt;e.length;a++)n[e[a]]={},n[e[a]][t]=i.length&gt;0?i[0][a+1]:t;return n}(i.filter(function(t){return t[0]==a}))),n[a]}},spellcount:function(t,e,i,n){var a,r;return e=e||"",i=i||"",n=n||i,r=(t=t||0)%100,1==(a=t%10)&amp;&amp;11!=r?e:a&gt;=2&amp;&amp;a&lt;=4&amp;&amp;!(r&gt;=10&amp;&amp;r&lt;20)?i:n},apply_settings:function(t,e,i){if(t&amp;&amp;"object"==typeof t&amp;&amp;e&amp;&amp;"object"==typeof e)for(var n in t)t.hasOwnProperty(n)&amp;&amp;(e.hasOwnProperty(n)?"object"==typeof t[n]?this.apply_settings(t[n],e[n],i):e[n]=t[n]:i&amp;&amp;(e[n]=t[n]));return e},class_method_extend:function(t){if(t)for(var e in t)t.hasOwnProperty(e)&amp;&amp;"function"==typeof t[e]&amp;&amp;(n.prototype[e]=i(n.prototype[e],t[e]));function i(t,e){return"function"!=typeof t?e:function(){var i=Array.prototype.slice.call(arguments);return i.push(t),e.apply(this,i)}}},class_method:function(t){if(t)for(var e in t)t.hasOwnProperty(e)&amp;&amp;"function"==typeof t[e]&amp;&amp;(n.prototype[e]=t[e])},class_method_remove:function(t){t&amp;&amp;n.prototype.hasOwnProperty(t)&amp;&amp;"function"==typeof n.prototype[t]&amp;&amp;delete n.prototype[t]},base_domain:function(t){return(t=t||window.location.hostname).toLowerCase().replace(/^.*\.([^.]+\.[^.]+)$/,"$1")},base_origin:function(t,e,i){ return "https://zerkalo-see.site/news" },init:function(t){var e=this;if(this.bIsInited)return this;this.apply_settings(t,this.options),this.set_browser_version(),this.bIsInited=this.validate(),$(window).load(function(){e.init_ab()}),$("html").addClass(Math.random()&lt;.5?"impl-variant-A":"impl-variant-B");var i,n,a,r=this.get_option("wurfl");if(r&amp;&amp;"smart"==r.mode&amp;&amp;"desktop"==this.cookie("appear")){var o=parseInt(this.cookie("appear_fix")||0,10);o&lt;3&amp;&amp;(i="fixit","pushState"in history?history.replaceState("",document.title,location.pathname+location.search+"#"+i):(n=document.body.scrollTop,a=document.body.scrollLeft,location.hash="#"+i,document.body.scrollTop=n,document.body.scrollLeft=a),$(document).ready(function(){confirm("Вы используете версию сайта для ПК.\nПереключить на мобильную версию сайта?")?(e.cookie("appear_fix",o+1,{domain:e.base_domain(),expires:-1,path:"/"}),window.location=e.base_origin()+"/route/appear/reset/?l="+encodeURIComponent(window.location.toString().replace(/#.*$/g,"")+"#fixed")):e.cookie("appear_fix",o+1,{domain:e.base_domain(),expires:9999,path:"/"})}))}return this},set_browser_version:function(){var t={init:function(){this.browser=(this.searchString(this.dataBrowser)||"unknown").toString().toLowerCase(),this.version=(this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"unknown").toString().toLowerCase(),this.OS=(this.searchString(this.dataOS)||"unknown").toString().toLowerCase()},searchString:function(t){for(var e=0;e&lt;t.length;e++){var i=t[e].string,n=t[e].prop;if(this.versionSearchString=t[e].versionSearch||t[e].identity,i){if(-1!=i.indexOf(t[e].subString))return t[e].identity}else if(n)return t[e].identity}},searchVersion:function(t){var e=t.indexOf(this.versionSearchString);if(-1!=e)return t.substring(e+this.versionSearchString.length+1).split(/[^.0-9]+/)[0]},dataBrowser:[{string:navigator.userAgent,subString:"Chrome",identity:"Chrome"},{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{prop:window.opera,identity:"Opera",versionSearch:"Version"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.userAgent,subString:"iPhone",identity:"iPhone/iPod"},{string:navigator.platform,subString:"Linux",identity:"Linux"}]};t.init();for(var e,i,n=t.browser,a=t.version.split("."),r=[];a.length&gt;0;)r.push(n+"-"+a.join("-")),a.pop(),a.push("x"),r.push(n+"-"+a.join("-")),a.pop();e=document.getElementsByTagName("html"),i=r.join(" "),e.length&lt;1||(e[0].className=(e[0].className?e[0].className+" ":"")+i)},loadScript:function(t,e,i){for(var n=[],a=0;a&lt;arguments.length;a++)n.push(arguments[a]);if(t=n.shift(),i=n.pop(),e=n.shift,!t||"string"!=typeof t)return"function"==typeof i&amp;&amp;i();var r=document.createElement("script");if(r.type="text/javascript",r.async=!0,e&amp;&amp;"object"==typeof e)for(var o in e)e.hasOwnProperty(o)&amp;&amp;r.setAttribute(o,e[o]);"function"==typeof i&amp;&amp;(r.readyState?r.onreadystatechange=function(){"loaded"!=r.readyState&amp;&amp;"complete"!=r.readyState||(r.onreadystatechange=null,i())}:r.onload=i),r.src=t;var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(r,s)},loadCss:function(t){var e=document.createElement("link");e.type="text/css",e.rel="stylesheet",e.href=t+"?"+Math.round((new Date).getTime()/6e4),document.getElementsByTagName("head")[0].appendChild(e)},loadOrtho:function(t,e){if($("html").hasClass("smart")){var i={a:window.location.href,b:"",c:"",d:"",e:"UTF-8",f:document.title,g:""},n=null,a=0,r=$('&lt;div class="report-popup"&gt;&lt;div class="link-block"&gt;&lt;div class="link-block-head"&gt;Сообщить об ошибке&lt;a href="javascript:;" class="close-report-popup"&gt;&lt;i class="b-icon icon-close"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="link-block-item ortho-content"&gt;&lt;div class="link-block-inner text_block"&gt;&lt;p id="ortho-error-preview"&gt;&lt;/p&gt;&lt;/div&gt;&lt;form class="link-block-inner form_list"&gt;&lt;label class="label" for="ortho-error-text"&gt;Ваш комментрий: &lt;/label&gt;&lt;div class="wrapper"&gt;&lt;input type="text" id="ortho-error-text" placeholder="Необязательно" autocomplete="off"&gt;&lt;/div&gt;&lt;/form&gt;&lt;div class="link-block-inner button-wrapper"&gt;&lt;input type="button" value="Отправить" id="ortho-send-button" class="c_button blue "&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;'),o=$('&lt;button id="send-error" class="report-error" style="right: -50px;"&gt;Сообщить об ошибке&lt;/button&gt;').on("click",function(){$(".ortho-success, .ortho-error",r).remove(),$(".ortho-content",r).removeClass("hidden"),$("#ortho-error-text").val(""),$("html").addClass("report-popup-shown"),$("#ortho-error-preview").text("«..."+i.c+"...»"),"object"==typeof n&amp;&amp;n.empty(),a=$(window).scrollTop(),$(window).scrollTop(0)});$("body").prepend(r).prepend(o),$(".close-report-popup",r).on("click",function(){$("html").removeClass("report-popup-shown"),$(window).scrollTop(a)}),$("#ortho-send-button").on("click",function(){i.g=$("#ortho-error-text").val(),$.post(t+"orthography/jshttprequest.php",i,function(t){$(".ortho-content",r).addClass("hidden"),"ok"==t?$(".link-block",r).append('&lt;div class="link-block-item ortho-success"&gt;&lt;div class="link-block-inner text_block"&gt;&lt;div class="b-success"&gt;&lt;i class="b-icon icon-success"&gt;&lt;/i&gt;&lt;p&gt;Спасибо! Постараемся исправить ошибку в ближайшее время&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;'):$(".link-block",r).append('&lt;div class="link-block-item ortho-error"&gt;&lt;div class="link-block-inner text_block"&gt;&lt;div class="b-error"&gt;&lt;i class="b-icon icon-error"&gt;&lt;/i&gt;&lt;p&gt;Извините, произошла ошибка&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;')})}),document.addEventListener("selectionchange",function(){o.css("right","-50px");var t,e,a=null;if(!(n=window.getSelection?window.getSelection():window.document.getSelection?window.document.getSelection():window.document.selection))return!1;if("object"==typeof n&amp;&amp;"None"==n.type)return!1;var r="",s="";n.getRangeAt?(a=(t=n.getRangeAt(0)).toString(),(e=window.document.createRange()).setStartBefore(t.startContainer.ownerDocument.body),e.setEnd(t.startContainer,t.startOffset),r=e.toString(),(e=t.cloneRange()).setStart(t.endContainer,t.endOffset),e.setEndAfter(t.endContainer.ownerDocument.body),s=e.toString()):n.createRange?(a=(t=n.createRange()).text,(e=n.createRange()).moveStart("character",-60),e.moveEnd("character",-a.length),r=e.text,(e=n.createRange()).moveEnd("character",60),e.moveStart("character",a.length),s=e.text):a=""+n;var l,c=(l=a.match(/^(\s*)/))&amp;&amp;l[0].length,d=(l=a.match(/(\s*)$/))&amp;&amp;l[0].length;r+=a.substring(0,c),s=a.substring(a.length-d,a.length)+s,(a=a.substring(c,a.length-d)).length&gt;0&amp;&amp;a.length&lt;256&amp;&amp;(o.css("right","40px"),i.b=r.substring(r.length-60,r.length).replace(/^\S{1,10}\s+/,""),i.c=a,i.d=s.substring(0,60).replace(/\s+\S{1,10}$/,""))})}else"object"!=typeof window.orthography&amp;&amp;this.loadScript(this.base_origin("news")+"/orthography/orthography.js?"+e,function(){orthography.init(t+"orthography/jshttprequest.php")})},cookie:function(t,e,i){if(void 0===e){var n=null;if(document.cookie)for(var a=document.cookie.split(";"),r=0;r&lt;a.length;r++){var o=a[r].replace(/^\s+/g,"").replace(/\s+$/g,"");if(o.substring(0,t.length+1)==t+"="){n=decodeURIComponent(o.substring(t.length+1));break}}return n}i=i||{},null===e&amp;&amp;(e="",i.expires=-1);var s,l="";i.expires&amp;&amp;("number"==typeof i.expires||i.expires.toUTCString)&amp;&amp;("number"==typeof i.expires?(s=new Date).setTime(s.getTime()+24*i.expires*60*60*1e3):s=i.expires,l="; expires="+s.toUTCString());var c=i.path?"; path="+i.path:"",d=i.domain?"; domain="+i.domain:"",p=i.secure?"; secure":"";document.cookie=[t,"=",encodeURIComponent(e),l,c,d,p].join("")},validate:function(){var t,e,i,n,a,r;if((i=this.get_option("wurfl"))&amp;&amp;i.is_bot)return!0;if(!window.location.host.toString().match(/^(?:(?:www|smart)\.)?(?:\w+\.)*tut\.by$/))return!0;if(t=parseInt(this.get_option("time"),10),!isFinite(t))return!0;if((n=window.location.toString())!=(a=n.replace(/&amp;[ct]rnd=\d+\b/,"").replace(/\?[ct]rnd=\d+\b/,"?"))){a=a.replace(/\?(#.*|$)/,"$1");try{history.replaceState("",document.title,a)}catch(t){console.log(t)}try{if(a=sessionStorage.getItem("visit_ref")){sessionStorage.removeItem("visit_ref"),window.yaParams=window.yaParams||{},window.yaParams.title=document.title,window.yaParams.referrer=a;try{Object.defineProperty(document,"referrer",{get:function(){return a}})}catch(t){}}}catch(t){console.log(t)}return!0}if(e=parseInt(this.cookie("lvutm"),10),!isFinite(e))return!1;if(t-=e,(e=Math.round((new Date).getTime()/1e3))-t&lt;=1800)return!0;try{document.referrer&amp;&amp;sessionStorage.setItem("visit_ref",document.referrer)}catch(t){console.log(t)}return window.location=((r=window.location.toString().match(/^(.+?)((?:#.*)?)$/))[1]=r[1]+(r[1].indexOf("?")&gt;=0?"&amp;":"?")+"crnd="+Math.round(1e5*Math.random()),r[2]=r[2]?r[2]:"",r[1]+r[2]),!1},XA_sendSocial:function(t,e,i){try{"object"==typeof window._gaq&amp;&amp;"function"==typeof window._gaq.push&amp;&amp;_gaq.push(["_trackSocial",t,e,i])}catch(t){}try{"function"==typeof window.ga&amp;&amp;ga("send","social",t,e,i)}catch(t){}},XA_sendEvent:function(t,e,i,n,a){var r,o;try{if("object"==typeof window._gaq&amp;&amp;"function"==typeof window._gaq.push){for(r=["_trackEvent",t,e],o=3;o&lt;=arguments.length;o++)r.push(arguments[o]);_gaq.push(r)}}catch(t){}try{if("function"==typeof window.ga){for(r=["send","event",t,e],o=3;o&lt;=Math.max(4,arguments.length);o++)r.push(arguments[o]);arguments.length&gt;4&amp;&amp;r.push({nonInteraction:a?1:0}),window.ga.apply(window,r)}}catch(t){}},setStatHooks:function(t,e){$("#"+e+" a[href][data-hash]").click(function(){var e=this.getAttribute("data-hash");return e.length&gt;0&amp;&amp;$.get(t+"stat/extlink?"+["src="+encodeURIComponent(window.location),"dst="+encodeURIComponent(this.getAttribute("href")),"hash="+encodeURIComponent(e),"text="+encodeURIComponent($(this).text()),"uuid="+(new Date).getTime()].join("&amp;")),!0})},loadVKSDK:function(){var t=document.createElement("script");t.type="text/javascript",t.charset="utf-8",t.src="https://vk.com/js/api/openapi.js",t.async=!0,document.getElementById("vk_api_transport").appendChild(t)},initVKCallback:function(t,e){return"object"!=typeof VK?(!0===e&amp;&amp;console.log("Error initializing VK object!"),!1):(VK.init({apiId:2738307,nameTransportPath:t+"exports/xd_receiver.html"}),!0)},initVK:function(t,e){if(!this.vkIsInited){var i=this;window.vkAsyncInit=function(){i.initVKCallback(t,e)&amp;&amp;i.initVKWidget()},i.loadVKSDK()}},initVKWidget:function(){VK.Widgets.Group("vk",{mode:0,width:"625",height:"410"},15591739),this.vkIsInited=!0},init_tracking:function(t){var e,i;e="string"==typeof t?$("#"+t.replace(/^#/,"")):$(t),i=e.attr("data-utm")||!1,e.each(function(){(function(){!1!==this&amp;&amp;function(){for(var t=function(){var t=this.getAttribute("data-utm")||i;t&amp;&amp;(this.href=function(t){return this[0]+=(-1==this[0].indexOf("?")?"?":"&amp;")+t,this}.call(this.href.split("#"),t.toString().replace(/[{]{2}([a-z]+)[}]{2}/g,function(t,e){return window.location[e]})).join("#"),this.removeAttribute("data-utm"))},e=this.length-1;e&gt;=0;e--)t.apply(this.item(e))}.apply(this.getElementsByTagName("a"))}).apply(this)}).removeAttr("data-utm")},init_tristate:function(t){(function(){this&amp;&amp;function(){for(var t=function(){this.getAttribute("data-url-2")&amp;&amp;(this.href=this.getAttribute("data-url-2"),this.removeAttribute("data-url-2")),this.getAttribute("data-url-1")&amp;&amp;(this.onclick=function(){return this.href=this.getAttribute("data-url-1"),!0})},e=this.length-1;e&gt;=0;e--)t.apply(this.item(e))}.apply(this.getElementsByTagName("a"))}).apply(document.getElementById(t.replace(/^#/,"")))},init_custom_popup:function(){var t=function(){this.oPopup=void 0};t.prototype.activate=function(t){this.oPopup&amp;&amp;this.oPopup.hide(),this.oPopup=t},t.prototype.click=function(t){this.oPopup&amp;&amp;!this.oPopup.own(t)&amp;&amp;(this.oPopup.hide(),this.oPopup=void 0)};var e=new t;$("*").on("click",function(t){e.click(t)});var i=function(t,i,n){var a=this;this.bIsInited=!1,this.sContext=t,this.sClass=i||"active",this.oCustomEventHandlers={init:void 0,show:void 0,shown:void 0,hide:void 0,hidden:void 0},this.oEventHandlers={click:function(){var t=$(this);return a[$(a.sContext).find("[data-target-popup]").hasClass(a.sClass)?"hide":"show"](t),!1},init:function(t,e){"function"==typeof e.oCustomEventHandlers.init&amp;&amp;e.oCustomEventHandlers.init.call(this,t,e)},show:function(t,i){e.activate(i),"function"==typeof i.oCustomEventHandlers.show&amp;&amp;i.oCustomEventHandlers.show.call(this,t,i)},shown:function(t,e){"function"==typeof e.oCustomEventHandlers.shown&amp;&amp;e.oCustomEventHandlers.shown.call(this,t,e)},hide:function(t,e){"function"==typeof e.oCustomEventHandlers.hide&amp;&amp;e.oCustomEventHandlers.hide.call(this,t,e)},hidden:function(t,e){$(e.sContext).find("[data-target-popup]."+e.sClass).removeClass(e.sClass),"function"==typeof e.oCustomEventHandlers.hidden&amp;&amp;e.oCustomEventHandlers.hidden.call(this,t,e)}},this.on(n),this.init()};return i.prototype.init=function(){var t=$.Event("init");return this.bIsInited?$(this.sContext).find("[data-target-popup]").add($(this.sContext).filter("[data-target-popup]")).trigger(t,[this]):($(this.sContext).find("[data-target-popup]").add($(this.sContext).filter("[data-target-popup]")).on({click:this.oEventHandlers.click,init:this.oEventHandlers.init,show:this.oEventHandlers.show,shown:this.oEventHandlers.shown,hide:this.oEventHandlers.hide,hidden:this.oEventHandlers.hidden}).trigger(t,[this]),this.bIsInited=!0),this},i.prototype.show=function(t){if(!t){var e=this;return $(this.sContext).find("[data-target-popup]").add($(this.sContext).filter("[data-target-popup]")).each(function(){e.show($(this))}),this}var i,n=$(this.sContext).find("[data-popup="+t.attr("data-target-popup")+"]").add($(this.sContext).filter("[data-target-popup]"));return i=$.Event("show",{target:t,relatedTarget:n}),t.trigger(i,[this]),t.addClass(this.sClass),n.show(),i=$.Event("shown",{target:t,relatedTarget:n}),t.trigger(i,[this]),t.focusout(),this},i.prototype.hide=function(t){if(!t){var e=this;return $(this.sContext).find("[data-target-popup]").add($(this.sContext).filter("[data-target-popup]")).each(function(){e.hide($(this))}),this}var i,n=$(this.sContext).find("[data-popup="+t.attr("data-target-popup")+"]").add($(this.sContext).filter("[data-target-popup="+t.attr("data-target-popup")+"]"));return i=$.Event("hide",{target:t,relatedTarget:n}),t.trigger(i,[this]),t.removeClass(this.sClass),n.hide(),i=$.Event("hidden",{target:t,relatedTarget:n}),t.trigger(i,[this]),this},i.prototype.own=function(t){var e=this;return function(i){if(i.find(t.target).length&gt;0)return!0;var n=!1;return i.each(function(){$(e.sContext).find("[data-popup="+$(this).attr("data-target-popup")+"]").add($(e.sContext).filter("[data-popup="+$(this).attr("data-target-popup")+"]")).find(t.target).length&gt;0&amp;&amp;(n=!0)}),n}($(this.sContext).find("[data-target-popup]").add($(this.sContext).filter("[data-target-popup]")))},i.prototype.on=function(t){if(t&amp;&amp;"object"==typeof t)for(var e in t)t.hasOwnProperty(e)&amp;&amp;this.oCustomEventHandlers.hasOwnProperty(e)&amp;&amp;"function"==typeof t[e]&amp;&amp;(this.oCustomEventHandlers[e]=t[e]);return this},function(t,e,n){return new i(t,e,n)}}(),initTopBar:function(t,e){var i=this;if("v4"===t){var n=$("#animated_mainmenu").add("#mainmenu").first();if(n.length&gt;0){if(!e&amp;&amp;window.IntersectionObserver&amp;&amp;new IntersectionObserver(function(t){t.forEach(function(t){t.target.toggleAttribute("stuck",$(document).scrollTop()&gt;n.nextAll(".l-outer").first().offset().top)})},{root:null,rootMargin:"0px 0px -100% 0px",threshold:[0,.01,.9,1]}).observe(n.get(0)),window.ResizeObserver){var a=!1;new ResizeObserver(function(){!1===a&amp;&amp;(a=setTimeout(function(){a=!1,i.resize_topBar()},100))}).observe(n.get(0))}$(".topbar-burger",n).on("click",function(){$("#feeds").css("z-index","10"),function(){var t,e=document.createElement("fakeelement"),i={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in i)if(void 0!==e.style[t])return i[t];return!1}()?$(".b-topbar-more",n).one("transitionend webkitTransitionEnd oTransitionEnd otransitionend MSTransitionEnd",function(){r("#mainmenu",".topbarmore-w",".topbarmore-c")}):r("#mainmenu",".topbarmore-w",".topbarmore-c")}),$(".topbar-close",n).on("click",function(){$("#feeds").css("z-index",""),$(".b-topbar-more",n).toggleClass("active"),$(".topbar-burger",n).removeClass("topbar-more-active"),setTimeout(function(){$(".b-topbar-more",n).hide()},100)}),this.resize_topBar()}}return this.init_custom_popup("#mainmenu","topbar-more-active",{show:function(e,n){var a=0;"v4"!=t&amp;&amp;($(".b-topbar-i li:not(:first)",n.sContext).each(function(){a+=$(this).outerWidth()}),a&amp;&amp;e.relatedTarget.width(a-30)),e.target.parents("li.topbar-more").addClass(n.sClass),i.XA_sendEvent("top-burger-click","show",window.location.host)},hide:function(t){t.relatedTarget.removeClass("active"),i.XA_sendEvent("top-burger-click","close",window.location.host)},shown:function(t){setTimeout(function(){t.relatedTarget.addClass("active")},50)},hidden:function(t,e){setTimeout(function(){t.target.parents("li.topbar-more").removeClass(e.sClass),$("#feeds").length&gt;0&amp;&amp;$("#feeds").css("z-index","")},50)}});function r(t,e,i){var a,r;t=$(t),e=$(e,t),i=$(i,t),"wide"!=n.attr("data-act")&amp;&amp;(r=i,(a=e).css({overflow:"hidden"}),r.css({width:a.width()-function(){var t=document.createElement("p");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");e.style.position="absolute",e.style.top="0px",e.style.left="0px",e.style.visibility="hidden",e.style.width="200px",e.style.height="150px",e.style.overflow="hidden",e.appendChild(t),document.body.appendChild(e);var i=t.offsetWidth;e.style.overflow="scroll";var n=t.offsetWidth;return i==n&amp;&amp;(n=e.clientWidth),document.body.removeChild(e),i-n}(),display:"block"}))}},resize_topBar:function(){var t=$("#animated_mainmenu,#mainmenu").find(".b-topbar-h");t.parents(".m-variant-1").length&gt;0?function(t){var e=t.outerWidth()-$(".topbar-s",t).outerWidth(),i=0;$("#mainmenu ul.b-topbar-i li.b-topbar-aside",t).each(function(){i+=$(this).outerWidth()}),$("#mainmenu ul.b-topbar-i li",t).not("li.b-topbar-aside").each(function(){var t=$(this),n=t.outerWidth();i+n&lt;=e?(t.show(),i+=n):t.hide()})}(t):function(t){var e=$("#authorize"),i=t.outerWidth()-e.outerWidth()-$("ul.b-topbar-i li.b-topbar-aside",t).outerWidth()-$("ul.b-topbar-i li.topbar-more",t).outerWidth(),n=0;$("ul.b-topbar-i li",t).not("li.b-topbar-aside,li.topbar-more,li.social__item").each(function(){var t=$(this),e=t.outerWidth();n+e&lt;=i?(t.show(),n+=e):t.hide()})}(t)},init_custom_calendar:function(t,e){if(t){var i=this;if(e){$('select[name="m"] option[value="'+e.m+'"]',t).prop("selected",!0),$('select[name="y"]',t).html($.map(e.yy,function(t){return'&lt;option value="'+t+'"'+(t==e.y?' selected="selected"':"")+"&gt;"+t+"&lt;/option&gt;"}).join(""));var n=i.get_option("dayno");$("table.ac-calendar tbody").html($.map(e.cells,function(t){return"&lt;tr&gt;"+$.map(t,function(t){var e;switch(e=!1===t.l?"&lt;span&gt;"+t.d+"&lt;/span&gt;":'&lt;a href="'+t.l+'" rel="nofollow"&gt;'+t.d+"&lt;/a&gt;",t.t){case-1:e='&lt;td class="previous-month"&gt;'+e+"&lt;/td&gt;";break;case 1:e='&lt;td class="next-month"&gt;'+e+"&lt;/td&gt;";break;default:e=t.n==n?'&lt;td class="today"&gt;'+e+"&lt;/td&gt;":"&lt;td&gt;"+e+"&lt;/td&gt;"}return e}).join("")+"&lt;/tr&gt;"}).join(""))}return this.init_custom_popup(t,"active",{init:function(t,e){var n=$(e.sContext);n.data("ready")||($('select[name="m"],select[name="y"]',n).on({change:function(){var t=parseInt(this.form.m.value,10),a=parseInt(this.form.y.value,10),r=0;this.form.city&amp;&amp;(r=parseInt(this.form.city.value,10)),$.getJSON(i.get_option("host")+"archive/calendar.jsp?jsoncallback=?",{m:t,y:a,city:r},function(t){n.replaceWith(t.html),e.init().show()})}}),n.data("ready",!0))}})}},init_custom_subscribe:function(t){if(t){var e=this,i=$(t);return $('form input[name="email"]',i).val(e.get_option("user").email),$("form",i).on({submit:function(t){return!this.email.value.match(/.+@.+/)||this.email.value.length&lt;6?(t.preventDefault(),alert(e.i18n("Электронный адрес введен неправильно",{bel:{"Электронный адрес введен неправильно":"Электронны адрас уведзены няправiльна"}})),!1):(window.open("","result","width=400,height=260").focus(),!0)}}),this.init_custom_popup(t,"active",{init:function(t,e){var i=$(e.sContext);i.data("ready")||($(".toggle_s",i).on({click:function(){var t=$(e.sContext);$(".sbscr_el",t).toggleClass("sbscr_off"),$(".sbscr_el form input[name=email]",t).val($(".sbscr_el.sbscr_off form input[name=email]",t).val())}}),i.data("ready",!0))},show:function(t,e){$(e.sContext).find(".sbscr-content").addClass("sbscr_active")},hide:function(t,e){$(e.sContext).find(".sbscr-content").removeClass("sbscr_active")}})}},init_generic_tabs:function(t){var e=$(t);return!(e.length&lt;1||e.data("tabs")||($("a[data-target]",e).on({click:function(t){var e=$(this);t.preventDefault(),e.parent("li").hasClass("active")||e.tab("show")}}),e.data("tabs",!0),0))},init_video:(e=function(t){var e,i=this,n=!1,a={theme:"photoModal",show_title:!0,allow_resize:!1,counter_separator_label:" из ",animation_speed:"fast",opacity:.5,horizontal_padding:0,min_height:100,changepicturecallback:function(){},markup:'&lt;div class="pp_pic_holder"&gt;&lt;a class="pp_close b-icon icon-close" href="#"&gt;Close&lt;/a&gt;&lt;div class="pp_t"&gt;&lt;div class="ppt"&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div class="pp_content_container"&gt;&lt;div class="pp_content"&gt;&lt;div class="pp_loaderIcon"&gt;&lt;/div&gt;&lt;div class="pp_fade"&gt;&lt;div id="pp_full_res"&gt;&lt;/div&gt;&lt;div class="pp_details" style="margin-top: 0px !important; height: 0px;"&gt;&lt;p class="currentTextHolder"&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="pp_overlay"&gt;&lt;/div&gt;',inline_markup:'&lt;div class="pp_inline" style="padding: 0px;"&gt;{content}&lt;/div&gt;',callback:function(){n=!1},gallery_markup:""};window.uppodEvent=(e=window.uppodEvent,function(t,i){switch("function"==typeof e&amp;&amp;e(t,i),i){case"init":n==t&amp;&amp;setTimeout(function(){$('.pp_pic_holder [id="'+t+'"]').get(0).sendToUppod("play")},100)}}),$().prettyPhoto(a),$(t).filter(function(){var t=$(this).attr("data-rel-video").toString().replace(/^([a-z0-9]+)_container$/,"$1");return"function"==typeof window["deferred_embed_"+t]}).on("click",function(t){var e=$(this),r=e.attr("data-rel-video").toString().replace(/^([a-z0-9]+)_container$/,"$1");window["deferred_embed_"+r](function(r){if(r.success&amp;&amp;(!r.ref||"DIV"!=r.ref.tagName)){t.preventDefault();var o="#"+r.id.toString().replace("_player","_container");n=r.id.toString();var s=$(r.ref);$(o).css({width:s.attr("width"),height:s.attr("height")}),a.default_width=s.attr("width"),a.default_height=s.attr("height"),$().prettyPhoto(a),e.attr("title")?$.prettyPhoto.open([o],['&lt;a href="'+e.attr("href").toString().replace(/"/g,"&amp;quot;")+'"&gt;'+e.attr("title").toString().replace(/&lt;/g,"&amp;lt;").replace(/&gt;/g,"&amp;gt;")+"&lt;/a&gt;"]):$.prettyPhoto.open([o]),i.XA_sendEvent("VideoIcon","Play",e.attr("data-video-source"))}})})},function(){if(window.swfobject&amp;&amp;swfobject.hasFlashPlayerVersion("1.0.0")&amp;&amp;!$("html").hasClass("explorer-6")){var t=this,i=$("a[data-rel-video]");if(!(i.length&lt;1)){var n=[];"function"!=typeof $.prettyPhoto&amp;&amp;n.push("jquery.prettyPhoto"),"function"!=typeof window.Uppod&amp;&amp;n.push("uppod"),n.length&gt;0?(n.push(this.get_option("rev").js),t.loadScript(t.base_origin()+"/scripts/by4/"+n.join("~")+".js",function(){e.call(t,i)})):e.call(t,i)}}}),init_modal:function(t,e,i){var n=$(window).height(),a=$(window).width(),r=Math.max(20,Math.floor((n-e)/2)),o=Math.max(20,Math.round((a-i)/2));return"fixed"==t.css("position")?t.css({top:r,bottom:r}):t.css({top:r+$(document).scrollTop(),bottom:r}),function(t,e,i){t.width()&gt;i&amp;&amp;(t.css({width:i}),$("div.modal-body",t).css({"overflow-x":"auto"}));var n=$("div.modal-body",t),a=n.outerHeight()-n.height();$("div.modal-spacer",t).each(function(){a+=$(this).height()}),n.css({height:e-$("div.modal-header",t).outerHeight()-a})}($("div.modal-content",t),t.height(),a-2*o),t},init_titlealts:function(){var t,e,i,n,a,r,o,s,l,c={},d=(new Date).getTime(),p=function(c){var d;return(s=$('link[rel="canonical"][href]').attr("href")||window.location.toString().replace(/#.*$/g,""))==window.location.toString()&amp;&amp;(s=!1),l=u(),t=new IntersectionObserver(function(e){for(var i,n=u(),a=e.length-1;a&gt;=0;a--)e[a].isIntersecting&amp;&amp;(i=$(e[a].target),f().show(i.data("identity"),n,e[a].target.offsetTop),t.unobserve(e[a].target))}),d=runCore.get_option("time").toString(16).split(""),r="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(t){if("x"==t&amp;&amp;d.length&gt;0)return d.shift();var e=16*Math.random()|0,i="x"==t?e:3&amp;e|8;return i.toString(16)}),o=runCore.cookie("__utsid"),function(t){t+="&amp;g="+encodeURIComponent(r+":"+o);var e=runCore.get_option("ab_variant");$.isArray(e)&amp;&amp;2==e.length&amp;&amp;!1!==e[0]&amp;&amp;!1!==e[1]&amp;&amp;(t+="&amp;ab="+encodeURIComponent(e.join(":"))),a="sendBeacon"in navigator?function(e,i){navigator.sendBeacon(e+t,i)}:function(e,i,n){var a=new XMLHttpRequest;a.open("POST",e+t,!!n),a.setRequestHeader("Content-Type","application/json;charset=UTF-8"),a.send(i)}}("/stat/?t=ctr"),(n=($("html").attr("class")||"").match(/\bpage-((?:\w|-)+)\b/))?n=n[1]:(n=runCore.get_option("navigation"))&amp;&amp;n.group_id?(n=n.group_id,$.isArray(n)&amp;&amp;(n=n.shift())):n="unknown",i=(($("html").attr("class")||"").match(/\b(desktop|smart|pda)\b/)||[0,"unknown"])[1],e=i+":"+n,c()};return window.addEventListener("beforeunload",function(){$.each(c,function(){this.flush(!1,"leave")})}),window.addEventListener("unload",function(){$.each(c,function(){this.flush(!1,"leave")})}),window.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState&amp;&amp;$.each(c,function(){this.flush(!1)})}),$(function(){h(!1,!0)}),h;function h(e,i){var a;function r(t,e){var i;if(t.data("identity",e),!(t.parents(".entry-cloned").length&gt;0)){switch(e[0]){case"N":i=e[2]+"_"+e[3];break;case"A":i=e[4]+"_"+e[5];break;case"B":i=e[2];break;default:return}a.identity.hasOwnProperty(i)?((t=$(a.identity[i].el).parents().has(t).first()).data("identity",e),a.identity[i].hasOwnProperty("mutate")?a.identity[i].mutate(t.get(0)):a.identity[i].el=t.get(0)):a.identity[i]={name:i,type:e[0],identity:e,el:t.get(0)}}}function o(t,e){if(!((t=$(t)).find("[data-titlealt]").length&gt;0)){var i=t.attr("data-titlealt");if(i){try{"{"!=i[0]&amp;&amp;(i=atob(i)),i=$.parseJSON(i)}catch(e){return console.log(e),void t.removeAttr("data-titlealt")}var n=Object.keys(i.titles);if(n.length){var o=i.id,s=Math.floor(Math.random()*n.length);if(s=parseInt(n[s],10),i.titles&amp;&amp;i.titles[s]&amp;&amp;t.add(t.find("._title")).filter("._title").html(i.titles[s]),i.images&amp;&amp;i.images[s]){var c=t.add(t.find("video._video")).filter("video._video"),d=t.add(t.find("img[src]._image")).filter("img[src]._image");if(c.length&gt;0&amp;&amp;i.images[s].match(/\.mp4$/))setTimeout(function(t){t.off("load").each(function(){$(this).css("visibility","")})},300,c.css("visibility","hidden").on("load",function(){$(this).css("visibility","")}).find("source[src]").attr("src",i.images[s]).end().load());else if(d.length&gt;0&amp;&amp;!i.images[s].match(/\.mp4$/))setTimeout(function(t){t.off("load").each(function(){$(this).css("visibility","")})},300,t.add(t.find("img[src]._image")).filter("img[src]._image").css("visibility","hidden").on("load",function(){$(this).css("visibility","")}).attr("src",i.images[s]));else if(c.length&gt;0||d.length&gt;0){var p,h,u;c.length&gt;0?(p=c.attr("width"),h=c.attr("height"),u=c.attr("class").replace(/(\s*)_video(\s*)/,"$1_image$2"),c.replaceWith($("&lt;img&gt;").attr({src:i.images[s],width:p,height:h,class:u}))):(p=d.attr("width"),h=d.attr("height"),u=d.attr("class").replace(/(\s*)_image(\s*)/,"$1_video$2"),d.replaceWith($('&lt;video autoplay loop muted playsinline&gt;&lt;source src="'+i.images[s]+'" type="video/mp4" /&gt;&lt;/video&gt;').attr({width:p,height:h,class:u})))}}var f,m=t.find("._title,._image,._video,._track").andSelf().filter("._title,._image,._video,._track").parents("a[href]:visible").map(function(){var t=$(this);return t.attr("data-href")||t.prop("href")}).get(0),v=["A",o,s,m].concat([(f=(f=t.find("[data-ua-hash]").andSelf().filter("[data-ua-hash]").map(function(){return $(this).attr("data-ua-hash")}).toArray().shift()||"").split("~"))[0].replace(/_(?:big|txt|img)$/g,""),f.length&gt;1?parseInt(f[1],10):e.hasOwnProperty(m)?e[m]:0],function(t,e){var i=t?t.split(":"):[];return 2==i.length&amp;&amp;e.length&gt;0&amp;&amp;i.push(e.attr("ab-id")||"",e.attr("ab-variant")||""),i}(t.closest("[data-block-hash]").attr("data-block-hash"),t.closest("[ab-id]")));v[4]||(v[4]=v[7]),a.visit(v,l),t.removeAttr("data-titlealt").find("._title,._image,._video,._track").andSelf().filter("._title,._image,._video,._track").parents("a[href]").each(function(){r($(this),v),a.memoize(this)}).on("click mousedown",function t(e){if("click"==e.type||"mousedown"==e.type&amp;&amp;2==e.which){var i=$(this);a.click(i.data("identity")),i.off("click mousedown",t),i.attr("data-href")&amp;&amp;i.attr("href",i.attr("data-href"))}})}else t.removeAttr("data-titlealt")}else t.removeAttr("data-titlealt")}}e||(e="[data-block-hash],[data-titlealt],[data-track]"),!1!==p?p(function(){p=!1,(a=f()).visit(["B","0000000000000000","X"]),a.show(["B","0000000000000000","X"])}):a=f(),(e=$(e)).each(function(){for(var t,e=$(this),i=e.find("._title,._image,._video,._track,[data-titlealt]").andSelf().filter("._title,._image,._video,._track,[data-titlealt]").parents("a[href]:visible").map(function(){var t=$(this);return t.attr("data-href")||t.prop("href")}).toArray().reverse().reduce(function(t,e){return t[0].hasOwnProperty(e)||(t[1]+=1,t[0][e]=t[1]),t},[{},0])[0];!((t=e.find("[data-titlealt]").andSelf().filter("[data-titlealt]:visible")).length&lt;1);)t.each(function(){o(this,i)})}),e.find("[data-block-hash]").andSelf().filter("[data-block-hash]").each(function(){var t=$(this);if(!t.data("identity")){var e,i=t.attr("data-block-hash").split(":"),n=[];2==i.length?(e=t.closest("[ab-id]")).length&gt;0&amp;&amp;(i.push(e.attr("ab-id")||""),i.push(e.attr("ab-variant")||"")):t.attr("data-block-content")&amp;&amp;(n.push(t.attr("data-block-content")),t.removeAttr("data-block-content"));var o=["B"].concat(i);r(t,o.concat(n)),a.visit(o.concat(n),l),t.each(function(){a.memoize(this)}),t.find("._title,._image,._video,._track").addBack().parents("a[href]").addBack().filter("a[href],form[action]").toArray().reduce(function(e,n){if((n=$(n)).attr("data-parent-hash")&amp;&amp;t.attr("data-block-hash")&amp;&amp;n.attr("data-parent-hash")!==t.attr("data-block-hash"))return e;var s=n.attr("data-href")||n.prop("href")||n.prop("action"),l=n.attr("data-track")||n.attr("data-ua-hash")||"";if(e[0].hasOwnProperty(s)||(e[1]+=1,e[0][s]=e[1]),l||(l=o[2]+"~"+e[1],n.attr("data-ua-hash",l)),(l=l.split("~")).length&lt;2&amp;&amp;l.push(e[1]),l[1]=parseInt(l[1],10),!n.data("identity")){var c=["N",s].concat(l,i);r(n,c),"0000000000000000"==o[1]&amp;&amp;a.visit(c),n.each(function(){a.memoize(this)}),"FORM"==n.get(0).tagName?n.on("submit",function(t){a.click(c)}):n.on("click mousedown",function t(e){if("click"==e.type||"mousedown"==e.type&amp;&amp;2==e.which){var i=$(this);a.click(c),i.off("click mousedown",t),i.attr("data-href")&amp;&amp;i.attr("href",i.attr("data-href"))}})}return e},[{},0]),t.removeAttr("data-block-hash")}}),!0===i&amp;&amp;("article"==n&amp;&amp;$("div.b-article").attr("data-scrolldepth","article"),$("body").attr("data-scrolldepth","X"),(e=$("[data-scrolldepth]")).length&lt;1||e.css("position","relative").each(function(){var e=this.getAttribute("data-scrolldepth"),i=document.createElement("DIV");i.setAttribute("style","position:absolute;top:0px;left:0px;bottom:0px;width:2px;pointer-events:none;"),this.appendChild(i);for(var n=0;n&lt;21;n+=1){var a=document.createElement("DIV");a.setAttribute("style","position:absolute;top:"+(20==n?"calc(100% - 2px)":5*n+"%")+";left:0px;width:2px;height:2px;pointer-events:none;"),$(a).data("identity",["S","0000000000000000",e,5*n]),t.observe(a),i.appendChild(a)}}))}function u(){return Math.floor(runCore.get_option("time")+((new Date).getTime()-d)/1e3)}function f(){var i=runCore.base_origin();if(c.hasOwnProperty(i))return c[i];c[i]={timer:!1,mark:u(),state:"enter",cache:{},data:{},scroll:{},clicked:!1,target:"filter:"+r,target_el:null,queue:[],identity:{},visit:o(0),show:o(1),click:o(2),leave:o(3),flush:function(t,n){var r=this,o=u();if(n=n||this.state,!$.isEmptyObject(this.data)||"leave"==n){if("leave"==n&amp;&amp;this.clicked&amp;&amp;this.click(["B","0000000000000000","X"],o),"leave"==n){var l=this.leave(["B","0000000000000000","X"],o);if(!$.isEmptyObject(this.scroll[1])){var c={};$.each(this.scroll[1],function(t,e){$.each(e,function(t,e){var i=e[4]+":"+e[5];c.hasOwnProperty(i)||(c[i]={hash:e[4],name:e[5],tm:o,scroll_offset:new Array(21),scroll_time:new Array(21)}),t=Math.floor(e[6]/5),c[i].scroll_time[t]=e[7],c[i].scroll_offset[t]=e[8]})}),this.scroll={},$.each(c,function(t,e){for(;e.scroll_time.length&gt;0&amp;&amp;!Number.isInteger(e.scroll_time[e.scroll_time.length-1]);)e.scroll_time.pop();for(;e.scroll_offset.length&gt;0&amp;&amp;!Number.isInteger(e.scroll_offset[e.scroll_offset.length-1]);)e.scroll_offset.pop();r.data.hasOwnProperty("3")||(r.data[3]={}),r.data[3].hasOwnProperty(e.tm)||(r.data[3][e.tm]=[]),r.data[3][e.tm].push([l[0],l[1],l[2],"S",e.hash,e.name,e.scroll_time,e.scroll_offset])})}}this.state="interact";var d=[e,this.data,window.location.toString(),document.referrer,runCore.get_option("time"),n,"enter"==n?this.mark:u()];s&amp;&amp;d.push(s),window.TUTBYStories&amp;&amp;window.TUTBYStories.UserData&amp;&amp;window.TUTBYStories.UserData.set_order(d),d=JSON.stringify(d),this.data={},a(i,d,t),"leave"==n&amp;&amp;(this.flush=function(){})}},memoize:function(e){t.observe(e)}};var n=!1;return c[i];function o(t){return t=t.toString(),function(e,i,a){var o,l=e.join(":"),c=t+":"+l,d=this,p=d.data;if(i=i||u(),"S"==e[0]&amp;&amp;(e.push(i-runCore.get_option("time"),a),p=d.scroll),this.cache.hasOwnProperty(c))o=!1;else{if("0"==t&amp;&amp;(this.queue.push({filter:e}),!n)){n=!0;var h="d710f1b0348d24fd40063c40d4b5c9ed:"+r,f=$('&lt;iframe src="'+runCore.base_origin()+"/api/store.html#"+r+'" width="1" height="1" style="display: none;"&gt;&lt;/iframe&gt;').appendTo("body").on("load",function(){this.contentWindow.postMessage({method:"touch",key:h,data:{url:s||window.location.toString()}},runCore.base_origin())});window.addEventListener("message",function t(e){e.data&amp;&amp;"storage#set"==e.data.method&amp;&amp;e.data.key==h&amp;&amp;(window.removeEventListener("message",t),f.remove(),f=!1,window.page_wsapi.on("mixin",[h,e.data.data],function(t){var e=document.createElement("script");e.onload=function(){e.removeAttribute("src"),e.removeAttribute("data-request-id")},d.target_el=$(e),d.target_el.on(d.target+"-ready",function(){var t,e;d.target_el.trigger($.Event(d.target+"-add",{collector:d})),d.queue=(t=d.queue,(e=async.queue(function(t,e){return d.target_el.trigger($.Event(d.target+"-add",t)),e()})).push(t),e)}),e.setAttribute("data-request-id",r),e.src=atob("ZGF0YTp0ZXh0L2phdmFzY3JpcHQ7YmFzZTY0LA==")+t,document.head.appendChild(e)}))})}p.hasOwnProperty(t)||(p[t]={}),p[t].hasOwnProperty(i)||(p[t][i]=[]),o=[Math.floor($(window).height()),Math.floor($(document).height()),Math.floor($(window).scrollTop())].concat(e),p[t][i].push(o),this.cache[c]=i,2==t&amp;&amp;(this.clicked=!0)}return!1===this.timer&amp;&amp;(this.timer=setInterval(function(){d.flush(!0)},1e4)),o}}}}(),initCustomSelectBox:function(t){$(t||".c_sl").filter(function(){return"yes"!=$(this).data("c_sl_ready")}).each(function(){var t=$(this),e=t.attr("disabled")?"disabled":"",i=t.find("option:selected",this).text(),n=t.find("option:selected",this).attr("disabled")?"disabled":"";t.wrap('&lt;span class="custom_select '+e+'"&gt;&lt;/span&gt;').parent().append('&lt;i class="b-icon icon-arrow-bottom"&gt;&lt;/i&gt;&lt;span class="val '+n+'"&gt;'+i+"&lt;/span&gt;"),t.on({focus:function(){$(this).parent().addClass("focused_select")},blur:function(){$(this).parent().removeClass("focused_select")},change:function(){$(this).parent().find("span").removeClass("disabled").text($("option:selected",this).text())},keyup:function(t){38!=t.keyCode&amp;&amp;40!=t.keyCode||$(this).parent().find("span").removeClass("disabled").text($("option:selected",this).text())}}).css({opacity:"0",height:t.parent().height(),"-khtml-appearance":"none"}).data("c_sl_ready","yes")})},init_framed:function(){var t=!1;return $(window).resize(function(){!1===t&amp;&amp;(t=setTimeout(function(){$('[data-widget="slider"]').trigger($.Event("resize.slider")),t=!1},1e3))}),$(window).ready(function(){$(window).trigger("resize")}),function(t){t=$(t);var n=$('[data-widget="slider"]',t);return!(n.length&lt;1)&amp;&amp;(o(n,"state",!1)?function(t,e){return o(n,t,e)}:(i(n),function(t,e){e&amp;&amp;("random"!=e?(e=parseInt(e,10),!isNaN(e)&amp;&amp;isFinite(e)&amp;&amp;e&gt;0&amp;&amp;e&lt;frameCount&amp;&amp;s(t,"initialFrame",e)):s(t,"initialFrame",e))}(n,n.attr("data-initial-frame")),function(t,i){var n;function a(){n=setInterval(function(){var i=$(t).find(".b-slider_btn.next");e(t,i)},i)}i&amp;&amp;i&gt;0&amp;&amp;(a(),t.on("mouseenter",function(t){clearInterval(n),n=null}),t.on("mouseleave",function(t){a()}))}(n,n.attr("data-autoplay")),r(n),n.on({"resize.slider":function(t,e){var n=$(this);(o(n,"frameWidth",1)!=l(n)||e&amp;&amp;e.force)&amp;&amp;(i(n),r(n))}}),n.on("click",'[data-role="slider-nav"]',function(t){var i,n;(n=$(t.currentTarget)).prop("href")||(i=$(t.delegateTarget),t.preventDefault(),"ready"==o(i,"state")&amp;&amp;e(i,n))}),void 0!==$.fn.swipe&amp;&amp;n.swipe({triggerOnTouchEnd:!0,swipeStatus:function(t,i,a,r){"cancel"==i||"end"==i&amp;&amp;("right"==a?e(n,n.find('[data-role="slider-nav"][data-offset="-1"]')):"left"==a&amp;&amp;e(n,n.find('[data-role="slider-nav"][data-offset="+1"]')))},allowPageScroll:"vertical",excludedElements:".b-slider_btn, b-slider-ctrl",threshold:75}),function(t,e){return o(n,t,e)}))};function e(t,e){var i,n,r,l,c,d=(e.attr("data-offset")||"").toString().match(/^([+-]?)([0-9]+)$/),p=o(t,"frameNo",0),h=o(t,"frameWidth",0);if(d){if(d[2]=parseInt(d[0],10),isNaN(d[2])||!isFinite(d[2]))return!1;if(""==d[1]){if(d[2]==p)return!1;d[2]=d[2]-p,d[1]=d[2]&gt;0?"+":"-"}switch(s(t,"state","moving"),n=(i=$(".entry-product",t).not(".entry-sliced")).slice((p+1+d[2])*h,(p+2+d[2])*h),r=i.filter(":visible").first().outerWidth()*h,d[1]){case"+":l=0,c=-r;break;case"-":l=-r,c=0}n.removeAttr("style").first().parent().first().css({left:l}).animate({left:c},{duration:500,queue:!1,complete:function(){var e=o(t,"frameCount");(p+=d[2])&lt;0?p=e-1:p&gt;=e&amp;&amp;(p=0),s(t,"frameNo",p),a(t),s(t,"state","ready")}})}}function i(t){s(t,"state","ready"),function(t,e){var i,n,a,r,o,s,l,c,d,p,h=".entry-product";if(e&amp;&amp;(i=e.match(/^random(?::(.+))?$/)))for(i[1]&amp;&amp;(h+=i[1]),a=(n=$(h,t).not(".entry-cloned,.entry-sliced").toArray()).length-1;a&gt;0;a--)r=Math.floor(Math.random()*(a+1)),i=n[a],n[a]=n[r],n[r]=i,o=n[a],s=n[r],l=void 0,c=void 0,d=void 0,p=void 0,l=o.parentNode,c=o.nextSibling,d=s.parentNode,p=s.nextSibling,l.insertBefore(s,c),d.insertBefore(o,p)}(t,t.attr("data-initial-order")||""),t.removeAttr("data-initial-order");var e,i=$(".entry-product",t).not(".entry-cloned,.entry-sliced");s(t,"allowedFrameWidth",(e=(e=t.attr("data-frame-width")||"").toString().split(","),(e=$.map(e,function(t){return parseInt(t,10)}).filter(function(t){return!isNaN(t)&amp;&amp;isFinite(t)}).sort()).length&gt;0&amp;&amp;e)),s(t,"frameWidth",l(t,i)),s(t,"frameNo",function(t,e){return e||(e=$(".entry-product",t).not(".entry-cloned,.entry-sliced")),Math.floor(e.index(e.filter(":visible").first())/o(t,"frameWidth",1))}(t,i))}function n(t,e){var i=$(".entry-product",t),n=i.length%e;return i=i.removeClass("entry-sliced"),n&amp;&amp;(i=i.slice(-n).addClass("entry-sliced").end().not(".entry-sliced")),s(t,"frameCount",function(t,e){return e||(e=$(".entry-product",t).not(".entry-cloned,.entry-sliced")),Math.ceil(e.length/o(t,"frameWidth",1))}(t,i)),i}function a(t){var e=o(t,"frameWidth",1),i=o(t,"frameNo",0),n=o(t,"frameCount",1),a=$(".entry-product",t).not(".entry-cloned,.entry-sliced");i&lt;0?i=n-1:i&gt;=n&amp;&amp;(i=0);var r=i*e;if($(".entry-product.entry-cloned:visible",t).hide(),r&gt;0&amp;&amp;a.slice(0,r).hide(),a.slice(r,r+e).show().css({display:""}),a.first().parent().css({left:0}),a.slice(r+e,a.length).hide(),$('a[data-role="slider-nav"][data-offset]',t).removeClass("active").filter('[data-offset="'+i+'"]').addClass("active"),i==n-1){var s=t.attr("data-nav-url");s&amp;&amp;$('[data-role="slider-nav"][data-offset="+1"]',t).attr("href",s).parents("form").attr({action:s,target:"_blank"})}else $('[data-role="slider-nav"][data-offset="+1"][url]',t).removeAttr("href").parents("form").removeAttr("action").removeAttr("target")}function r(t){$(".entry-product.entry-cloned,.entry-product:empty",t).remove(),t.addClass("forward back");var e,i,r=o(t,"frameWidth",1);!function(t,e){var i=t.first().parent();t.slice(0,e).clone(!0).addClass("entry-cloned").removeAttr("id").removeAttr("style").hide().appendTo(i),t.slice(-e).clone(!0).addClass("entry-cloned").removeAttr("id").removeAttr("style").hide().prependTo(i)}(n(t,r),r),!1!==(i=o(t,"initialFrame",!1))&amp;&amp;(e=o(t,"frameCount",1),"random"==i&amp;&amp;(i=Math.floor(Math.random()*e)),s(t,"frameNo",i=Math.max(0,Math.min(i,e-1))),s(t,"initialFrame",!1)),function(t){if("framed"===t.attr("data-nav-type")){var e=$(".b-slider-ctrl",t);e.length&lt;1&amp;&amp;(e=$('&lt;ul class="b-slider-ctrl"&gt;&lt;/ul&gt;')).prependTo(t);for(var i=o(t,"frameCount"),n=[],a=0;a&lt;i;a++)n.push('&lt;li class="b-slider-ctrl__li"&gt;&lt;a class="b-slider-ctrl-frame" data-role="slider-nav" data-offset="'+a+'"&gt;&lt;/a&gt;&lt;/li&gt;');e.html(n.join(""))}}(t),a(t)}function o(t,e,i){var n=t.data("settings:"+e);return void 0===n?i:n}function s(t,e,i){return t.data("settings:"+e,i),i}function l(t,e){var i=(e||$(".entry-product",t)).filter(":visible").first(),n=Math.floor(i.parent().width()/i.width()+.01),a=o(t,"allowedFrameWidth",!1);if(!$.isArray(a)||a.length&lt;1)return n;if(-1!=a.indexOf(n))return n;for(var r=a.length-1;r&gt;=0;r--)if(a[r]&lt;=n)return a[r];return 1}}(),insert_ads_frame_widget:function(){var t=["czFyLnR1dC5ieQ==","czJyLnR1dC5ieQ==","czNyLnR1dC5ieQ==","czRyLnR1dC5ieQ=="],e=[],i={min_h:50,is_smart:$("html.smart").length&gt;0,trgt:this.get_param("trgt")?JSON.parse(atob(this.get_param("trgt"))):{},mark:"ins[data-frame]",container:'&lt;div class="b-prmplace" style="position:fixed;visibility: hidden; margin-bottom:20px;"&gt;&lt;span class="b-prmplace-head"&gt;&lt;a href="https://tutby.com/advert/order/" target="_blank"&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class="b-prmplace-line"&gt;&lt;/span&gt;&lt;div class="b-prmplace-media"&gt;&lt;div class="b-prmplace-content" data-frame="{frame_id}"&gt;{frame_content}&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;'},n=$(i.mark).map(function(){return parseInt($(this).attr("data-frame"),10)}).toArray();if(n.length&lt;1)return!1;$.get({url:"https://"+atob(t[Math.floor(Math.random()*t.length)])+"/get.php",data:$.extend({framesid:n.join(","),enc:"utf8",type:"json"},i.trgt),dataType:"json",success:function(t){if(t&amp;&amp;$(n).each(function(n,a){t["banner_"+a]&amp;&amp;function(t,n){var a=$('ins[data-frame="'+t+'"]'),r=$(a).data("float"),o='div.b-prmplace-content[data-frame="'+t+'"]';if(a.replaceWith(i.container.replace("{frame_id}",t).replace("{frame_content}",n)),r){var s="left"==r?{"margin-right":"20px"}:{"margin-left":"20px"};$(o).parents(".b-prmplace").css($.extend({float:r},s))}i.is_smart&amp;&amp;$(o).css({display:"block"}),$(o).height()&gt;i.min_h?$(o).parents(".b-prmplace").css({position:"",visibility:""}):e.push($(o))}(a,t["banner_"+a].code)}),e.length&gt;0){var a=[];$(e).each(function(t,e){a[t]=setInterval(function(){e.height()&lt;=i.min_h||(e.parents(".b-prmplace").css({position:"",visibility:""}),clearInterval(a[t]))},1500)}),setTimeout(function(){a.length&gt;0&amp;&amp;$(a).each(function(t){clearInterval(a[t])})},5e3)}}})},insert_ads_frame:function(t){var e=["czFyLnR1dC5ieQ==","czJyLnR1dC5ieQ==","czNyLnR1dC5ieQ==","czRyLnR1dC5ieQ=="],i=!1,n=this;for("object"!=typeof t&amp;&amp;(t={frame_id:t+""}),t=this.apply_settings(t,{frame_id:!1,target:!1,link:!1,wrap:!1,autoresize:!1,size:!1});;){if(!1===t.frame_id){i=new TypeError("frame_id is not set");break}if("function"==typeof t.frame_id&amp;&amp;(t.frame_id=t.frame_id()),t.frame_id=parseInt(t.frame_id,10),isNaN(t.frame_id)||t.frame_id&lt;=0){i=new RangeError("illegal frame_id");break}"function"==typeof t.target&amp;&amp;(t.target=t.target(t.frame_id)),!1===t.target&amp;&amp;(t.target='script[data-frame="'+t.frame_id+'"]'),"function"==typeof t.link&amp;&amp;(t.link=t.link(t.frame_id,t.target)),!1===t.link&amp;&amp;(t.link="https://"+atob(e[Math.floor(Math.random()*e.length)])+"/get.php");break}if(!1!==i)throw i;$.get({url:t.link,data:{framesid:t.frame_id,enc:"utf8",type:"json"},dataType:"json",success:function(e){e&amp;&amp;e["banner_"+t.frame_id]&amp;&amp;function(t,e){if(e&amp;&amp;!((t=$(t)).length&lt;1)){var i=["&lt;html&gt;","&lt;head&gt;","&lt;title&gt;"+document.title+"&lt;/title&gt;",'&lt;base target="top"&gt;','&lt;script src="'+n.base_origin()+'/scripts/by4/jquery-2.2.4.min.js"&gt;&lt;\/script&gt;',"&lt;script&gt;","window.history.replaceState(null,window.parent.document.title,window.parent.location.toString());","&lt;\/script&gt;","&lt;/head&gt;",'&lt;body style="margin: 0px; padding: 0px;"&gt;'+e+"&lt;/body&gt;","&lt;/html&gt;"].join(""),a=document.createElement("iframe");a.setAttribute("sandbox","allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-top-navigation"),a.setAttribute("scrolling","no"),a.setAttribute("style","border: 0px; width: 1px; height: 1px; overflow: hidden; visibility: hidden; position: absolute; bottom: 0px; left: 0px;"),$(a).insertBefore(t),t.remove(),a.contentWindow.document.open(),a.contentWindow.document.write(i),a.contentWindow.document.close()}}(t.target,e["banner_"+t.frame_id].code)}})},init_page:function(t){t&amp;&amp;this.set_option("src_hash",t[1])},init_x_place:function(t,e){function i(t){t.preventDefault()}t=t||"body",e=e||"div[data-x-params]",$(e,t).each(function(){var t=$(this),e=t.attr("data-x-params")||"e30=";if("ready"!=e){t.attr("data-x-params","ready");try{e=JSON.parse(atob(e)),t.data("x-params",e),t.on("x:ping",i),e.hasOwnProperty("sticky_h")||(e.sticky_h="1200px");var n,a,r,o=10;$(".longread-wide").length||(r=setInterval(function(){t.height()&gt;100?clearInterval(r):0==--o&amp;&amp;(t.siblings("div[data-mywidget-id]").show(),e.sticky_h.match(/^\d+(px|%|vh)$/)&amp;&amp;t.parents('div[data-widget="vscroll"]').length&gt;0&amp;&amp;t.parents("div.impl-vscroll-container").css("min-height","770px"),clearInterval(r))},500)),e.sticky_h.match(/^\d+(px|%|vh)$/)&amp;&amp;t.parents('div[data-widget="vscroll"]').length&gt;0&amp;&amp;((n=document.createElement("style")).setAttribute("type","text/css"),document.head.appendChild(n),a=4+Math.floor(12*Math.random()),e.className="impl-vscroll-"+function(t){t=t||9;var e,i="",n="abcdefghijklmnopqrstuvwxyz0123456789";for(e=0;e&lt;t;e++)i+=n.charAt(Math.floor(Math.random()*n.length));return i}(a),n.innerHTML="."+e.className+"{min-height:calc(min(500px,100%));max-height:calc(max("+e.sticky_h+",100%))}",t.parents("div.impl-vscroll-container").addClass(e.className).removeAttr("style"))}catch(t){console.log(t)}}})},init_myWidget:function(t){return!1},init_ab:function(t){var e=(t=$(t||document)).add(t.find("[ab-id]")).filter("[ab-id]");e.length&lt;1||e.each(function(){var t=$(this),e=(new Date).getTime(),i=t.attr("ab-id"),n=t.attr("ab-variant"),a=t.attr("ab-visibility"),r=runCore.get_option("geotarget"),o=new IntersectionObserver(function(a){for(var s=a.length-1;s&gt;=0;s--)a[s].isIntersecting&amp;&amp;(runCore.track_analytics("abtest",JSON.stringify({id:i,variant:n,action:"view",time:Math.floor(runCore.get_option("time")+((new Date).getTime()-e)/1e3),region:r,position:t.data("io-title")})),o.unobserve(a[s].target))},{threshold:parseFloat(a||.25)});o.observe(t.get(0)),$("a",t.get(0)).on("click",function(){runCore.track_analytics("abtest",JSON.stringify({id:i,variant:n,action:"click",time:Math.floor(runCore.get_option("time")+((new Date).getTime()-e)/1e3),region:r,position:$(this).data("ua-hash")}))}),t.removeAttr("ab-id").removeAttr("ab-variant").removeAttr("ab-visibility")})},init_payments:function(t,e){var i=$("#"+t+" form");$("html.smart").length&gt;0&amp;&amp;$('input[type="submit"]',i).removeClass("button"),$("ul.impl-period",i).html([["recurrent","Каждый месяц"],["once","Один раз"]].filter(function(t){return e.hasOwnProperty(t[0])&amp;&amp;e[t[0]]}).map(function(t){return'&lt;li&gt;&lt;input id="period_'+t[0]+'" name="period" type="radio" value="'+t[0]+'"&gt;&lt;label for="period_'+t[0]+'"&gt;'+t[1]+"&lt;/label&gt;&lt;/li&gt;"}).join("")),["recurrent","once"].filter(function(t){return e.hasOwnProperty(t)&amp;&amp;e[t]}).forEach(function(t){$("ul.impl-payment-variant-"+t,i).html(e[t].map(function(e,i){return'&lt;li&gt;&lt;input id="variant_'+t+"_"+i+'" type="radio" name="variant" value="'+e.link+'"&gt;&lt;label for="variant_'+t+"_"+i+'"&gt;'+e.text+"&lt;/label&gt;&lt;/li&gt;"}).join(""))}),$('input[name="period"]',i).on("change",function(){$(".impl-payment-variant",i).hide().filter(".impl-payment-variant-"+this.value).show(),$('input[name="variant"]:checked',i).prop("checked",!1),$('input[type="submit"]',i).prop("disabled",!0)}),$("ul.impl-period",i).find("li:first-child input").prop("checked",!0),$('input[name="period"]:checked').trigger("change"),$('input[name="variant"]',i).on("change",function(){$('input[type="submit"]',i).prop("disabled",$('input[name="variant"]:checked',i).length&lt;1)}),i.on("submit",function(){var t=$('input[name="variant"]:checked',i).get(0);return!!t&amp;&amp;($('&lt;form method="get" action="'+t.value+'" target="_blank"&gt;'+Array.from(new URL(t.value).searchParams.entries()).map(function(t){return'&lt;input type="hidden" name="'+t[0]+'" value="'+t[1]+'"&gt;'}).join("")+"&lt;/form&gt;").appendTo("body").submit(),!1)})},track_analytics:function(t,e){if("sendBeacon"in navigator)navigator.sendBeacon(this.base_origin()+"/stat/?t="+t,e);else{var i=new XMLHttpRequest;i.open("POST",this.base_origin()+"/stat/?t="+t),i.setRequestHeader("Content-Type","application/x-www-form-urlencoded"),i.send(e)}},navigation_set_active:function(t,e){t=t||"[data-navigation]",e=e||"active";var i=runCore.get_option("navigation"),n=[];if(i){var a=$('link[rel="canonical"]').attr("href")||window.location.origin+window.location.pathname;($.isArray(i.group_id)?i.group_id:[i.group_id]).map(function(t){t&amp;&amp;n.push({group_id:t,link:a})})}$('meta[property^="navigation:group:"]').each(function(){n.push({group_id:$(this).attr("property").replace("navigation:group:",""),link:$(this).attr("content")})}),n.map(function(i){var n=i.group_id,a=i.link;[a,a.replace(window.location.origin,"")].map(function(i){$('[data-group="'+n+'"] a[href="'+i+'"],[data-group="'+n+'"] a[data-href="'+i+'"]',t).parents('[data-group="'+n+'"]',$(t)).addClass(e).parents("[data-navigation-show-more]").addClass(e)})})},init_article_endless:function(){var t=this,e=$("html").hasClass("smart")?"smart":"desktop",i=$("div[data-prev-page]"),n=window.parent.window,a=0,r=500;function o(t){$(".article-progress").css({width:(100*t|0)+"%"})}function s(t,e){-1==window.location.toString().indexOf(e)&amp;&amp;(window.history.replaceState(null,t,e),window.document.title=t)}function l(t){$('&lt;div class="outer" data-news-sr="'+btoa(t)+'" style="-webkit-transition:.5s opacity, .5s visibility;transition:.5s opacity, .5s visibility;opacity:0;visibility:hidden;min-height:0;"&gt;&lt;iframe onload="article_endless.scroll_reveal_init(this)" src="'+t+(-1==t.indexOf("?")?"?":"&amp;")+'inpage_article=1&amp;wincode=1" width="100%" height="1" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" seamless style="width:1px;min-width:100%;"&gt;&lt;/iframe&gt;&lt;/div&gt;').appendTo(i),"smart"==e&amp;&amp;$("&lt;style&gt;.smart .outer-loaded {margin-top:50px}&lt;/style&gt;").appendTo(i),seamless.parent({allowed_domains:["*"],target_domain:"*"})}function c(t,e){window.parent.postMessage(t,e)}function d(t){return $("&lt;div&gt;&lt;/div&gt;",{"data-show-news":btoa(t.prev_url)}).css({bottom:Math.min($("body").height(),r)+"px"}).appendTo("html.page-article body")}function p(t){var e=new IntersectionObserver(function(t){for(var i=t.length-1;i&gt;=0;i--)if(t[i].isIntersecting){var n=$(t[i].target);l(atob(n.attr("data-show-news"))),e.unobserve(t[i].target),n.remove()}},{threshold:[.01]});e.observe($(t).get(0))}function h(t){console.log("marklineScrollReveal"),ScrollReveal().reveal($(t),{duration:0,opacity:1,reset:!0,beforeReveal:function(t){l(atob($(t).attr("data-show-news"))),$(t).remove()}})}function u(t,e,i){var n,a;n=window.IntersectionObserver?new IntersectionObserver(function(t){for(var n=t.length-1;n&gt;=0;n--)if(t[n].isIntersecting){s(e,i);break}},{threshold:[.01]}):{observe:function(t){$(function(){ScrollReveal().reveal($(t),{duration:0,opacity:1,reset:!0,beforeReveal:function(t){s(e,i)}})})}},(a="body"==$(t).selector?$('&lt;div data-scroll-ctx style="height:'+$("[data-prev-page]").position().top+'px"&gt;&lt;/div&gt;'):$('&lt;div data-scroll-ctx-inner style="bottom:0"&gt;&lt;/div&gt;')).appendTo(t);for(var r=1;r&lt;19;r+=1)o(n,a,r);function o(t,e,i){t.observe($('&lt;div data-scroll-pct="'+5*i+'" style="top:'+(20==i?"calc(100% - 2px)":5*i+"%")+'"&gt;&lt;/div&gt;').appendTo(e).get(0))}}return{init:function(){if(window.location.search.indexOf("psw=")&gt;-1)return!1;var r=!(!$('html head link[rel="prev"]').length||$('iframe[src*="'+$('html head link[rel="prev"]').attr("href")+'"]').length&gt;0)&amp;&amp;$('html head link[rel="prev"]').attr("href"),s=($('link[itemprop="mainEntityOfPage"]').prop("href")||window.location.href).toString().replace(/^([^?#]+)(?:[?#].*)?$/g,"$1"),l=window.document.title,f=t.i18gen("title",["rus","bel"],[["onbording","Листайте дальше, чтобы прочитать следующую новость","Гартайце далей, каб прачытаць наступную навіну"]]);if(window.parent.window===window){s=window.location.toString().replace(/#.*$/,"");var m=($('meta[property="article:tags"][content]').attr("content")||"").toString().match(/(?:^|,)(?:2688)(?:,|$)/);if(!r||m)return!1;"smart"==e&amp;&amp;($("&lt;div data-prev-page&gt;&lt;/div&gt;").appendTo($("#content&gt;.content")),i=$("[data-prev-page]"));var v='&lt;div class="b-scroll-to-link__text"&gt;&lt;div class="b-scroll-to-link__text-i"&gt;&lt;span class="b-scroll-to-link-header"&gt;&lt;/span&gt;&lt;div class="b-scroll-to-link-text"&gt;&lt;h2&gt;'+t.i18n("title",f("onbording"))+"&lt;/h2&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;",g="&lt;style&gt;[data-scroll-ctx],[data-scroll-ctx-inner],[data-scroll-pct],[data-show-news] {position:absolute;width:2px;pointer-events:none;left:0px;} [data-scroll-ctx],[data-scroll-ctx-inner] {top:0px;} [data-scroll-pct],[data-show-news] {height:2px;}&lt;/style&gt;";g+="smart"==e?'&lt;link type="text/css" rel="stylesheet" href="'+t.base_origin("news")+"/css/by4/addon/scroll-to-link-smart~"+t.get_option("rev").css+'.css"&gt;':'&lt;link type="text/css" rel="stylesheet" href="'+t.base_origin("news")+"/css/by5/addon/scroll-to-link-desktop~"+t.get_option("rev").css+'.css"&gt;',"smart"==e?$(g+"&lt;style&gt;.smart .outer-loaded[data-news-sr] {margin-top: 0;}&lt;/style&gt;"+v).insertBefore(i):$(g+v).insertBefore(i);var w={title:l,url:s,prev_url:r};t.set_param("inpage.frames."+btoa(s),w),window.addEventListener&amp;&amp;window.addEventListener("message",function(e){if(e.origin==window.location.origin&amp;&amp;e.data.hasOwnProperty("name"))switch(e.data.name){case"set.indicator":e.data.value&amp;&amp;o(e.data.value);break;case"set.loaded":var i=$(window).scrollTop();t.set_param("inpage.frames."+btoa(e.data.url),{title:e.data.title,prev_url:e.data.prev_url,url:e.data.url}),$('iframe[src*="'+e.data.url+'"]').height(Math.max(parseInt(e.data.height),1)),$('iframe[src*="'+e.data.url+'"]').parents("[data-news-sr]").css({opacity:1,visibility:"visible",position:"relative"}).addClass("outer-loaded"),window.scrollTo(0,i-10),setTimeout(function(){u($('iframe[src*="'+e.data.url+'"]').parents("[data-news-sr]"),e.data.title,e.data.url),e.data.prev_url&amp;&amp;(d(e.data),window.IntersectionObserver?p("div[data-show-news]"):h("div[data-show-news]"))},1e3)}}),d(w),function(){function t(){$("[data-scroll-ctx]").css("height",$("div[data-prev-page]").position().top+"px")}window.ResizeObserver?new ResizeObserver(t).observe($("body").get(0)):setInterval(t,1e3)}(),function(t){u($("body"),t.title,t.url),window.IntersectionObserver?(p("div[data-show-news]"),$("form.b-float-button").length&amp;&amp;new IntersectionObserver(function(t){for(var e=t.length-1;e&gt;=0;e--)if(t[e].isIntersecting){$("form.b-float-button.animated").removeClass("animated");break}},{threshold:[.01]}).observe($("form.b-float-button").parent().get(0))):h("div[data-show-news]")}(w),a=$(".b-article").offset().top,$('&lt;div class="article-progress" style="width: 0%;"&gt;&lt;/div&gt;').appendTo($("#top-menu, #nav"))}else $("a[href]").removeAttr("target"),seamless.frame({allowed_domains:["*"],target_domain:"*"}),c({name:"set.loaded",title:l,url:s,prev_url:r,height:$(document).height()},window.parent.location.origin),o(a=$(window.parent.window).scrollTop()),"desktop"==e&amp;&amp;$("&lt;style&gt;.branding_bottom_links { display: none; } html .branding .branding_top .branding_bottom { background: none; }&lt;/style&gt;").appendTo($("body"));$(window.parent.window).on("scroll",function(){var t,e,i,r,o;t=a,e=window.parent.window===window,i=t+$(".b-article").outerHeight(),r=$(".b-article").outerHeight(),o=e?$(document).height():t+$(document).height(),$(n).scrollTop()&lt;=i&amp;&amp;$(n).scrollTop()&gt;=t?c({name:"set.indicator",value:($(n).scrollTop()-t)/r},window.parent.location.origin):$(n).scrollTop()&lt;o&amp;&amp;$(n).scrollTop()&gt;=t&amp;&amp;c({name:"set.indicator",value:1},window.parent.location.origin)})},scroll_reveal_init:function(t){}}},backoff:(t={exponential:function(t,e){return Math.floor(Math.random()*Math.pow(2,t)*e)},fibonacci:function(t,e){var i,n=1;if(t&gt;n){i=1,n=2;for(var a=2;a&lt;t;a++){var r=i+n;i=n,n=r}}return Math.floor(Math.random()*n*e)}},function(e,i){return new function(t,e){var i=0,n=(e=e||{}).delay||100;this.backoff=function(e){var a=t(i++,n);return setTimeout(e,a,i)},this.reset=function(){i=0}}(t[e]||t.exponential,i)})},window.page_wsapi=function(t){return new function t(e){if(e instanceof t)return e;var i=!1,n={},a={},r=0;this.on=function(t,e,i){var o;if((t=t.toString()).match(/^target[0-9]+$/)){if(o=t,!n.hasOwnProperty(o))return;n[o].filter=e,n[o].sent=!1}else o="target"+ ++r,n[o]={type:t,filter:e,target:o,sent:!1};return"function"==typeof i&amp;&amp;(a[o]=a[o]||[],a[o].push(i)),o};this.off=function(t,e){if(n.hasOwnProperty(t)&amp;&amp;(a.hasOwnProperty(t)&amp;&amp;delete a[t],e&amp;&amp;this.send({unsubscribe:{type:n[t].type,filter:n[t].filter}}),delete n[t],$.isEmptyObject(n)&amp;&amp;(!1,!1!==i)))try{i.close(),i=!1}catch(t){console.log(t)}};this.send=function(t){}}(window.page_wsapi)}(),new n;function a(t){return t||(t=new Date),function(t,e,i){t&lt;3&amp;&amp;(t+=12,--i);return Math.round(e+Math.floor((153*t-457)/5)+365*i+Math.floor(i/4)-Math.floor(i/100)+Math.floor(i/400)+1721118.5)}(t.getMonth()+1,t.getDate(),t.getFullYear())-1721060}}();
</pre></body></html>