(function(){
 var KasperskyLab = (function (context) {
    function GetClass(obj) {
        if (typeof obj === "undefined")
            return "undefined";
        if (obj === null)
            return "null";
        return Object.prototype.toString.call(obj)
            .match(/^\[object\s(.*)\]$/)[1];
    }
    var exports = {}, undef;
    function ObjectToJson(object) {
        if (object === null || object == Infinity || object == -Infinity || object === undef)
            return "null";
        var className = GetClass(object);
        if (className == "Boolean") {
            return "" + object;
        } else if (className == "Number") {
            return window.isNaN(object) ? "null" : "" + object;
        } else if (className == "String") {
			var escapedStr = "" + object;
            return "\"" + escapedStr.replace(/\\/g, "\\\\").replace(/\"/g, "\\\"") + "\"";
        }
        if (typeof object == "object") {
            if (!ObjectToJson.check) ObjectToJson.check = [];
            for (var i=0, chkLen=ObjectToJson.check.length ; i<chkLen ; ++i) {
                if (ObjectToJson.check[i] === object) {
                    throw new TypeError();
                }
            }
            ObjectToJson.check.push(object);
            var str = '';
            if (className == "Array") {
                for (var index = 0, length = object.length; index < length; ++index) {
                    str += ObjectToJson(object[index]) + ',';
                }
                ObjectToJson.check.pop();
                return "["+str.slice(0,-1)+"]";
            } else {
                for (var property in object) {
                    if (object.hasOwnProperty(property)) {
                        str += '"' + property + '":' + ObjectToJson(object[property]) + ',';
                    }
                }
                ObjectToJson.check.pop();
                return "{"+str.slice(0,-1)+"}";
            }
        }
        return undef;
    }
    exports.stringify = function (source) {
        return ObjectToJson(source);
    };
    var parser = {
        source : null,
        grammar : /^[\x20\t\n\r]*(?:([,:\[\]{}]|true|false|null)|(-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)|"((?:[^\r\n\t\\\"]|\\(?:["\\\/trnfb]|u[0-9a-fA-F]{4}))*)")/,
        ThrowError : function() {
            throw new SyntaxError('JSON syntax error');
        },
        NextToken : function(token) {
            this.source = token.input.slice(token[0].length);
            return this.grammar.exec(this.source);
        },
        ParseArray : function(){
            var token = this.grammar.exec(this.source),
                parseItem = token && token[1] != ']',
                result = [];
            for(;;token = this.NextToken(token)) {
                if (!token)
                    this.ThrowError();
                if (parseItem) {
                    result.push(this.ParseValue(token));
                    token = this.grammar.exec(this.source);
                } else {
                    if (token[1]) {
                        if (token[1] == ']') {
                            break;
                        } else if (token[1] != ',') {
                            this.ThrowError();
                        }
                    } else {
                        this.ThrowError();
                    }
                }
                parseItem = !parseItem;
            }
            return result;
        },
        ParseObject : function(){
            var propertyName, parseProperty = true, result = {};
            for(var token = this.grammar.exec(this.source);;token = this.NextToken(token)) {
                if (!token)
                    this.ThrowError();
                if (parseProperty) {
                    if (token[1] && token[1] == '}') {
                        break;
                    } else if (token[1] || token[2] || !token[3]) {
                        this.ThrowError();
                    }
                    propertyName = token[3];
                    token = this.NextToken(token);
                    if (!token || !token[1] || token[1] != ':')
                        this.ThrowError();
                    parseProperty = false;
                } else {
                    if (!propertyName)
                        this.ThrowError();
                    result[ propertyName ] = this.ParseValue(token);
                    token = this.NextToken(this.grammar.exec(this.source));
                    if (token[1]) {
                        if (token[1] == '}') {
                            break;
                        } else if (token[1] != ',') {
                            this.ThrowError();
                        }
                    } else {
                        this.ThrowError();
                    }
                    propertyName = undef;
                    parseProperty = true;
                }
            }
            return result;
        },
        ParseValue : function(token){
            if (token[1]) {
                switch (token[1]){
                    case '[' :
                        this.source = this.source.slice(token[0].length);
                        return this.ParseArray();
                    case '{' :
                        this.source = this.source.slice(token[0].length);
                        return this.ParseObject();
                    case 'true' :
                        return true;
                    case 'false' :
                        return false;
                    case 'null' :
                        return null;
                    default:
                        this.ThrowError();
                }
            } else if (token[2]) {
                return  +token[2];
            }
            return token[3].replace(/\\(?:u(.{4})|(["\\\/'bfnrt]))/g, function(substr, utfCode, esc){
                if(utfCode)
                {
                    return String.fromCharCode(parseInt(utfCode, 16));
                }
                else
                {
                    switch(esc) {
                        case 'b': return '\b';
                        case 'f': return '\f';
                        case 'n': return '\n';
                        case 'r': return '\r';
                        case 't': return '\t';
                        default:
                            return esc;
                    }
                }
            });
        },
        Parse : function(str) {
            if ('String' != GetClass(str))
                throw new TypeError();
            this.source = str;
            var token = this.grammar.exec(this.source);
            if (!token)
                this.ThrowError();
            return this.ParseValue(token);
        }
    };
    exports.parse = function (source) {
        return parser.Parse(source);
    };
    context['JSONStringify'] = exports.stringify;
    context['JSONParse'] = exports.parse;
    return context;
}).call(this, KasperskyLab || {});
 var KasperskyLab = (function ( ns) {
	ns.MaxRequestDelay = 2000;
	ns.Log = function()
	{};
	var originalWindowOpen = window.open;
	ns.WindowOpen = function(url){
		originalWindowOpen.call(window, url);
	}
	ns.EncodeURI = encodeURI;
	ns.GetResourceSrc = function ( resourceName) {
		var prefix = ns.PREFIX || "https://ie.kis.v2.scr.kaspersky-labs.com/";
		var resSignature = ns.RES_SIGNATURE || "F620DB07A0E3-DD79-84F2-6DEF-C6B8F350";
		return prefix + resSignature + resourceName;
	};
	ns.AddEventListener = function ( element,  name,  func) {
		if ("addEventListener" in element)
			element.addEventListener(name, function (e) { func(e || window.event); }, true);
		else
			element.attachEvent('on' + name, function (e) { func.call(element, e || window.event); });
	};
	ns.AddRemovableEventListener = function ( element,  name,  func) {
		if (element.addEventListener)
			element.addEventListener(name, func, true);
		else
			element.attachEvent('on' + name, func);
	};
	ns.RemoveEventListener = function ( element,  name, func) {
		if (element.removeEventListener)
			element.removeEventListener(name, func, true);
		else
			element.detachEvent('on' + name, func);
	};
	function InsertStyleRule( style,  rule) {
		if (style.styleSheet)
			style.styleSheet.cssText += rule + '\n';
		else
			style.appendChild(document.createTextNode(rule));
	}
	ns.AddStyles = function (rules)
	{
		return ns.AddDocumentStyles(document, rules);
	}
	ns.AddDocumentStyles = function(document, rules)
	{
		if (typeof rules !== 'object' || rules.constructor !== Array) {
			return;
		}
		var style = document.createElement('style');
		style.type = 'text/css';
		style.setAttribute('nonce', ns.ContentSecurityPolicyNonceAttribute);
		for (var i = 0, len = rules.length; i < len; ++i)
		{
			var rule = rules[i];
			if (document.querySelectorAll)
			{
				InsertStyleRule(style, rule);
			}
			else
			{
				var styleBegin = rule.lastIndexOf('{');
				if (styleBegin == -1)
					continue;
				var styleText = rule.substr(styleBegin);
				var selectors = rule.substr(0, styleBegin).split(',');
				for (var j = 0; j != selectors.length; ++j)
					InsertStyleRule(style, selectors[j] + styleText);
			}
		}
		if (document.head)
			document.head.appendChild(style);
		else
			document.getElementsByTagName('head')[0].appendChild(style);
		return style;
	};
	ns.GetCurrentTime = function () {
		return new Date().getTime();
	};
	ns.GetPageScroll = function()
	{
		return {
				left: (document.documentElement && document.documentElement.scrollLeft) || document.body.scrollLeft,
				top: (document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop
			};
	};
	ns.GetPageHeight = function()
	{
		return document.documentElement.clientHeight || document.body.clientHeight;
	};
	ns.GetPageWidth = function()
	{
		return document.documentElement.clientWidth || document.body.clientWidth;
	};
	ns.IsDefined = function (variable)
	{
		return "undefined" !== typeof(variable);
	};
	ns.StopProcessingEvent = function(evt)
	{
		if (evt.preventDefault)
			evt.preventDefault();
		else
			evt.returnValue = false;
		if (evt.stopPropagation)
			evt.stopPropagation();
		if (ns.IsDefined(evt.cancelBubble))
			evt.cancelBubble = true;
	}	
	function IsGoogleSearch(linkElement)
	{
		if (linkElement.parentNode.tagName.toLowerCase() === "h3" &&
			linkElement.parentNode.className.toLowerCase() === "r")
			return true;
		return false;
	}
	function IsYandexSearch(linkElement)
	{
		if (linkElement.parentNode.tagName.toLowerCase() === "h2" && (
				linkElement.className.toLowerCase().indexOf("serp-item__title-link") !== -1 ||
				linkElement.className.toLowerCase().indexOf("b-serp-item__title-link") !== -1 ||
				linkElement.className.toLowerCase().indexOf("organic__url") !== -1))
		    return true;
        else
		    return false;
	}
	function IsYahooSearch(linkElement)
	{
		if (linkElement.className.toLowerCase().indexOf("ac-1st") !== -1 ||
			linkElement.className.toLowerCase().indexOf("ac-21th") !== -1)
			return true;
		return false;
	}
	function IsYahooLocalSearch(linkElement)
	{
		return linkElement.className.toLowerCase().indexOf("td-u") !== -1;
	}
	function IsYahooCoSearch(linkElement)
	{
		if (linkElement.parentNode.tagName.toLowerCase() === "h3" &&
			linkElement.parentNode.parentNode &&
			linkElement.parentNode.parentNode.className.toLowerCase() === "hd")
			return true;
		return false;
	}
	function IsBingSearch(linkElement)
	{
		if (linkElement.parentNode.tagName.toLowerCase() !== "h2" || !linkElement.parentNode.parentNode)
			return false;
		if (linkElement.parentNode.parentNode.className.toLowerCase().indexOf("sb_tlst") !== -1 ||
			linkElement.parentNode.parentNode.className.toLowerCase().indexOf("b_algo") !== -1)
			return true;
		if (linkElement.parentNode.parentNode.parentNode &&
			linkElement.parentNode.parentNode.className.toLowerCase().indexOf("b_title") !== -1 &&
			linkElement.parentNode.parentNode.parentNode.className.toLowerCase().indexOf("b_algo") !== -1)
			return true;
		return false;
	}
	function IsMailRuSearch(linkElement)
	{
		if (linkElement.target.toLowerCase() === "_blank" && (
			linkElement.parentNode.className.toLowerCase() === "res-head" ||
			linkElement.parentNode.className.toLowerCase() === "result__title"))
			return true;
		return false;
	}
	function IsNigmaRuSearch(linkElement)
	{
		if (linkElement.parentNode.className.toLowerCase() === "snippet_title")
			return true;
		return false;
	}
	function IsRamblerRuSearch(linkElement)
	{
		if (linkElement.className.toLowerCase() === "b-serp-item__link")
			return true;
		return false;
	}
	function IsBaiduComSearch(linkElement)
	{
		if (linkElement.parentNode.className.toLowerCase() === "t")
			return true;
		return false;
	}
	function IsBaiduJpSearch(linkElement)
	{
		if (linkElement.parentNode.tagName.toLowerCase() === "h3" &&
			linkElement.parentNode.parentNode &&
			linkElement.parentNode.parentNode.parentNode &&
			linkElement.parentNode.parentNode.parentNode.className.toLowerCase() === "web")
			return true;
		return false;
	}
	function IsAskComSearch(linkElement)
	{
		if (linkElement.className.toLowerCase() === "web-result-title-link")
			return true;
		return false;
	}
	function NotSearchSite()
	{
		return false;
	}
	function GetSearchRequest(parameterName)
	{
		var parameters = document.location.href.split(/[?#&]/);
		for (var i in parameters) 
		{
			var parameter = parameters[i];
			var parameterSeparatorPos = parameter.indexOf('=');
			if (parameterSeparatorPos == -1)
				continue;
			if (parameter.substr(0, parameterSeparatorPos) != parameterName)
				continue;
			return parameter.substr(parameterSeparatorPos + 1);
		}
		return "";
	}
	function NotSearchSiteRequest()
	{
		return "";
	}
	function GetGeneralSearchSiteRequest()
	{
		return GetSearchRequest('q');
	}
	function GetYahooSearchSiteRequest()
	{
		return GetSearchRequest('p');
	}
	function GetYandexSearchSiteRequest()
	{
		return GetSearchRequest('text');
	}
	function GetNigmaSearchSiteRequest()
	{
		return GetSearchRequest('s');
	}
	function GetRamblerSearchSiteRequest()
	{
		return GetSearchRequest('query');
	}
	function GetBaiduSearchSiteRequest()
	{
		return GetSearchRequest('wd');
	}
	try
	{
		var currentPageUrl = document.location.href;
		var schemeEndPos = currentPageUrl.indexOf("://");
		var linkFilterFunction;
		var getSearchSiteRequest;
		if (schemeEndPos !== -1)
		{
			var host = currentPageUrl.substr(schemeEndPos + 3).toLowerCase();
			if (host.indexOf("www.google.") === 0)
			{
				linkFilterFunction = IsGoogleSearch;
				getSearchSiteRequest = GetGeneralSearchSiteRequest;
			}
			else if (host.indexOf("yandex.") === 0 || host.indexOf("www.yandex.com") === 0)
			{
				linkFilterFunction = IsYandexSearch;
				getSearchSiteRequest = GetYandexSearchSiteRequest;
			}
			else if (host.indexOf("search.yahoo.com") === 0)
			{
				linkFilterFunction = IsYahooSearch;
				getSearchSiteRequest = GetYahooSearchSiteRequest;
			}
			else if (host.indexOf("search.yahoo.co.") === 0)
			{
				linkFilterFunction = IsYahooCoSearch;
				getSearchSiteRequest = GetYahooSearchSiteRequest;
			}
			else if (host.indexOf("search.yahoo.com") !== -1)
			{
				linkFilterFunction = IsYahooLocalSearch;
				getSearchSiteRequest = GetYahooSearchSiteRequest;
			}
			else if (host.indexOf("www.bing.com") === 0)
			{
				linkFilterFunction = IsBingSearch;
				getSearchSiteRequest = GetGeneralSearchSiteRequest;
			}
			else if (host.indexOf("go.mail.ru") === 0)
			{
				linkFilterFunction = IsMailRuSearch;
				getSearchSiteRequest = GetGeneralSearchSiteRequest;
			}
			else if (host.indexOf("nigma.ru") === 0)
			{
				linkFilterFunction = IsNigmaRuSearch;
				getSearchSiteRequest = GetNigmaSearchSiteRequest;
			}
			else if (host.indexOf("www.nigma.ru") === 0)
			{
				linkFilterFunction = IsNigmaRuSearch;
				getSearchSiteRequest = GetNigmaSearchSiteRequest;
			}
			else if (host.indexOf("nova.rambler.ru") === 0)
			{
				linkFilterFunction = IsRamblerRuSearch;
				getSearchSiteRequest = GetRamblerSearchSiteRequest;
			}
			else if (host.indexOf("www.baidu.com") === 0)
			{
				linkFilterFunction = IsBaiduComSearch;
				getSearchSiteRequest = GetBaiduSearchSiteRequest;
			}
			else if (host.indexOf("www.baidu.jp") === 0)
			{
				linkFilterFunction = IsBaiduJpSearch;
				getSearchSiteRequest = GetBaiduSearchSiteRequest;
			}
			else if (host.indexOf("www.ask.com") === 0)
			{
				linkFilterFunction = IsAskComSearch;
				getSearchSiteRequest = GetGeneralSearchSiteRequest;
			}
			else
			{
				linkFilterFunction = NotSearchSite;
				getSearchSiteRequest = NotSearchSiteRequest;
			}
		}
		ns.IsLinkSearchResult = linkFilterFunction;
		ns.GetSearchSiteRequest = getSearchSiteRequest;
	}
	catch(e)
	{
		ns.IsLinkSearchResult = NotSearchSite;
		ns.GetSearchSiteRequest = NotSearchSiteRequest;
	}
	function IsElementNode(node)
	{
		return node.nodeType === 1; 
	}
	function IsNodeContainsElementWithTag(node, observeTag)
	{
		return IsElementNode(node) && (node.tagName.toLowerCase() === observeTag || node.getElementsByTagName(observeTag).length > 0);
	}
	function MutationChangeObserver(observeTag)
	{
		var m_observer;
		var m_callback;
		var m_functionCheckInteresting = observeTag ? function(node){return IsNodeContainsElementWithTag(node, observeTag);} : IsElementNode;
		function ProcessNodeList(nodeList)
		{
			for (var i = 0; i < nodeList.length; ++i)
			{
				if (m_functionCheckInteresting(nodeList[i]))
					return true;
			}
			return false;
		}
		function ProcessDomChange(records)
		{
			if (!m_callback)
				return;
			for (var i = 0; i < records.length; ++i)
			{
				var record = records[i];
				if ((record.addedNodes.length && ProcessNodeList(record.addedNodes)) ||
					(record.removedNodes.length && ProcessNodeList(record.removedNodes)))
				{
					m_callback();
					return;
				}
			}
		}
		this.Start = function(callback)
		{
			m_callback = callback;
			m_observer = new MutationObserver(ProcessDomChange);
			m_observer.observe(document, { childList: true, subtree: true });
		};
		this.Stop = function()
		{
			m_observer.disconnect();
			m_callback = null;
		};
	}
	function DomEventsChangeObserver(observeTag)
	{
		var m_callback;
		var m_functionCheckInteresting = observeTag ? function(node){return IsNodeContainsElementWithTag(node, observeTag);} : IsElementNode;
		function ProcessEvent(event)
		{
			if (!m_callback)
				return;
			if (m_functionCheckInteresting(event.target))
				m_callback();
		}
		this.Start = function(callback)
		{
			window.addEventListener("DOMNodeInserted", ProcessEvent);
			window.addEventListener("DOMNodeRemoved", ProcessEvent);
			m_callback = callback;
		}
		this.Stop = function()
		{
			window.removeEventListener("DOMNodeInserted", ProcessEvent);
			window.removeEventListener("DOMNodeRemoved", ProcessEvent);
			m_callback = null;
		}
	}
	function TimeoutChangeObserver(observeTag)
	{
		var m_interval;
		var m_callback;
		var m_tagCount;
		var m_attribute = 'klot_' + ns.GetCurrentTime();
		function IsChangesOccure(nodeList)
		{
			for (var i = 0; i < nodeList.length; ++i)
				if (!nodeList[i][m_attribute])
					return true;
			return false;
		}
		function FillTagInfo(nodeList)
		{
			m_tagCount = nodeList.length;
			for (var i = 0; i < m_tagCount; ++i)
				nodeList[i][m_attribute] = true;
		}
		function TimeoutProcess()
		{
			if (!m_callback)
				return;
			var nodeList = observeTag ? document.getElementsByTagName(observeTag) : document.getElementsByTagName("*");
			if (nodeList.length !== m_tagCount || IsChangesOccure(nodeList))
			{
				FillTagInfo(nodeList);
				m_callback();
			}
		}
		this.Start = function(callback)
		{
			m_callback = callback;
			FillTagInfo(document.getElementsByTagName(observeTag));
			m_interval = setInterval(TimeoutProcess, 10 * 1000);
			if (document.readyState !== "complete")
				ns.AddEventListener(window, "load", TimeoutProcess);
		}
		this.Stop = function()
		{
			clearInterval(m_interval);
			m_callback = null;
		}
	}
	ns.GetDomChangeObserver = function(observeTag)
	{
		var observeTagLowerCase = observeTag ? observeTag.toLowerCase() : observeTag;
		if (window.MutationObserver && document.documentMode !== 11)	
			return new MutationChangeObserver(observeTagLowerCase);
		if (window.addEventListener)
			return new DomEventsChangeObserver(observeTagLowerCase);
		return new TimeoutChangeObserver(observeTagLowerCase);
	}
	return ns;
}) (KasperskyLab || {});
(function (ns) {
	function md5cycle(x, k) {
		var a = x[0],
		b = x[1],
		c = x[2],
		d = x[3];
		a = ff(a, b, c, d, k[0], 7, -680876936);
		d = ff(d, a, b, c, k[1], 12, -389564586);
		c = ff(c, d, a, b, k[2], 17, 606105819);
		b = ff(b, c, d, a, k[3], 22, -1044525330);
		a = ff(a, b, c, d, k[4], 7, -176418897);
		d = ff(d, a, b, c, k[5], 12, 1200080426);
		c = ff(c, d, a, b, k[6], 17, -1473231341);
		b = ff(b, c, d, a, k[7], 22, -45705983);
		a = ff(a, b, c, d, k[8], 7, 1770035416);
		d = ff(d, a, b, c, k[9], 12, -1958414417);
		c = ff(c, d, a, b, k[10], 17, -42063);
		b = ff(b, c, d, a, k[11], 22, -1990404162);
		a = ff(a, b, c, d, k[12], 7, 1804603682);
		d = ff(d, a, b, c, k[13], 12, -40341101);
		c = ff(c, d, a, b, k[14], 17, -1502002290);
		b = ff(b, c, d, a, k[15], 22, 1236535329);
		a = gg(a, b, c, d, k[1], 5, -165796510);
		d = gg(d, a, b, c, k[6], 9, -1069501632);
		c = gg(c, d, a, b, k[11], 14, 643717713);
		b = gg(b, c, d, a, k[0], 20, -373897302);
		a = gg(a, b, c, d, k[5], 5, -701558691);
		d = gg(d, a, b, c, k[10], 9, 38016083);
		c = gg(c, d, a, b, k[15], 14, -660478335);
		b = gg(b, c, d, a, k[4], 20, -405537848);
		a = gg(a, b, c, d, k[9], 5, 568446438);
		d = gg(d, a, b, c, k[14], 9, -1019803690);
		c = gg(c, d, a, b, k[3], 14, -187363961);
		b = gg(b, c, d, a, k[8], 20, 1163531501);
		a = gg(a, b, c, d, k[13], 5, -1444681467);
		d = gg(d, a, b, c, k[2], 9, -51403784);
		c = gg(c, d, a, b, k[7], 14, 1735328473);
		b = gg(b, c, d, a, k[12], 20, -1926607734);
		a = hh(a, b, c, d, k[5], 4, -378558);
		d = hh(d, a, b, c, k[8], 11, -2022574463);
		c = hh(c, d, a, b, k[11], 16, 1839030562);
		b = hh(b, c, d, a, k[14], 23, -35309556);
		a = hh(a, b, c, d, k[1], 4, -1530992060);
		d = hh(d, a, b, c, k[4], 11, 1272893353);
		c = hh(c, d, a, b, k[7], 16, -155497632);
		b = hh(b, c, d, a, k[10], 23, -1094730640);
		a = hh(a, b, c, d, k[13], 4, 681279174);
		d = hh(d, a, b, c, k[0], 11, -358537222);
		c = hh(c, d, a, b, k[3], 16, -722521979);
		b = hh(b, c, d, a, k[6], 23, 76029189);
		a = hh(a, b, c, d, k[9], 4, -640364487);
		d = hh(d, a, b, c, k[12], 11, -421815835);
		c = hh(c, d, a, b, k[15], 16, 530742520);
		b = hh(b, c, d, a, k[2], 23, -995338651);
		a = ii(a, b, c, d, k[0], 6, -198630844);
		d = ii(d, a, b, c, k[7], 10, 1126891415);
		c = ii(c, d, a, b, k[14], 15, -1416354905);
		b = ii(b, c, d, a, k[5], 21, -57434055);
		a = ii(a, b, c, d, k[12], 6, 1700485571);
		d = ii(d, a, b, c, k[3], 10, -1894986606);
		c = ii(c, d, a, b, k[10], 15, -1051523);
		b = ii(b, c, d, a, k[1], 21, -2054922799);
		a = ii(a, b, c, d, k[8], 6, 1873313359);
		d = ii(d, a, b, c, k[15], 10, -30611744);
		c = ii(c, d, a, b, k[6], 15, -1560198380);
		b = ii(b, c, d, a, k[13], 21, 1309151649);
		a = ii(a, b, c, d, k[4], 6, -145523070);
		d = ii(d, a, b, c, k[11], 10, -1120210379);
		c = ii(c, d, a, b, k[2], 15, 718787259);
		b = ii(b, c, d, a, k[9], 21, -343485551);
		x[0] = add32(a, x[0]);
		x[1] = add32(b, x[1]);
		x[2] = add32(c, x[2]);
		x[3] = add32(d, x[3]);
	}
	function cmn(q, a, b, x, s, t) {
		a = add32(add32(a, q), add32(x, t));
		return add32((a << s) | (a >>> (32 - s)), b);
	}
	function ff(a, b, c, d, x, s, t) {
		return cmn((b & c) | ((~b) & d), a, b, x, s, t);
	}
	function gg(a, b, c, d, x, s, t) {
		return cmn((b & d) | (c & (~d)), a, b, x, s, t);
	}
	function hh(a, b, c, d, x, s, t) {
		return cmn(b^c^d, a, b, x, s, t);
	}
	function ii(a, b, c, d, x, s, t) {
		return cmn(c^(b | (~d)), a, b, x, s, t);
	}
	function md51(s) {
		var n = s.length,
		state = [1732584193, -271733879, -1732584194, 271733878],
		i;
		for (i = 64; i <= s.length; i += 64) {
			md5cycle(state, md5blk(s.substring(i - 64, i)));
		}
		s = s.substring(i - 64);
		var tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
		for (i = 0; i < s.length; i++)
			tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
		tail[i >> 2] |= 0x80 << ((i % 4) << 3);
		if (i > 55) {
			md5cycle(state, tail);
			for (i = 0; i < 16; i++)
				tail[i] = 0;
		}
		tail[14] = n * 8;
		md5cycle(state, tail);
		return state;
	}
	function md5blk(s) {
		var md5blks = [],
		i;
		for (i = 0; i < 64; i += 4) {
			md5blks[i >> 2] = s.charCodeAt(i) +
				 (s.charCodeAt(i + 1) << 8) +
				 (s.charCodeAt(i + 2) << 16) +
				 (s.charCodeAt(i + 3) << 24);
		}
		return md5blks;
	}
	var hex_chr = '0123456789abcdef'.split('');
	function rhex(n) {
		var s = '',
		j = 0;
		for (; j < 4; j++)
			s += hex_chr[(n >> (j * 8 + 4)) & 0x0F]+hex_chr[(n >> (j * 8)) & 0x0F];
		return s;
	}
	function hex(x) {
		for (var i = 0; i < x.length; i++)
			x[i] = rhex(x[i]);
		return x.join('');
	}
	ns.md5 = function (s) {
		return hex(md51(s));
	};
	function add32(a, b) {
		return (a + b) & 0xFFFFFFFF;
	}
	if (ns.md5('hello') != '5d41402abc4b2a76b9719d911017c592') {
		add32 = function(x, y) {
			var lsw = (x & 0xFFFF) + (y & 0xFFFF),
			msw = (x >> 16) + (y >> 16) + (lsw >> 16);
			return (msw << 16) | (lsw & 0xFFFF);
		}
	}
})(KasperskyLab || {});
 var KasperskyLab = (function (ns) {
	ns.Balloon = function (balloonName, position, createCallback, clickCallback) {
		var self = this;
		var IECompatMode = 5; 
		var m_balloon = null;
		var m_timeout = null;
		var m_balloonDivName = 'balloon_parent_div_' + balloonName;
		function AddStyles() {
			ns.AddStyles([
				'.kisb * { position: relative; display:block; overflow-x:hidden; width: auto; margin:0; padding:0; font-family: Verdana; line-height: 150%; text-indent:0; border:0; text-align:left; box-sizing:content-box; letter-spacing: normal;}',
				'.kisb { z-index:2147483647; width: 280px; cursor:default; display:block;}',
				'.kisb a { text-decoration: underline; display:inline-block; }',
				'.kisb a:hover { text-decoration: none; }',
				'.kisb a, .kisb a:link, .kisb a:hover, .kisb a:visited { color: #008ccc;}']);
		}
        function ClearTimeoutInternal() {
            if (m_timeout)
                clearTimeout(m_timeout);
            m_timeout = 0;
        }
        function MouseIsOver() {
            ClearTimeoutInternal.call(self);
        }
        function MouseLeaveBalloon() {
            if (!m_timeout) {
                ClearTimeoutInternal();
                m_timeout = setTimeout(function () { HideBalloon(); }, 200);
            }
        }
        function MouseClick(mouseArgs) {
            if (clickCallback && clickCallback(mouseArgs || window.event)) {
                HideBalloon.call(self);
            }
        }
        function CreateBalloon(showDuring) {
            AddStyles();
            var balloonDiv = document.createElement('div');
            balloonDiv.className = 'kisb';
            balloonDiv.id = m_balloonDivName;
			if (showDuring)
			{
				ns.AddEventListener(balloonDiv, 'mouseout', MouseLeaveBalloon);
				ns.AddEventListener(balloonDiv, 'mouseover', MouseIsOver);
			}
			ns.AddEventListener(balloonDiv, 'click', MouseClick);
            createCallback(balloonDiv);
            balloonDiv.style.visibility = 'hidden';
            document.body.appendChild(balloonDiv);
            return balloonDiv;
        }
        function GetElementSize(element) {
			var fixIECompatMode = document.attachEvent && document.documentMode && document.documentMode == IECompatMode;
            var rect = fixIECompatMode ? {width:element.clientWidth || element.scrollWidth, height:element.clientHeight || element.scrollHeight} : element.getBoundingClientRect();
            var width = rect.width ? rect.width : rect.right - rect.left;
            var height = rect.height ? rect.height : rect.bottom - rect.top;
            return { width: width, height: height };
        }
        function HideBalloon() {
            if (!!m_balloon)
                m_balloon.style.visibility = 'hidden';
        }
        function ShowBalloonInternal(clientX, clientY, showDuring) {
			m_balloon = document.getElementById(m_balloonDivName);
            if (!m_balloon)
                m_balloon = CreateBalloon(showDuring);
			if (m_balloon.style.visibility == 'visible')
				return;
            var x = 0;
            var y = 0;
            var balloonSize = GetElementSize(m_balloon);
            if (position == 1) {
                x = clientX;
                y = clientY - (balloonSize.height ? balloonSize.height : 20);
            }
            else if (position == 2) {
				var clientWidth = ns.GetPageWidth();
                var halfWidth = balloonSize.width / 2;
                if (halfWidth > clientX)
                    x = 0;
                else if (halfWidth + clientX > clientWidth)
                    x = clientWidth - balloonSize.width;
                else
                    x = clientX - halfWidth;
                y = (clientY + balloonSize.height > ns.GetPageHeight()) ? clientY - balloonSize.height : clientY;
            }
            else {
                x = clientX;
                y = clientY;
            }
			if (y < 0)
				y = 0;
			var scroll = ns.GetPageScroll();
			y += scroll.top;
			x += scroll.left;
            m_balloon.style.position = 'absolute';
            m_balloon.style.left = Math.round(x).toString() + 'px';
            m_balloon.style.top = Math.round(y).toString() + 'px';
            m_balloon.style.visibility = 'visible';
            ClearTimeoutInternal();
			if (showDuring)
				m_timeout = setTimeout(function () { HideBalloon(); }, showDuring);
        }
        this.ShowBalloon = function (getCoord, showAfter, showDuring) {
            ClearTimeoutInternal();
            if (!showAfter) {
                var coord = getCoord();
                ShowBalloonInternal(coord.x, coord.y, showDuring);
            }
            else {
                m_timeout = setTimeout(function () {
                    var coord = getCoord();
                    if (coord.isNeed) {
                        ShowBalloonInternal(coord.x, coord.y, showDuring);
                    } else {
                        HideBalloon();
                    }
                }, showAfter);
            }
        }
		this.ShowImmediately = function(coord)
		{
			ClearTimeoutInternal();
			ShowBalloonInternal(coord.x, coord.y, 0);
		}
		this.Hide = function()
		{
			HideBalloon();
		}
    };
    return ns;
}) (KasperskyLab || {});
(function(){
KasperskyLab.WORK_IDENTIFIERS="2EB439BB-6608-CE44,328529F2-1F95-C448,FAD84616-3128-644F";
var kaspersyLabSessionInstance = null;
(function ( ns) {
	var prefix = ns.PREFIX || "https://ie.kis.v2.scr.kaspersky-labs.com/";
	var signature = ns.SIGNATURE || "053F8B6C-FED6-2F48-97DD-3E0A70BD026F";
	var workIdentifiersString = ns.WORK_IDENTIFIERS || "";
	var cspNonce = ns.CSP_NONCE || "B586B2BD79C0FB4387BA91470FCE0B3E"
	if (workIdentifiersString)
	{
		var workIdentifiers = workIdentifiersString.split(",");
		(function ( signature) {
			var pattern = signature.toLowerCase();
			for (var i = 0, scriptsCount = document.scripts.length; i < scriptsCount; ++i) {
				 var tag = document.scripts[i];
				if (typeof tag.src === 'string' && tag.src.length > 76 &&
					tag.src.toLowerCase().indexOf(pattern) > 0 &&
					/\/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\/main.js/.test(tag.src)) {
					for (var i = 0; i < workIdentifiers.length; ++i)
						window[workIdentifiers[i]] = true;
					tag.parentElement.removeChild(tag);
					return; 
				}
			}
		})(signature);
	}
	function IsDefined(variable)
	{
		return "undefined" !== typeof(variable);
	}
	var m_syncCallSupported = true;
	var ajaxRequest = (function () {
		 var oldOpen = window.XMLHttpRequest && window.XMLHttpRequest.prototype.open;
		 var oldSend = window.XMLHttpRequest && window.XMLHttpRequest.prototype.send;
		 var oldXHR = window.XMLHttpRequest;
		 var oldXDR = window.XDomainRequest;
        return {
            GetAsyncRequest: function () {
                var xmlhttp = oldXDR ? new oldXDR() : new oldXHR();
                if (!oldXDR) {
                    xmlhttp.open = oldOpen;
                    xmlhttp.send = oldSend;
                }
				xmlhttp.onprogress = function () {};
                return xmlhttp;
            },
            GetSyncRequest: function () {
                var xmlhttp = new oldXHR();
                xmlhttp.open = oldOpen;
                xmlhttp.send = oldSend;
				xmlhttp.onprogress = function () {};
                return xmlhttp;
            }
        };
    })();	
	var PingPongCallReceiver = function(caller)
	{
		 var m_caller = caller;
		 var m_isProductConnected = false;
		 var m_pingWaitResponse = false;
          var m_requestDelay = ns.MaxRequestDelay;
         var m_requestTimer = null;
		var m_callCallback = function(){};
		var m_errorCallback = function(){};
		var m_updateCallback = function(){};
        function SendRequest() {
            try 
			{
				m_caller.Call(
					"from",
					null,
					null,
					 true,
					function(result, parameters, method)
					{
						m_pingWaitResponse = false;
						m_isProductConnected = true;
						if (parameters === "undefined" || method === "undefined") 
						{
							m_errorCallback('AJAX pong is not received. Product is deactivated');
							return;
						}
						if (method)
						{
							setTimeout(function () { SendRequest(); }, 0);
							m_callCallback(method, parameters);
						}
					},
					function(error)
					{
						m_pingWaitResponse = false;
						m_isProductConnected = false;
						PostponeInit();
						m_errorCallback(error);
					});
				m_pingWaitResponse = true;
            }
            catch (e)
			{
                m_errorCallback('Ajax send ping exception: ' + (e.message || e));
            }
        }
		this.StartReceive = function(callCallback, errorCallback, updateCallback)
		{
			m_callCallback = callCallback;
			m_errorCallback = errorCallback;
			m_updateCallback = updateCallback;
			m_requestDelay = m_updateCallback();
			m_requestTimer = setTimeout(function ping()
				{
					try 
					{
						if (m_pingWaitResponse)
						{
							m_requestTimer = setTimeout(ping, 100);
							return;
						}
						m_requestDelay = m_updateCallback();
						SendRequest();
						m_requestTimer = setTimeout(ping, m_requestDelay);
					}
					catch (e)
					{
						m_errorCallback('Send ping request: ' + (e.message || e));
					}
				}, m_requestDelay);
		};
		this.StopReceive = function()
		{
			clearTimeout(m_requestTimer);
            m_requestTimer = null;
			m_callCallback = function(){};
			m_errorCallback = function(){};
			m_updateCallback = function(){};
		};
		this.IsStarted = function()
		{
			return m_requestTimer !== null;
		}
		this.IsProductConnected = function()
		{
			return m_isProductConnected;
		};
	};
	var AjaxCaller = function()
	{
		var m_path = prefix + signature;
		function NoCacheParameter() 
		{
			return "&nocache=" + Math.floor((1 + Math.random()) * 0x10000).toString(16);
		}
		function GetSpecialPlugins(predefined) 
		{
			return (predefined) ? "&plugins=" + encodeURIComponent(predefined) : "";    				
		}
		function PrepareRequestObject(command, commandAttribute, isPost, isAsync)
		{
			var request = isAsync ? ajaxRequest.GetAsyncRequest() : ajaxRequest.GetSyncRequest();
			if (request)
			{
				var urlPath = m_path + "/" + command;
				if (commandAttribute)
					urlPath += "/" + commandAttribute;
				if (isPost)
				{
					request.open("POST", urlPath);
				}
				else 
				{
					if (urlPath.indexOf("?") === -1)
						urlPath += "?get";
					urlPath += NoCacheParameter();
					request.open("GET", urlPath, isAsync);
				}
			}
			return request;
		}
        function AsyncCall(command, commandAttribute, data, callbackResult, callbackError) {
            try {
                var request = PrepareRequestObject(command, commandAttribute, data ? true : false, true);
                if (!request) 
				{
                    callbackError && callbackError("Cannot create AJAX request!");
					return;
                }
                var timeout = setTimeout(function () {
                    callbackError && callbackError("Cannot send AJAX request for calling " + command + "/" + commandAttribute);
                    request.abort();
                }, 120000);
                request.onerror = function () {
                    clearTimeout(timeout);
                    request.onerror = function () {
                    };
                    request.onload = function () {
                    };
                    callbackError && callbackError("AJAX request error for calling " + command + "/" + commandAttribute);
                };
                request.onload = function () {
                    clearTimeout(timeout);
                    timeout = null;
                    request.onload = function () {
                    };
                    request.onerror = function () {
                    };
                    if (request.responseText)
					{
						if (callbackResult)
							callbackResult(request.responseText);
                        request = null;
                        return;
                    }
                    request = null;
                    if (callbackError) {
                        callbackError("AJAX request with unsupported url type!"); 
                    }
                };
                request.send(data);
                ns.Log("Call native function " + command + "/" + commandAttribute);
            }
            catch (e) {
                if (callbackError) {
                    callbackError("AJAX request " + command  + "/" + commandAttribute + " exception: " + (e.message || e));
                }
            }
        };
		function SyncCall(command, commandAttribute, data, callbackResult, callbackError) {
			try {
				if (!m_syncCallSupported)
					return false;
				var request = PrepareRequestObject(command, commandAttribute, data ? true : false, false);
				if (!request)
				{
                    callbackError && callbackError("Cannot create AJAX request!");
                    return false;
                }
                ns.Log("SyncCall native function " + command);
                request.send(data);
                if (request.status === 200)
				{
                    if (callbackResult && request.responseText)
                        callbackResult(request.responseText);
                    request = null;
                    return true;
                }
            }
            catch (e) {
                if (callbackError)
                    callbackError("AJAX request " + command + " exception: " + (e.message || e));
            }
            return false;
        }
		this.Start = function(callbackSuccess)
		{
			callbackSuccess();
		}
		this.SendLog = function(message)
		{
			AsyncCall("log?" + encodeURIComponent(message));
		}
		this.Call = function(command, commandAttribute, data, isAsync, callbackResult, callbackError) 
		{
			var callFunction = (isAsync || !IsDefined(isAsync)) ? AsyncCall : SyncCall;
			return callFunction(
				command,
				commandAttribute,
				data,
				function(responseText)
				{
					var commandResponse = ns.JSONParse(responseText);
					if (commandResponse.result === -1610612735)
					{
						callFunction(
							command,
							commandAttribute,
							data,
							function(responseText)
							{
								if (!callbackResult)
									return;
								commandResponse = ns.JSONParse(responseText);
								callbackResult(commandResponse.result, commandResponse.parameters, commandResponse.method);
							},
							callbackError);
					}
					else
					{
						if (callbackResult)
							callbackResult(commandResponse.result, commandResponse.parameters, commandResponse.method);
					}					
				},
				callbackError);
		}
		this.InitCall = function(pluginsInitData, callbackResult, callbackError)
		{
			var specialPlugins = IsDefined(ns.PLUGINS_LIST) ? GetSpecialPlugins(ns.PLUGINS_LIST) : GetSpecialPlugins("");
			var serializedInitData = (pluginsInitData.length) ? "&data=" + encodeURIComponent(ns.JSONStringify({data : pluginsInitData})) : "";
			if (document.location.href == "data:text/html,chromewebdata")
				return callbackError();
			AsyncCall(
				"init?url=" + encodeURIComponent(document.location.href) + specialPlugins + serializedInitData,
				null,
				null,
				function(responseText)
				{
					var initSettings = ns.JSONParse(responseText);
					m_path = (prefix || '/') + initSettings.ajaxId + '/' + initSettings.sessionId;
					callbackResult(initSettings);
				},
				callbackError);
		}
	};
	var m_webSocketSupported = IsDefined(window.WebSocket);
	var WebSocketWrapper = function()
	{
		var WebSocketObject = WebSocket;
		var WebSocketSend = WebSocket.prototype.send;
		var WebSocketClose = WebSocket.prototype.close;
		this.GetWebSocket = function(path)
		{
			var webSocket = new WebSocketObject(path);
			webSocket.send = WebSocketSend;
			webSocket.close = WebSocketClose;
			return webSocket;
		}
	}
	var m_webSocketWrapper = m_webSocketSupported ? new WebSocketWrapper : null;
	var WebSocketCaller = function()
	{
		var m_socket;
		var m_waitResponse = {};
		var m_callReceiver = function(){};
		var m_errorCallback = function(){};
		var m_callReceiverEnabled = false;
		var m_connected = false;
		var m_initialized = false;
		var m_deferredCalls = [];
		var m_wasCallbackErrorCalled = false;
		function GetWebSocket(callbackSuccess, callbackError)
		{
			var url = (prefix === "/") 
				? document.location.protocol + "//" + document.location.host + prefix 
				: prefix;
			var webSocketPath = (url.indexOf("http:") === 0) 
				? "ws" + url.substr(4) 
				: "wss" + url.substr(5);
			webSocketPath += signature + "/websocket?url=" + encodeURIComponent(document.location.href) + "&nocache=" + (new Date().getTime());
			var webSocket;
			try
			{
				webSocket = m_webSocketWrapper.GetWebSocket(webSocketPath);
			}
			catch (e)
			{
				m_webSocketSupported = false;
				throw e;
			}
			webSocket.onmessage = function(arg)
				{
					ProcessMessage(arg, callbackError);
				};
			webSocket.onerror = function()
				{
					m_webSocketSupported = false;
					if (!m_wasCallbackErrorCalled && callbackError)
						callbackError();
					m_wasCallbackErrorCalled = true;
				}
			webSocket.onopen = function()
				{
					m_wasCallbackErrorCalled = false;
					m_connected = true;
					if (callbackSuccess)
						callbackSuccess();
				}
			webSocket.onclose = function(closeEvent)
				{
					m_connected = false;
					if (closeEvent && closeEvent.code == 1006)
						webSocket.onerror(closeEvent);
					m_errorCallback("websocket closed");
				};
			return webSocket;
		}
		function ProcessMessage(arg, errorCallback)
		{
			m_wasCallbackErrorCalled = false;
			var response = ns.JSONParse(arg.data);
			if (m_waitResponse[response.callId])
			{
				var callWaiter = m_waitResponse[response.callId];
				delete m_waitResponse[response.callId];
				clearTimeout(callWaiter.timeout);
				if (callWaiter.callbackResult)
					callWaiter.callbackResult(response.commandData);
				return;
			}
			if (!m_initialized)
			{
				m_deferredCalls.push(arg);
				return;
			}
			if (response.command === "from")
			{
				var command = ns.JSONParse(response.commandData);
				m_callReceiver(command.method, command.parameters);
			}
			else if (response.command === "reconnect")
			{
				m_socket.onmessage = function(){};
				m_socket.onerror = function(){};
				m_socket.onopen = function(){};
				m_socket.onclose = function(){};
				m_socket.close();
				m_socket = GetWebSocket(function()
					{
						CallImpl("restore", "", response.commandData);
					},
					errorCallback);
			}
		}
		function CallImpl(command, commandAttribute, data, callbackResult, callbackError)
		{
			try
			{
				var callId = 0;
				if (callbackResult || callbackError)
				{
					callId = Math.floor((1 + Math.random()) * 0x10000);
					var timeout = setTimeout(function()
						{
							delete m_waitResponse[callId];
							if (callbackError)
								callbackError("websocket call timeout for " + command  + "/" + commandAttribute);
						}, 120000);
					var callWaiter = 
						{
							callId: callId,
							callbackResult: callbackResult,
							timeout: timeout
						};
					m_waitResponse[callId] = callWaiter;
				}
				m_socket.send(ns.JSONStringify(
					{
						callId: callId,
						command: command,
						commandAttribute: commandAttribute || "",
						commandData: data || ""
					}));
			}
			catch (e)
			{
				if (callbackError)
					callbackError("websocket call " + command  + "/" + commandAttribute + " exception: " + (e.message || e));
			}
		}
		this.Start = function(callbackSuccess, callbackError)
		{
			try
			{
				m_socket = GetWebSocket(callbackSuccess, callbackError);
			}
			catch (e)
			{
				if (callbackError)
					callbackError("websocket start exception: " + (e.message || e));
			}
		}
		this.SendLog = function(message)
		{
			CallImpl("log", null, message);
		}
		this.Call = function(command, commandAttribute, data, isAsync, callbackResult, callbackError) 
		{
			if (IsDefined(isAsync) && !isAsync)
				return false;
			CallImpl(
				command, 
				commandAttribute, 
				data,
				callbackResult 
					? 	function(responseText)
						{
							if (callbackResult)
							{
								var command = ns.JSONParse(responseText);
								callbackResult(command.result, command.parameters, command.method);
							}
						}
					: null,
				callbackError);
		}
		this.InitCall = function(pluginsInitData, callbackResult, callbackError)
		{
			var initData = 
				{
					url: document.location.href,
					plugins: (IsDefined(ns.PLUGINS_LIST)) ? ns.PLUGINS_LIST : "",
					data: { data : pluginsInitData }
				};
			if (document.location.href == "data:text/html,chromewebdata")
				return callbackError();
			CallImpl("init", null, ns.JSONStringify(initData),
				function(responseText)
				{
					m_initialized = true;
					var initSettings = ns.JSONParse(responseText);
					callbackResult(initSettings);
					for (var i = 0; i < m_deferredCalls.length; ++i)
						ProcessMessage(m_deferredCalls[i], callbackError);
					m_deferredCalls = [];
				},
				callbackError);
		}
		this.StartReceive = function(callMethod, errorCallback)
		{
			m_callReceiverEnabled = true;
			m_callReceiver = callMethod;
			m_errorCallback = errorCallback;
		}
		this.StopReceive = function()
		{
			m_callReceiverEnabled = false;
			m_callReceiver = function(){};
			m_errorCallback = function(){};
			if (m_socket)
			{
				m_connected = false;
				m_socket.onmessage = function(){};
				m_socket.onerror = function(){};
				m_socket.onopen = function(){};
				m_socket.onclose = function(){};
				m_socket.close();
				m_socket = null;
			}
		}
		this.IsStarted = function()
		{
			return m_callReceiverEnabled;
		}
		this.IsProductConnected = function()
		{
			return m_connected;
		}
	}
    var CallReceiver = function (caller) {
         var m_plugins = {};
		 var m_receiver = m_webSocketSupported ? caller : new PingPongCallReceiver(caller);
		 var m_caller = caller;
        this.RegisterMethod = function (methodName, callback) {
            var pluginId = GetPluginIdFromMethodName(methodName);
            if (pluginId) {
                var methods = GetPluginMethods(pluginId);
                if (methods) {
                    if (methods[methodName]) {
                        throw 'Already registered method ' + methodName;
                    }
                    methods[methodName] = callback;
                }
                else {
                    throw 'Cannot registered ' + methodName;
                }
            }
        };
        this.RegisterPlugin = function (pluginId, callbackPing, callbackError) {
            if (m_plugins[pluginId]) {
                throw 'Already started plugin ' + pluginId;
            }
            var plugin = {
                onError: callbackError,
                onPing: callbackPing,
                methods: {}
            };
            m_plugins[pluginId] = plugin;
			if (!m_receiver.IsStarted())
				m_receiver.StartReceive(CallMethod, ReportError, UpdateDelay);
        };
        this.UnregisterPlugin = function (pluginId) {
			delete m_plugins[pluginId];
			if (IsPluginListEmpty())
				m_receiver.StopReceive();
        };
        this.UnregisterAll = function () {
            if (IsPluginListEmpty())
                return;
            m_receiver.StopReceive();
            m_plugins = {};
        };
        this.IsEmpty = IsPluginListEmpty;
        function IsPluginListEmpty() {
            for (var key in m_plugins) {
                if (m_plugins.hasOwnProperty(key))
                    return false;
            }
            return true;
        }
		this.IsProductConnected = function()
		{
			return m_receiver.IsProductConnected();
		}
        function UpdateDelay() {
            var newDelay = ns.MaxRequestDelay;
            var currentTime = ns.GetCurrentTime();
            for (var pluginId in m_plugins) {
                try {
                    var onPing = m_plugins[pluginId].onPing;
                    if (onPing) {
                        var delay = onPing(currentTime);
                        if (delay < newDelay && delay > 0 && delay < ns.MaxRequestDelay) {
                            newDelay = delay;
                        }
                    }
                }
                catch (e) {
                    ReportPluginError(pluginId, 'UpdateDelay: ' + (e.message || e));
                }
            }
            return newDelay;
        }
        function ReportPluginError(pluginId, status) {
            var onError = m_plugins[pluginId].onError;
            if (onError)
                onError(status);
        }
        function ReportError(status) {
            for (var pluginId in m_plugins)
                ReportPluginError(pluginId, status);
        }
        function GetPluginIdFromMethodName(methodName) {
            if (methodName) {
                var names = methodName.split('.', 2);
                if (names.length === 2) {
                    return names[0];
                }
            }
            return null;
        }
        function GetPluginMethods(pluginId) {
            var plugin = m_plugins[pluginId];
            return plugin ? plugin.methods : null;
        }
        function CallPluginMethod(pluginId, methodName, args) {
            var methods = GetPluginMethods(pluginId);
            if (methods) {
                var callback = methods[methodName];
                if (callback) {
                    try {
                        callback(args);
						m_caller.SendLog(methodName + " executed.");
                        return true;
                    }
                    catch (e) {
						m_caller.SendLog("Call " + methodName + " in plugin " + pluginId + " error: " + (e.message || e));
                    }
                }
            }
            m_caller.SendLog("Cannot call " + methodName + " for plugin " + pluginId);
            return false;
        }
		function CallMethod(methodName, args)
		{
			ns.Log("Try to find js callback " + methodName);
			var pluginId = GetPluginIdFromMethodName(methodName);
			if (pluginId)
				CallPluginMethod(pluginId, methodName, args);
		}
    };
    var KasperskyLabSessionClass = function (caller) {
        var self = this;
		var m_caller = caller;
        var m_callReceiver = new CallReceiver(caller);
		function CallImpl(methodName, arrayOfArgs, callbackResult, callbackError, isAsync) {
			var data = (arrayOfArgs && arrayOfArgs.length) 
				? ns.JSONStringify(
					{
						result: 0,
						method: methodName,
						parameters: arrayOfArgs
					})
				: null;
			return m_caller.Call("to", methodName, data, isAsync, callbackResult, callbackError);
		}
        function Call(methodName, arrayOfArgs, callbackResult, callbackError) {
			CallImpl(methodName, arrayOfArgs, callbackResult, callbackError, true);
        }
        function SyncCall(methodName, arrayOfArgs, callbackResult, callbackError) {
			return CallImpl(methodName, arrayOfArgs, callbackResult, callbackError, false);
        }
        function Stop() {
            try {
                m_callReceiver.UnregisterAll();
                ns.Log("session stopped");
				if (m_callReceiver.IsProductConnected())
				{
					if (!m_caller.Call("shutdown", null, null, false))
						m_caller.Call("shutdown");
				}
            }
            catch (e) {
            }
        }
        function DeactivatePlugin(pluginId) {
            ns.Log('DeactivatePlugin ' + pluginId);
            m_callReceiver.UnregisterPlugin(pluginId);
            if (m_callReceiver.IsEmpty()) {
                Stop();
            }
        }
        function ActivatePlugin(pluginId, callbackPing, callbackError) {
            ns.Log('ActivatePlugin ' + pluginId);
            m_callReceiver.RegisterPlugin(pluginId, callbackPing, function (e) {
                callbackError && callbackError(e);
                m_callReceiver.UnregisterPlugin(pluginId);
                if (m_callReceiver.IsEmpty()) {
                    Stop();
                }
            });
        }
        function RegisterMethod(methodName, callback) {
            ns.Log('RegisterMethod ' + methodName);
            m_callReceiver.RegisterMethod(methodName, callback);
        }
        this.Log = function (msg) {            
            msg && msg.length <= 2048 ? m_caller.SendLog(msg) : m_caller.SendLog(msg.substring(0, 2048) + '<...>');
        };
        this.InitializePlugin = function (init) {
            init(
                function () {
                    ActivatePlugin.apply(self, arguments);
                },
                function () {
                    RegisterMethod.apply(self, arguments);
                },
                function () {
                    Call.apply(self, arguments);
                },
                function () {
                    DeactivatePlugin.apply(self, arguments);
                },
                function () {
                    return SyncCall.apply(self, arguments);
                }
            );
        };
		ns.AddEventListener(window, "unload", function() 
			{
				if (!m_callReceiver.IsEmpty())
					Stop();
			});
    };
	var runners = {};
	var pluginsInitData = [];
	ns.AddRunner = function(pluginName, runnerFunc, initParameters)
	{
		runners[pluginName] = runnerFunc;
		if (initParameters)
		{
			pluginsInitData.push({plugin: pluginName, parameters: initParameters});
		}
	};
	ns.ContentSecurityPolicyNonceAttribute = cspNonce;
	function GetSupportedCaller()
	{
		return m_webSocketSupported 
			? new WebSocketCaller()
			: new AjaxCaller;
	}
	function Init()
	{
		var caller = GetSupportedCaller();
		caller.Start(
			function() 
			{
				caller.InitCall(
					pluginsInitData,
					function(initSettings)
					{
						ns.IsRtl = initSettings.rtl;
						kaspersyLabSessionInstance = new KasperskyLabSessionClass(caller);
						var plugins = initSettings.plugins;
						for (var i = 0, pluginsCount = plugins.length; i < pluginsCount; ++i)
						{
							var plugin = plugins[i];
							var pluginRunnerFunction = runners[plugin.name];
							if (pluginRunnerFunction)
								pluginRunnerFunction(KasperskyLab, kaspersyLabSessionInstance, plugin.settings, plugin.localization);
						}
					},
					function()
					{
						PostponeInit();
					});
			},
			function() 
			{
				setTimeout(function () { Init(); }, 0);
			});
	}
	var postponedInitTimeout = null;
	function PostponeInit()
	{
		clearTimeout(postponedInitTimeout)
		postponedInitTimeout = setTimeout(function () { Init(); }, 60 * 1000);
	}
	setTimeout(function () { Init(); }, 0);	
})(KasperskyLab);
(function (ns) 
{
ns.waitForApiInjection = function(isApiInjected, eventName, callback)
{
    if (isApiInjected())
    {
        callback();
        return;
    }
    var subscription = createSubscription(eventName, onApiInjected)
    function onApiInjected()
    {
        if (isApiInjected())
        {
            subscription.unsubscribe();
            callback();
        }
    }
}
function createSubscription(eventName, callback)
{
    var windowEventsSupported = document.createEvent || window.addEventListener;
    return new (windowEventsSupported ? ModernSubscription : IeLegacySubscription)(eventName, callback);
}
function ModernSubscription(eventName, callback)
{
    ns.AddRemovableEventListener(window, eventName, callback);
    this.unsubscribe = function()
    {
        ns.RemoveEventListener(window, eventName, callback);
    }
}
function IeLegacySubscription(eventName, callback)
{
    ns.AddRemovableEventListener(document.documentElement, 'propertychange', onPropertyChange);
    this.unsubscribe = function()
    {
        ns.RemoveEventListener(document.documentElement, 'propertychange', onPropertyChange);
    }
    function onPropertyChange(event)
    {
        if (event.propertyName == eventName)
            callback();
    }
}
})(KasperskyLab || {});
var tabIdPropertyName = KasperskyLab.LIGHT_PLUGIN_API_KEY || 'klTabId_kis';
var scriptPluginId = Math.floor((1 + Math.random()) * 0x10000).toString(16);
function isApiInjected()
{
    return !!window[tabIdPropertyName];
}
function makeTopLevelArgument()
{
    return window == window.top ? 'true' : 'false';
}
function removeTabIdProperty()
{
	try {
		delete window[tabIdPropertyName];
	} catch (e) {
		window[tabIdPropertyName] = undefined;
	}	
}
var documentInitParameters = isApiInjected() ? [String(window[tabIdPropertyName]), makeTopLevelArgument(), scriptPluginId] : null;
KasperskyLab.AddRunner("light_doc", function (ns, session)
{
session.InitializePlugin(function(activatePlugin, _, callFunction)
{
	activatePlugin('light_doc');
	
	if (documentInitParameters)
	{
		removeTabIdProperty();
		return;
	}
	
	ns.waitForApiInjection(isApiInjected, tabIdPropertyName, function()
	{
		var tabId = String(window[tabIdPropertyName]);
		removeTabIdProperty();
		callFunction("light_doc.registerDocument", [
			tabId, 
			document.URL,
			makeTopLevelArgument(),
            scriptPluginId
			]);
	});	
});
}, documentInitParameters);
(function (ns)
{
ns.IsPositionEqual = function(prevPos, currentPos)
{
	return prevPos && currentPos && prevPos.top === currentPos.top && prevPos.left === currentPos.left;
};
ns.GetAbsoluteElementPosition = function(element)
{
	var box = element.getBoundingClientRect();
	var scroll = ns.GetPageScroll();
	return {
			left: box.left + scroll.left,
			top: box.top + scroll.top,
			right: box.right + scroll.left,
			bottom: box.bottom + scroll.top
		};
};
})(KasperskyLab || {});
(function (ns) 
{
ns.ProtectableElementDetector = function(protectMode)
{
	var m_typesForbidden = ['hidden', 'submit', 'radio', 'checkbox', 'button', 'image'];
	var m_protectMode = protectMode;
	this.Test = function(element)
	{
		if (m_protectMode < 2 || m_protectMode > 3)
			return false;
		var elementType = element.getAttribute('type');
		elementType = elementType && elementType.toLowerCase();
		if (m_protectMode === 2)
		{
			if (elementType != 'password')
				return false;
		}
		else if (Includes(m_typesForbidden, elementType))
		{
			return false;
		}
		if (GetComputedStyle(element, 'display') === 'none')
			return false;
		var maxLength = parseInt(element.getAttribute('maxlength'), 10);
		return typeof maxLength === 'number' && maxLength <= 3 ? false : !element.readOnly;
	};
	function Includes(list, text)
	{
		var i = 0, count = list.length;
		for (; i < count; ++i)
		    if (list[i] === text)
				return true;
		return false;
	}
	function GetComputedStyle(element, property)
	{
		var value;
		if (element.currentStyle)
		{
			value = element.currentStyle[property];
		}
		else
		{
			var styles = window.getComputedStyle(element, '');
			if (styles)
				value = styles.getPropertyValue(property);
		}
		return typeof value !== 'string' ? '' : value.toLowerCase();
	}
}
})(KasperskyLab || {});
(function (ns)
{
ns.SecureInputTooltip = function(locales)
{
	var m_tooltip,
		m_curPosition,
		m_top,
		m_bottom,
		m_pointer,
		m_needRestoreFocus,
		that = this;
	function CreateDivWithStyle(cssText)
	{
		var div = document.createElement('div');
		div.style.cssText = cssText;
		return div;
	}
	function CreateTooltip()
	{
		var balloonDiv = CreateDivWithStyle("position:absolute;display:block;width:auto;height:auto;padding:0;margin:0;text-align:left;border:none;border-radius:0;background:#transparent;z-index:2147483646;font-size:0px");
		var iconDiv = CreateDivWithStyle("position:relative;display:block;height:auto;width:auto;padding:35px 10px 11px;margin:0;text-align:left;border:1px solid #B2B2B2;border-radius:5px;background:#fff url(" + KasperskyLab.GetResourceSrc('/vk/VkTooltipBanner.png') + ") 10px 9px no-repeat;z-index:2147483646;");
		var close = CreateDivWithStyle("position:absolute;right:10px;top:6px;display:inline-block;height:16px;width:8px;padding:0;margin:0;text-align:left;background:url(" + KasperskyLab.GetResourceSrc('/vk/close_icon.png') + ") right center no-repeat;cursor:pointer;border:none;border-radius:0;white-space:nowrap;z-index:2147483646;");
		var contentText = CreateDivWithStyle("position:static;display:block;width:auto;height:auto;padding:0;margin:0;font:11px/1 Arial,Helvetica,sans-serif;text-align:left;color:#000;border:none;border-radius:0;background:#transparent;white-space:nowrap;z-index:2147483646;");
		m_top = CreateDivWithStyle("position:relative;display:block;width:32px;height:12px;padding:0;margin:0 0 -1px;text-align:left;border:none;border-radius:0;background:#transparent;z-index:2147483647;");
		m_bottom = CreateDivWithStyle("position:relative;display:block;width:32px;height:12px;padding:0;margin:-1px 0 0;text-align:left;border:none;border-radius:0;background:#transparent;z-index:2147483647;");
		m_pointer = CreateDivWithStyle("position:static;display:block;padding:0;margin:0;height:12px;width:100%;z-index:2147483647;");
		balloonDiv.appendChild(m_top);
		balloonDiv.appendChild(iconDiv);
		balloonDiv.appendChild(m_bottom);
		iconDiv.appendChild(close);
		iconDiv.appendChild(contentText);
		contentText.appendChild(document.createTextNode(locales["VkTooltipText"]));
		close.onmouseover = function(){m_needRestoreFocus = true;};
		close.onmouseout = function(){m_needRestoreFocus = false;};
		m_tooltip = balloonDiv;
	}
    function PositionTooltipPointer(position)
	{
		if (m_pointer.parentNode)
			m_pointer.parentNode.removeChild(m_pointer);
		var destinationDiv, pointerBackgroundImage;
		if (position === "top")
		{
			pointerBackgroundImage = "url(" + ns.GetResourceSrc('/vk/pointer_top.png') + ") no-repeat right bottom";
			destinationDiv = m_top;
        } 
		else if (position === "bottom") 
		{
			pointerBackgroundImage = "url(" + ns.GetResourceSrc('/vk/pointer_bottom.png') + ") no-repeat right top";
            destinationDiv = m_bottom;
        }
		m_pointer.style.background = pointerBackgroundImage;
		destinationDiv.appendChild(m_pointer);
    }
    function PositionTooltip(element)
	{
        var inputPosition = ns.GetAbsoluteElementPosition(element);
        if (!ns.IsPositionEqual(m_curPosition, inputPosition))
		{
            m_tooltip.style.left = inputPosition.left + "px";
			var tooltipHeight = m_tooltip.offsetHeight;
			var inputTopRelative = inputPosition.top - ns.GetPageScroll().top;
			var clientHeightUnderInput = ns.GetPageHeight() - inputTopRelative - element.offsetHeight;
            if ((clientHeightUnderInput > tooltipHeight - 1) || 
				(inputPosition.top - tooltipHeight + 1 < 0))
			{
                m_tooltip.style.top = (inputPosition.top + element.offsetHeight - 1) + "px";
                PositionTooltipPointer("top");
            }
			else
			{
                m_tooltip.style.top = (inputPosition.top - tooltipHeight + 1) + "px";
                PositionTooltipPointer("bottom");
            }
            m_curPosition = inputPosition;
        }
	}
	this.Show = function(element)
	{
	    if (!m_tooltip)
	        CreateTooltip();
        document.body.appendChild(m_tooltip);
		PositionTooltip(element);
		var timer = setInterval(function() { PositionTooltip(element); }, 100);
		this.Hide = function()
		{
			clearInterval(timer);
			document.body.removeChild(m_tooltip);
			if (m_needRestoreFocus)
				setTimeout(function(){element.focus();}, 0);
			m_tooltip = null;
			this.Show = function(){};
			this.Hide = function(){};
		};
		setTimeout(function()
		{
			that.Hide();
		}, 3000);
	};
	this.Hide = function(){};	
};
})(KasperskyLab || {});
(function (ns)
{
ns.VirtualKeyboardInputIcon = function(clickCallback)
{
	var m_curPosition,
		m_iconDiv,
		m_element,
		m_positionTimer,
		m_visible = false;
	function CreateDivWithStyle(cssText)
	{
		var div = document.createElement('div');
		div.style.cssText = cssText;
		return div;
	}
	function ControlIconDisplaying(e)
	{
		var eventArg = e || window.event;
		if (eventArg.keyCode === 9 || eventArg.keyCode === 16)
			return;
		if (m_element.value === "")
			ShowInternal();
		else
			HideInternal();
	}
	function HideInternal()
	{
		if (!m_visible)
			return;
		clearInterval(m_positionTimer);
		document.body.removeChild(m_iconDiv);
		m_visible = false;
	}
	function ShowInternal()
	{
		if (m_visible)
			return;
		document.body.appendChild(m_iconDiv);
		PositionIcon();
		m_positionTimer = setInterval(PositionIcon, 100);
		m_visible = true;
	}
	function PositionIcon()
	{
		var iconStyle = m_iconDiv.style,
			inputPosition = ns.GetAbsoluteElementPosition(m_element);
		if (!ns.IsPositionEqual(m_curPosition, inputPosition))
		{
			iconStyle.left = inputPosition.left + m_element.offsetWidth - 20 + 'px';
			iconStyle.top = inputPosition.top + (m_element.offsetHeight - 16) / 2 + 'px';
			m_curPosition = inputPosition;
		}
	}
	function CreateIcon()
	{
		m_iconDiv = CreateDivWithStyle('position:absolute;display:block;width:16px;height:16px;background:url(' + ns.GetResourceSrc('/vk/VkInputFieldIcon.png') + ') no-repeat center center;cursor:pointer;z-index:2147483647;font-size:0px');
		ns.AddEventListener(m_iconDiv, 'mouseover', function ()
		{
			m_iconDiv.style.filter = 'alpha(opacity=60)';	
			m_iconDiv.style.opacity = 0.6;
		});
		ns.AddEventListener(m_iconDiv, 'mouseout', function()
		{
			m_iconDiv.style.filter = 'alpha(opacity=100)';	
			m_iconDiv.style.opacity = 1;
		});
		ns.AddEventListener(m_iconDiv, 'click', clickCallback);
	}
	CreateIcon();
	this.Show = function(element)
	{
		this.Hide();
		m_element = element;
		ShowInternal();
		ns.AddRemovableEventListener(m_element, "keyup", ControlIconDisplaying)
		this.Hide = function()
		{
			HideInternal();
			this.Hide = function(){};
			ns.RemoveEventListener(m_element, "keyup", ControlIconDisplaying);
		};
	};
	this.Hide = function(){};
};
})(KasperskyLab || {});
KasperskyLab.AddRunner("vk", function (ns, session, settings, locales)
{
var VirtualKeyboard = function()
{
	var m_callFunction, m_syncCallFunction;
	var m_virtualKeyboardIconShowMode = 0;
	var m_secureInputProtectMode = 0;
	var m_activeElement = null;
	var m_lastFocusedElement = null;
	var m_protectedState = 0;
	var m_enabledSecureInput = false;
	var m_protectChangeTimeout;
	var m_protectableVirtualKeyboardChecker = new ns.ProtectableElementDetector(settings.vkProtectMode);
	var m_protectableSecureInputChecker = null;
	var m_protectableVirtualKeyboardIconChecker = null;
	var m_attributeName = "vk_" + Math.floor((1 + Math.random()) * 0x10000).toString(16);
	function ShowVirtualKeyboard()
	{
		if (m_lastFocusedElement)
			m_lastFocusedElement.focus();
		m_callFunction("vk.showKeyboard");
	}
	var m_tooltip = new ns.SecureInputTooltip(locales);
	var m_icon = new ns.VirtualKeyboardInputIcon(ShowVirtualKeyboard);
	var m_iconHideTimer;
	var m_postponeStart;
	var m_shutdown = false;
	session.InitializePlugin(function (activatePlugin, registerMethod, callFunction, deactivatePlugin, syncCallFunction) {
		m_callFunction = callFunction;
		m_syncCallFunction = syncCallFunction;
		activatePlugin('vk', OnPing);
		registerMethod('vk.settings', SetSettings);
	});
	function OnPing()
	{
		return (m_protectedState == 1 || m_protectedState == 2) ? 500 : ns.MaxRequestDelay;
	}
	function SetSettings(argumentList)
	{
		var newVirtualKeyboardIconShowMode = parseInt(argumentList[0], 10);
		var newSecureInputProtectMode = parseInt(argumentList[1], 10);
		SetSettingsImpl(newVirtualKeyboardIconShowMode, newSecureInputProtectMode);
	}
	function SetSettingsImpl(newVirtualKeyboardIconShowMode, newSecureInputProtectMode)
	{
		if (newSecureInputProtectMode != m_secureInputProtectMode)
			m_protectableSecureInputChecker = new ns.ProtectableElementDetector(newSecureInputProtectMode);
		if (newVirtualKeyboardIconShowMode != m_virtualKeyboardIconShowMode)
			m_protectableVirtualKeyboardIconChecker = new ns.ProtectableElementDetector(newVirtualKeyboardIconShowMode);
		var needToUpdate = (newSecureInputProtectMode > m_secureInputProtectMode ||
            newVirtualKeyboardIconShowMode > m_virtualKeyboardIconShowMode);
		m_secureInputProtectMode = newSecureInputProtectMode;
		m_virtualKeyboardIconShowMode = newVirtualKeyboardIconShowMode;
		if (needToUpdate && m_observer)
            m_observer.settingsChanged();
	}
	function NeedProtectElement(element)
	{
		return m_protectableSecureInputChecker.Test(element) || m_protectableVirtualKeyboardChecker.Test(element);
	}
	function HandleStartProtectCallback(result, args, needSecureInputCall)
	{
		if (m_protectedState === 3)	
		{
			if (result === 0)
				StopProtect();
			else
				m_protectedState = 0;	
			return;
		}
		if (result === 0)
		{
			if (!args || args.length < 1)
			{
				session.Log("ERR VK - unexpected arguments");
				return;
			}
			m_enabledSecureInput = args[0] === "true";
			m_protectedState = 2;	
			var needSecureInput = m_protectableSecureInputChecker.Test(m_activeElement);
			if (needSecureInput === needSecureInputCall)
				ShowBalloons();
			else
				CheckProtectModeAndShowBalloons();
			return;
		}
		else if (result === 1)
		{
			m_postponeStart = setTimeout(function() {OnElementFocus(m_activeElement);}, 100);
		}
		m_protectedState = 0;	
	}
    function OnError(e)
	{
        session.Log('ERR VK - ' + (e.message || e));
    }
	function StartProtect()
	{
		var needSecureInput = m_protectableSecureInputChecker.Test(m_activeElement);
		m_protectedState = 1;	
		m_callFunction("vk.startProtect", [needSecureInput.toString()], function(result, args) { HandleStartProtectCallback(result, args, needSecureInput);}, OnError);
	}
	function ChangeMode()
	{
		var needSecureInput = m_protectableSecureInputChecker.Test(m_activeElement);
		m_protectedState = 1;	
		m_callFunction("vk.changeMode", [needSecureInput.toString()], function(result, args) { HandleStartProtectCallback(result, args, needSecureInput);}, OnError);
	}
	function StopProtect()
	{
	    m_protectedState = 3;	
	    m_callFunction("vk.stopProtect", [], function (result)
			{
				if (m_protectedState === 1 && result === 0)	
				{
					StartProtect();
					return;
				}
				m_protectedState = 0;		
				m_activeElement = null;
			}, OnError);
	}
	function ShowBalloons()
	{
		if (m_enabledSecureInput)
			m_tooltip.Show(m_activeElement);
		if (m_protectableVirtualKeyboardIconChecker.Test(m_activeElement))
			m_icon.Show(m_activeElement);
	}
	function CheckProtectModeAndShowBalloons()
	{
		var needSecureInput = m_protectableSecureInputChecker.Test(m_activeElement);
		if (needSecureInput != m_enabledSecureInput)
			ChangeMode();
		else
			ShowBalloons();
	}
	function OnElementFocus(element)
	{
	    if (m_shutdown)
	        return;
		if (m_iconHideTimer)
		{
			clearTimeout(m_iconHideTimer);
			m_iconHideTimer = null;
			m_icon.Hide();
		}
		if (!NeedProtectElement(element))
		{
			m_activeElement = null;
			return;
		}
		m_activeElement = element;
		m_lastFocusedElement = element;
		clearTimeout(m_postponeStart);
		clearTimeout(m_protectChangeTimeout);
		m_protectChangeTimeout = setTimeout(function () { ProcessFocus(); }, 0);
	}
	function OnElementBlur(element)
	{
	    if (m_shutdown)
	        return;
		clearTimeout(m_postponeStart);
		m_iconHideTimer = setTimeout(function() {m_icon.Hide();}, 500);
		m_tooltip.Hide();
		clearTimeout(m_protectChangeTimeout);
		m_protectChangeTimeout = setTimeout(function () { ProcessBlur(); }, 0);
	}
	function OnSettingsChanged(element)
	{
	    var needProtectElement = NeedProtectElement(element);
	    if ((m_activeElement !== element) ^ needProtectElement)
	        return;
	    if (needProtectElement)
	        OnElementFocus(element);
	    else
	        OnElementBlur(element);
	}
	function ProcessFocus()
	{
		if (m_protectedState === 0)			
			StartProtect();
		else if (m_protectedState === 2) 	
			CheckProtectModeAndShowBalloons();
		else if (m_protectedState === 3)	
			m_protectedState = 1;			
	}
	function ProcessBlur()
	{
		if (m_protectedState === 2)	
			StopProtect();
		else if (m_protectedState === 1)	
			m_protectedState = 3;	
	}
	SetSettingsImpl(settings.vkMode, settings.skMode);
	ns.AddEventListener(window, 'unload', function ()
	{
		clearTimeout(m_protectChangeTimeout);
		clearTimeout(m_postponeStart);
		m_shutdown = true;
		m_observer.unbind();
	});
	var m_observer = new FocusChangeObserver(OnElementFocus, OnElementBlur, OnSettingsChanged);
};
function FocusChangeObserver(focusHandler, blurHandler, settingsChangedHandler)
{
    var m_targetPropertyName;
    if (document.addEventListener)
    {
        document.addEventListener('focus', onFocus, true);
        document.addEventListener('blur', onBlur, true);
        m_targetPropertyName = 'target';
    }
    else
    {
        document.attachEvent('onfocusin', onFocus);
        document.attachEvent('onfocusout', onBlur);
        m_targetPropertyName = 'srcElement';
    }
    var m_focusedElement = tryToGetFocusedInput();
    this.settingsChanged = function ()
    {
        if (m_focusedElement)
            settingsChangedHandler(m_focusedElement);
    }
    this.unbind = function ()
    {
        if (document.removeEventListener)
        {
            document.removeEventListener('focus', onFocus, true);
            document.removeEventListener('blur', onBlur, true);
        }
        else
        {
            document.detachEvent('onfocusin', onFocus);
            document.detachEvent('onfocusout', onBlur);
        }
        if (m_focusedElement)
        {
            blurHandler(m_focusedElement);
            m_focusedElement = null;
        }
    }
    if (m_focusedElement)
        focusHandler(m_focusedElement);
    function tryToGetActiveElement()
    {
        try
        {
            return document.activeElement;
        }
        catch (e)
        {}
        return null;
    }
    function tryToGetFocusedInput()
    {
        var element = tryToGetActiveElement();
        return (document.hasFocus() && isInputElement(element)) ? element : null;
    }
    function isInputElement(element)
    {
        return element &&
            element.tagName &&
            element.tagName.toLowerCase() === 'input';
    }
    function onBlur(event)
    {
        if (m_focusedElement)
        {
            var element = m_focusedElement;
            m_focusedElement = null;
            blurHandler(element);
        }
    }
    function onFocus(event)
    {
        var element = event[m_targetPropertyName];
        if (isInputElement(element))
        {
            m_focusedElement = element;
            focusHandler(element);
        }
    }
}
var instance = null;
function RunVirtualKeyboard()
{
	try
	{
		if (!instance)
			instance = new VirtualKeyboard();
	}
	catch(e)
	{
		session.Log("Virtual keyboard exception " + (e.message || e));
	}
}
if (document.readyState === "loading")
{
	if (document.addEventListener)
	{
		document.addEventListener("DOMContentLoaded", RunVirtualKeyboard, true);
	}
	else if (document.all)
	{
		document.attachEvent("onreadystatechange", function()
			{
				if (document.readyState !== "loading")
					RunVirtualKeyboard();
			});
	}
	else
	{
		document.attachEvent("onload", function()
			{
				RunVirtualKeyboard();
			});
	}
}
else
{
	RunVirtualKeyboard();
}
});
KasperskyLab.AddRunner("ob", function (ns, session)
{
var OnlineBanking = function()
{
     var m_idleStartTime = ns.GetCurrentTime();
	var m_isInFrame = true;
    try {
        m_isInFrame = window != window.top;
    } catch (e) {
        session.Log('Online banking cross domain frame! ' + (e.message || e));
    }
    session.InitializePlugin(function(activatePlugin, registerMethod, callFunction, deactivatePlugin){
        if (m_isInFrame) {
            callFunction('ob.disconnect', []);
        } else {
            activatePlugin('ob', OnPing, OnError);
            registerMethod('ob.navigate', NavigateTo);
            registerMethod('ob.shutdown',
                function(){
                    deactivatePlugin('ob');
                }
            );
            callFunction('ob.connect', [],
                function(result){
                    if (result != 0) {
                        deactivatePlugin('ob');
                    }
                },
                OnError);
        }
    });
    function OnError(e) {
        session.Log('ERR OB - ' + (e.message || e));
    }
    function OnPing(currentTime) {
        var idleTime = (currentTime >= m_idleStartTime) ? currentTime - m_idleStartTime : 0;
        return idleTime <= 10000 ? 500 : ns.MaxRequestDelay;
    }
	function NavigateTo(args) {
		if (args.length < 1)
		{
			session.Log("Wrong arguments for navigate" + args.length);
			return;
		}
		document.location.href = args[0];
   }
};
try
{
     var instance = new OnlineBanking();
}
catch(e)
{
    session.Log('Online banking exception ' + (e.message || e));
}
});
KasperskyLab.IsAbnInject = true;(function (ns) {
var ContextMenu = function(onCreateCallback)
{
	var IsIeCompatibilityMode = document.attachEvent && document.documentMode && document.documentMode == 5; 
	var Initializing = 0;
	var Ready = 1;
	var m_balloon = null;
	var m_isDisplayed = false;
	var m_state = Initializing;
	function GetFrameDocument(frameNode)
	{
		return frameNode.contentDocument || frameNode.contentWindow.document;
	}
	function FillFrame(setupBalloonCallback)
	{
		var frameDocument = GetFrameDocument(m_balloon);
		if (frameDocument && frameDocument.body && frameDocument.body.childNodes.length === 0)
		{
			if (ns.IsRtl)
				frameDocument.body.style.direction = "rtl";
			onCreateCallback(frameDocument.body, frameDocument, setupBalloonCallback);
		}
	}
	function CreateBalloon(setupBalloonCallback)
	{
		m_balloon = document.createElement("iframe");
		m_balloon.scrolling = "no";
		m_balloon.style.zIndex = "2147483647";
		m_balloon.style.border = "0";
		m_balloon.style.position = "absolute";
		HideBalloon();
		document.body.appendChild(m_balloon);
		try
		{
			FillFrame(setupBalloonCallback);
		}
		catch (e)
		{
			m_balloon.src = "javascript:'<script>window.onload=function(){document.write(\\'<script>document.domain=\\\"" + document.domain + "\\\";<\\\\/script>\\');document.close();};<\/script>'";
			setTimeout(
				function()
				{
					FillFrame(setupBalloonCallback);
				}, 100);
		}
		setTimeout(
			function()
			{
				FillFrame(setupBalloonCallback);
			}, 100);
	}
	function GetElementSize(element)
	{
		var rect = IsIeCompatibilityMode ? {width: element.scrollWidth || element.clientWidth, height: element.scrollHeight || element.clientHeight} : element.getBoundingClientRect();
		var width = ns.IsDefined(rect.width) ? rect.width : rect.right - rect.left;
		var height = ns.IsDefined(rect.height) ? rect.height : rect.bottom - rect.top;
		return { width: width, height: height };
	}
	function HideBalloon()
	{
		if (m_balloon)
			m_balloon.style.display = "none";
	}
	function ResizeBalloon(element)
	{
		var balloonSize = GetElementSize(element);
		m_balloon.style.height = balloonSize.height + "px";
		m_balloon.style.width = balloonSize.width + "px";
		return balloonSize;
	}
	function SetupBalloon(clientX, clientY)
	{
		m_state = Ready;
		var clientHeight = ns.GetPageHeight();
		var clientWidth = ns.GetPageWidth();
		m_balloon.style.display = m_isDisplayed ? "" : "none";
		m_balloon.style.height = "1px";
		m_balloon.style.width = "1px";
		m_balloon.style.left = "1px";
		m_balloon.style.top = "1px";
		var x = 0;
		var y = 0;
		var frameDocument = GetFrameDocument(m_balloon);
		var balloonSize;
		if (IsIeCompatibilityMode)
		{
			ResizeBalloon(frameDocument.body.childNodes[0]);
			balloonSize = ResizeBalloon(frameDocument.body.childNodes[0]);
		}
		else if (document.documentMode <= 8)
		{
			ResizeBalloon(frameDocument.body.childNodes[0]);
			ResizeBalloon(frameDocument.body.childNodes[0]);
			balloonSize = ResizeBalloon(frameDocument.body.childNodes[0]);		
		}
		else
		{
			balloonSize = ResizeBalloon(frameDocument.body);
		}
		x = (balloonSize.width + clientX > clientWidth) ? clientWidth - balloonSize.width : clientX;
		y = (balloonSize.height + clientY > clientHeight) ? clientY - balloonSize.height : clientY;
		if (x < 0)
			x = 0;
		if (y < 0)
			y = 0;
		var scroll = ns.GetPageScroll();
		x += scroll.left;
		y += scroll.top;
		m_balloon.style.left = Math.round(x).toString() + "px";
		m_balloon.style.top = Math.round(y).toString() + "px";
	}
	this.ShowBalloon = function(coord)
	{
		m_isDisplayed = true;
		var setupBalloonCallback = function(){SetupBalloon(coord.x, coord.y);};
		if (!m_balloon)
			CreateBalloon(setupBalloonCallback);
		else if (m_state === Ready)
			setupBalloonCallback();
	}
	this.Hide = function()
	{
		m_isDisplayed = false;
		HideBalloon();
	}
};
ns.AntiBannerBalloon = function(settings, locales, callFunction, session)
{
	var m_balloon = (window == window.top) ? new ContextMenu(OnCreateBalloon) : null;
	var m_areaText = null;
	var m_setBlockStatusMenuItem = null;
	var m_addToBlockListItem = null;
	var m_blockingStatus = settings.blockingStatus;
	var m_changeBlockingStatusStarted = false;
	var m_hideTimeout = null;
	var m_currentImgSrc = null;
	var m_lastIframeX = 0;
	var m_lastIframeY = 0;
	var m_partnerSiteDescription = locales["AntiBannerOffAsPartnerDescription"].replace("%DomainName%", document.location.hostname);
	var BlockingOn = 0;
	var BlockingOffByUser = 1;
	var BlockingOffByPartner = 2;
	function UpdateBlockingStatus()
	{
		if (!m_areaText)
			return;
		if (m_blockingStatus === BlockingOn)
			m_areaText.style.display = "none";
		else if (m_blockingStatus === BlockingOffByUser || m_blockingStatus === BlockingOffByPartner)
			m_areaText.style.display = "";
		else
			throw "Unknown blocking status " + m_blockingStatus;
	}
	function UpdateSetBlockingStatusMenuItem()
	{
		if (!m_setBlockStatusMenuItem)
			return;
		var setBlockStatusText = m_blockingStatus === BlockingOn ? locales["AntiBannerDisableOnThisSite"] : locales["AntiBannerEnableOnThisSite"];
		m_setBlockStatusMenuItem.innerText = setBlockStatusText;
		if (ns.IsDefined(m_setBlockStatusMenuItem.textContent))
			m_setBlockStatusMenuItem.textContent = setBlockStatusText;
	}
	function UpdateLegacyMenuItem()
	{
		if (!m_addToBlockListItem)
			return;
		var menuItemTop = m_addToBlockListItem.parentNode.parentNode;
		menuItemTop.style.display = "none";
		if (settings.legacyMenu && m_currentImgSrc)
			menuItemTop.style.display = "";
	}
	function AddMenuItem(ulNode, text, clickHandler)
	{
		var li = document.createElement("li");
		ulNode.appendChild(li);
		var button = document.createElement("button");
		button.className = "area-menu-link";
		li.appendChild(button);
		var span = document.createElement("span");
		button.appendChild(span);
		span.appendChild(document.createTextNode(text));
		ns.AddEventListener(button, "click", clickHandler);
		return span;
	}
	function OnCreateBalloon(element, document, finishCreateBalloonCallback)
	{
		var mainDiv = document.createElement("div");
		mainDiv.className = "popup";
		var popupBody = document.createElement("div");
		popupBody.className = "popup-body";
		var popupSection = document.createElement("div");
		popupSection.className = "popup-section";
		popupBody.appendChild(popupSection);
		var areaDiv = document.createElement("div");
		areaDiv.className = "area";
		popupSection.appendChild(areaDiv);
		var areaHeader = document.createElement("div");
		areaHeader.className = "area-header";
		areaDiv.appendChild(areaHeader);
		var areaHeaderTitle = document.createElement("div");
		areaHeaderTitle.className = "area-headerTitle";
		areaHeader.appendChild(areaHeaderTitle);
		var areaHeaderTitleIcon = document.createElement("div");
		areaHeaderTitleIcon.className = "area-icon antibanner-area-icon";
		areaHeaderTitle.appendChild(areaHeaderTitleIcon);
		var areaHeaderTitleName = document.createElement("div");
		areaHeaderTitleName.className = "area-title";
		areaHeaderTitleName.appendChild(document.createTextNode(locales["AntiBannerComponentName"]));
		areaHeaderTitle.appendChild(areaHeaderTitleName);
		var clearDiv = document.createElement("div");
		clearDiv.className = "clear";
		areaHeaderTitle.appendChild(clearDiv);		
		var areaBody = document.createElement("div");
		areaBody.className = "area-body";
		areaDiv.appendChild(areaBody);
		var areaBodyContent = document.createElement("div");
		areaBodyContent.className = "area-bodyContent scrollable-content";
		areaBody.appendChild(areaBodyContent);
		m_areaText = document.createElement("div");
		m_areaText.className = "area-text";
		areaBodyContent.appendChild(m_areaText);
		var blockingStatusDiv = document.createElement("span");
		blockingStatusDiv.appendChild(document.createTextNode(locales["AntiBannerStatusOff"]));
		m_areaText.appendChild(blockingStatusDiv);
		if (m_blockingStatus === BlockingOffByPartner)
		{
			var areaTextSmall = document.createElement("div");
			areaTextSmall.className = "area-textSmall";
			areaTextSmall.appendChild(document.createElement("span")).appendChild(document.createTextNode(m_partnerSiteDescription));
			areaBodyContent.appendChild(areaTextSmall);
		}
		var areaMenu = document.createElement("ul");
		areaMenu.className = "area-menu";
		areaBodyContent.appendChild(areaMenu);
		m_addToBlockListItem = AddMenuItem(areaMenu, locales["AntiBannerContextMenuPrompt"], AddToBlockList);
		m_setBlockStatusMenuItem = AddMenuItem(areaMenu, locales["AntiBannerDisableOnThisSite"], SetBlockStatus);
		if (m_blockingStatus === BlockingOffByPartner)
		{
			m_setBlockStatusMenuItem.parentNode.disabled = true;
		}
		AddMenuItem(areaMenu, locales["AntiBannerSettings"], ShowAntiBannerSettings);
		AddMenuItem(areaMenu, locales["AntiBannerHelp"], AntiBannerHelp);
		var popupFooter = document.createElement("div");
		popupFooter.className = "popup-footer";
		var logo = document.createElement("div");
		logo.className = "logo";
		popupFooter.appendChild(logo);
		mainDiv.appendChild(popupBody);
		mainDiv.appendChild(popupFooter);
		element.appendChild(mainDiv);
		ns.AddEventListener(document, "contextmenu", OnContextMenuTooltip);
		ns.AddEventListener(document, "mousedown", OnContextMenuTooltip);
		UpdateBlockingStatus();
		UpdateSetBlockingStatusMenuItem();
		UpdateLegacyMenuItem();
		if (!document.styleSheets.length)
		{
			var link = document.createElement("link");
			link.setAttribute("type", "text/css");
			link.setAttribute("rel", "stylesheet");
			link.setAttribute("href", ns.GetResourceSrc("/abn/context_menu.css"));
			link.setAttribute("nonce", ns.ContentSecurityPolicyNonceAttribute);
			link.onload = finishCreateBalloonCallback;
			if (document.head)
				document.head.appendChild(link);
			else
				document.getElementsByTagName("head")[0].appendChild(link);
		}
		else
		{
			finishCreateBalloonCallback();
		}
	}
	function AddToBlockList()
	{
		try
		{
			callFunction("abn.AddToBlockList", [m_currentImgSrc]);
			m_balloon.Hide();
		}
		catch (error)
		{
			session.Log("AddToBlockList error: " + (error.message || error));
		}
	}
	function ShowAntiBannerSettings()
	{
		try
		{
			callFunction("abn.ShowSettings");
			m_balloon.Hide();
		}
		catch (error)
		{
			session.Log("ShowAntiBannerSettings error: " + (error.message || error));
		}
	}
	function SetBlockStatus()
	{
		try
		{
			if (m_blockingStatus !== BlockingOffByPartner && !m_changeBlockingStatusStarted)
			{
				m_changeBlockingStatusStarted = true;
				var newBlockingStatus = (m_blockingStatus !== BlockingOn).toString();
				callFunction("abn.SetBlockStatus", [newBlockingStatus],
					function(){ChangeBlockStatusHandler(true);}, 
					function(){ChangeBlockStatusHandler(false);});
			}
			m_balloon.Hide();
		}
		catch (error)
		{
			session.Log("SetBlockStatus error: " + (error.message || error));
		}
	}
	function AntiBannerHelp()
	{
		try
		{
			ns.WindowOpen(ns.EncodeURI(locales["AntiBannerHelpUrlSettings"]));
			m_balloon.Hide();
		}
		catch (error)
		{
			session.Log("AntiBannerHelp error: " + (error.message || error));
		}
	}
	function ChangeBlockStatusHandler(succeeded)
	{
		m_changeBlockingStatusStarted = false;
		if (succeeded)
		{
			if (m_blockingStatus === BlockingOn)
				m_blockingStatus = BlockingOffByUser;
			else
				m_blockingStatus = BlockingOn;
			UpdateSetBlockingStatusMenuItem();
			UpdateBlockingStatus();
		}
	}
	function IsContextMenuEvent(evt)
	{
		return evt.ctrlKey && (evt.button === 2 || evt.type === "contextmenu");
	}
	function OnContextMenuTooltip(evt)
	{
		try
		{
			if (IsContextMenuEvent(evt))
				ns.StopProcessingEvent(evt);
		}
		catch (e)
		{
			session.Log("OnContextMenuTooltip error: " + (e.message || e));
		}
	}
	function OnContextMenu(evt)
	{
		try
		{
			if (window != window.top)
			{				
				if (IsContextMenuEvent(evt))
				{
					ns.StopProcessingEvent(evt);
					var target = evt.target || evt.srcElement;
					if (target.nodeName.toLowerCase() === "img" && target.src && target.src.indexOf("data:") !== 0)
						m_currentImgSrc = target.src;
					else
						m_currentImgSrc = null;
					callFunction("abn.NeedToShowMenu", [evt.clientX, evt.clientY, m_currentImgSrc],
						function()
						{
							window.top.window.postMessage(ns.JSONStringify({showmenu: true}), "*");
						});
				}
			}
			if (!m_balloon) 
				return;
			m_balloon.Hide();
			if (IsContextMenuEvent(evt))
			{
				ns.StopProcessingEvent(evt);
				var target = evt.target || evt.srcElement;
				if (target.nodeName.toLowerCase() === "img" && target.src && target.src.indexOf("data:") !== 0)
					m_currentImgSrc = target.src;
				else
					m_currentImgSrc = null;
				UpdateLegacyMenuItem();
				m_balloon.ShowBalloon({x: evt.clientX, y: evt.clientY});
			}
		}
		catch (e)
		{
			session.Log("OnContextMenu error: " + (e.message || e));
		}
	}
	function OnFrameContextMenu(evt)
	{
		if (!m_balloon || !evt || !evt.data || typeof evt.data !== 'string') 
			return;
		var data = ns.JSONParse(evt.data);
		if (data.showmenu != true)
			return;
		m_balloon.Hide();
		callFunction("abn.CanShowMenu", [], 
			function(result, args)
			{ 
		 		if (result === 0 && args.length >= 2)
		 		{
		 			m_currentImgSrc = args.length < 3 ? null : args[2];
			 		UpdateLegacyMenuItem();
			 		m_balloon.ShowBalloon({x: parseInt(args[0]) + m_lastIframeX, y: parseInt(args[1]) + m_lastIframeY});
			 	}
			 });
	}
	function OnMouseOver(evt)
	{
		var element = evt.target || evt.srcElement;
		if (element.nodeName.toLowerCase() != "iframe")
			return;
		var r = element.getBoundingClientRect();
		m_lastIframeX = r.left;
		m_lastIframeY = r.top;
	}
	this.Disable = function()
	{
		if (m_balloon)
			m_balloon.Hide();
		m_balloon = null;
		session.Log("Disabling antibanner");
	}
	ns.AddEventListener(document, "contextmenu", OnContextMenu);
	ns.AddEventListener(document, "mousedown", OnContextMenu);
	if (window == window.top)
	{
		ns.AddEventListener(document, "mouseover", OnMouseOver); 
		ns.AddEventListener(window, "message", OnFrameContextMenu);
	}
}
}) (KasperskyLab || {});
KasperskyLab.AddRunner("abn", function (ns, session, settings, locales)
{
	var AntiBanner = function()
	{
		var m_callFunction = function(){};
		var m_usingStyles = [];
		var m_deferredProcess = null;
		var m_processedIdentifier = "kl_abn_" + ns.GetCurrentTime();
		var m_firstRun = true;
		var m_commonLink = ns.GetResourceSrc("/abn/main.css");
		var m_randColorAttribute = settings.randomColor;
		var m_randBackgroundColorAttribute = settings.randomBackgroundColor;
		var m_balloon = null;
		function OnPing()
		{
			return ns.MaxRequestDelay;
		}
		function OnError(e)
		{
			session.Log("ERR css ab - " + (e.message || e));
		}
		function ScheduleCalculateProcessedItems()
		{
			clearTimeout(m_deferredProcess);
			m_deferredProcess = setTimeout(CalculateNewProcessedItems, 500);
		}
		function AddUsingStyle(sheetNode)
		{
			try
			{
				for (var i = 0; i < document.styleSheets.length; ++i)
				{
					var ownerNode = document.styleSheets[i].ownerNode || document.styleSheets[i].owningElement;
					if (ownerNode == sheetNode)
					{
						AddAntiBannerStyleSheet(document.styleSheets[i]);
						break;
					}
				}
			}
			catch(e)
			{
				session.Log("ab: AddUsingStyle exception: " + (e.message || e));
			}
		}
		function FindCommonStyleSheet()
		{
			for (var i = 0; i < document.styleSheets.length; ++i)
			{
				var currentStyleSheet = document.styleSheets[i];
				if (currentStyleSheet.href && currentStyleSheet.href.indexOf(m_commonLink) !== -1)
					return currentStyleSheet;
			}
			return null;
		}
		function DisableCommonStyleSheet()
		{
			var styleSheet = FindCommonStyleSheet();
			if (!styleSheet)
				return;
			styleSheet.disabled = true;
		}
		function SetCss(setings)
		{
			try
			{
				if (setings)
				{
					if (settings.ignoreCommonRules)
						DisableCommonStyleSheet();
					var sheetNode = ns.AddStyles(setings.rules);
					setTimeout(function(){AddUsingStyle(sheetNode);}, 0);
				}
				ScheduleCalculateProcessedItems();
			}
			catch(e)
			{
				session.Log("ab: SetCss exception: " + (e.message || e));
			}
		}
		function CalculateNewProcessedItemsBySelector(selector)
		{
			var newProcessedCount = 0;
			var elementList = document.querySelectorAll(selector);
			for (var i = 0; i < elementList.length; ++i)
			{
				if (!elementList[i][m_processedIdentifier])
				{
					elementList[i][m_processedIdentifier] = true;
					++newProcessedCount;
				}
			}
			return newProcessedCount;
		}
		function CalculateNewProcessedItemsByRules(rules)
		{
			var newProcessedCount = 0;
			for (var i = 0; i < rules.length; ++i)
			{
				try
				{
					newProcessedCount += CalculateNewProcessedItemsBySelector(rules[i].selectorText);
				}
				catch(e)
				{
					session.Log("ab: Unable to count blocked elements: " + (e.message || e) + " skipping selector group: " + i);
				}
			}
			return newProcessedCount;
		}
		function CalculateNewProcessedItemsByStyle()
		{
			var newProcessedCount = 0;
			var elementList = document.getElementsByTagName("*");
			for (var i = 0; i < elementList.length; ++i)
			{
				if (!elementList[i][m_processedIdentifier] &&
					elementList[i].currentStyle.color == m_randColorAttribute &&
					elementList[i].currentStyle.backgroundColor == m_randBackgroundColorAttribute)
				{
					elementList[i][m_processedIdentifier] = true;
					++newProcessedCount;
				}
			}
			return newProcessedCount;
		}
		function CalculateNewProcessedItems()
		{
			try
			{
				m_deferredProcess = null;
				var newProcessedCount = 0;
				if (document.querySelectorAll)
				{
					for (var i = 0; i < m_usingStyles.length; ++i)
						if (!m_usingStyles[i].disabled)
							newProcessedCount += CalculateNewProcessedItemsByRules(m_usingStyles[i].cssRules || m_usingStyles[i].rules);
				}
				else
				{
					newProcessedCount = CalculateNewProcessedItemsByStyle();
				}
				if (m_firstRun || newProcessedCount != 0)
				{
					m_callFunction("abn.statInfo", [newProcessedCount.toString()]);
					m_firstRun = false;
				}
			}
			catch(e)
			{
				session.Log("ab: Calculate exception: " + (e.message || e));
			}
		}
		function AddAntiBannerStyleSheet(styleSheet)
		{
			if (!styleSheet)
				return;
			m_usingStyles.push(styleSheet);
		}
		session.InitializePlugin(
			function(activatePlugin, registerMethod, callFunction)
			{
				m_callFunction = callFunction;
				activatePlugin("abn", OnPing, OnError);
	            registerMethod('abn.disable', function ()
					{
						if (m_balloon)
							m_balloon.Disable();
					}
				);
			});
		var commonStyleSheet = FindCommonStyleSheet();
		AddAntiBannerStyleSheet(commonStyleSheet);
		if (!commonStyleSheet)
		{
			if (settings.insertCommonLink)
			{
				var link = document.createElement("link");
				link.setAttribute("type", "text/css");
				link.setAttribute("rel", "stylesheet");
				link.setAttribute("href", m_commonLink);
				link.setAttribute("nonce", ns.ContentSecurityPolicyNonceAttribute);
				link.setAttribute("crossorigin", "anonymous");
				link.onload = 
					function()
					{
						AddAntiBannerStyleSheet(FindCommonStyleSheet());
						ScheduleCalculateProcessedItems();
					};
				if (document.head)
					document.head.appendChild(link);
				else
					document.getElementsByTagName("head")[0].appendChild(link);
			}
		}
		SetCss(settings);
		m_balloon =  new ns.AntiBannerBalloon(settings, locales, m_callFunction, session) ;
	}
	var instance = null;
	function RunAntiBanner()
	{
		try
		{
			if (!instance)
				instance = new AntiBanner;
		}
		catch(e)
		{
			session.Log("CssAntiBanner exception " + (e.message || e));
		}
	}
	if (document.readyState === "loading")
	{
		if (document.addEventListener)
		{
			document.addEventListener("DOMContentLoaded", RunAntiBanner, true);
		}
		else
		{
			document.attachEvent("onload", RunAntiBanner);
		}
	}
	else
	{
		RunAntiBanner();
	}
}, [(!!KasperskyLab.IsAbnInject).toString()]);
KasperskyLab.AddRunner("cb", function (ns, session, settings, locales) {
    var ContentBlocker = function () {
        var m_idleStartTime = ns.GetCurrentTime();
        var m_signRequest = [];
        var m_callFunction;
        var m_deactivateFunction;
        session.InitializePlugin(function (activatePlugin, registerMethod, callFunction, deactivatePlugin) {
            m_deactivateFunction = deactivatePlugin;
            m_callFunction = callFunction;
            activatePlugin('cb', OnPing, OnError);
            registerMethod('cb.reloadUrl', ReloadUrl);
            registerMethod('cb.signReady', SignReady);
            registerMethod('cb.shutdown',
                function () {
                    deactivatePlugin('cb');
                }
        );
            callFunction('cb.connect', [],
            function (result) {
                if (result != 0) {
                    deactivatePlugin('cb');
                }
            },
            function (e) {
                OnError(e);
                deactivatePlugin('cb');
            });
        });
        function OnError(e) {
            session.Log('ERR CB - ' + (e.message || e));
        }
        function OnPing(currentTime) {
            var idleTime = (currentTime >= m_idleStartTime) ? currentTime - m_idleStartTime : 0;
            return idleTime <= 10000 ? 500 : ns.MaxRequestDelay;
        }
        function ReloadUrl() {
            session.Log("Start reload url " + document.readyState);
            m_idleStartTime = ns.GetCurrentTime();
            window.location.reload(true);
        }
        function SignReady(args) {
            m_idleStartTime = ns.GetCurrentTime();
            if (args.length !== 2) {
                session.Log('ContentBlocker error: invalid parameter count ' + args.length);
                return;
            }
            if (!m_signRequest[args[0]]) {
                session.Log('ContentBlocker error: invalid challenge');
                return;
            }
            m_signRequest[args[0]](args[1]);
        }
        if (settings.isProductInfoRequired) {
            window.KasperskyLab = (function (object) {
                var thisProductId = locales["ProductName"] + " " + locales["ProductVersion"];
                var thisProduct = {
                    'productName': locales["ProductName"],
                    'productVersion': locales["ProductVersion"],
                    'productPPCSID': locales["ProductPPCSID"],
                    'features': {
                        'isSafeMoneyInstalled': locales["IsSafeMoneyInstalled"],
                        'isSafeMoneyProtectionEnabled': settings.isSafeMoneyProtectionEnabled
                    }
                };
                if (locales["DeviceId"])
                    thisProduct['deviceId'] = locales["DeviceId"];
                object._products = object._products || {};
                object._products[thisProductId] = thisProduct;
                object.getInstalledProducts = function () {
                    var products = [];
                    for (var productId in object._products) {
                        products.push(object._products[productId]);
                    }
                    return products;
                };
                object.initProductInfoProvider = function (signedProductInfoProvider) {
                    delete object.initProductInfoProvider;
                    object._products2 = object._products2 || {};
                    object._products2[thisProductId] = signedProductInfoProvider;
                    object.getInstalledProducts2 = function (challenge, timeoutMs, callback) {
                        for (var productId in object._products2) {
                            object._products2[productId](challenge, timeoutMs, callback);
                        }
                    };
                };
                return object;
            })(window.KasperskyLab || {});
            window.KasperskyLab.initProductInfoProvider(function (challenge, timeoutMs, callback) {
                m_signRequest[challenge] = callback;
                m_callFunction('cb.signedProductInfo', [challenge, timeoutMs],
				function (result) {
				    if (result != 0) {
				        m_signRequest[challenge] = null;
				    }
				},
				function (e) {
				    OnError(e);
				    m_deactivateFunction('cb');
				});
            });
        }
    };
    try {
        new ContentBlocker();
        if (window.dispatchEvent && typeof(window.CustomEvent) == "function") {
            window.dispatchEvent(new CustomEvent("cb.ready"));
        }
    }
    catch (e) {
        session.Log('ContentBlocker exception ' + (e.message || e));
    }
});
(function (ns) {
ns.UrlAdvisorBalloon = function (locales, infoUrl, termsUrl)
{
	var threatTypes = [
		{name:'Unknown', bit:-1},
		{name:locales["PhishingName"], bit:62},
		{name:locales["MalwareName"], bit:63}
	];
	var ratingIds = [
		{headerClass:'kl_header green', headerNode:locales["UrlAdvisorBalloonHeaderGood"], textNode : locales["UrlAdvisorSetLocalContentOnlineGood"], marker:'kl_marker allow'},
		{headerClass:'kl_header grey', headerNode:locales["UrlAdvisorBalloonHeaderSuspicious"], textNode:locales["UrlAdvisorSetLocalContentOnlineSuspicious"], marker:'kl_marker unknown'},
		{headerClass:'kl_header red', headerNode:locales["UrlAdvisorBalloonHeaderDanger"], textNode:locales["UrlAdvisorSetLocalContentOnlineDanger"], marker:'kl_marker disallow'}
	];
	var m_termsLink = '';
	var m_externalLink = '';
	function GetImageSrc(imageName)
	{
		return ns.GetResourceSrc('/ua/' + imageName);
	}
	function AddStyles()
	{
		ns.AddStyles([
			'.kisb * { position: relative; display:block; overflow-x:hidden; width: auto; margin:0; padding:0; font-family: Verdana; line-height: 150%; text-indent:0; border:0; box-sizing:content-box; color:#000000; letter-spacing: normal; ' + locales["RtlStyle"] + '}',
			'.kisb { z-index:2147483647; width: 280px; cursor:default; display:block;}',
			'.kisb .kl_header { padding:27px 26px 10px 26px;  }',
			'.kisb .kl_header.red { background-image:url(' + GetImageSrc('header_red.png') + ');}',
			'.kisb .kl_header.grey { background-image:url(' + GetImageSrc('header_grey.png') + ');}',
			'.kisb .kl_header.green { background-image:url(' + GetImageSrc('header_green.png') + ');}',
			'.kisb .kl_content { background: url(' + GetImageSrc('content.png') + ') repeat-y top left; padding:10px 26px 10px 26px;}',
			'.kisb .kl_content .block { width: 228px!important; }',
			'.kisb .kl_marker { margin-top: 5px; margin-bottom:10px; padding-top:2px; padding-left:25px; background-position-x: 0; background-position-y: 0; background-repeat: no-repeat; word-wrap: break-word;}',
			'.kisb .kl_marker.allow { background-image: url( ' + GetImageSrc('allow.png') + ')}',
			'.kisb .kl_marker.disallow { background-image: url(' + GetImageSrc('disallow.png') + ')}',
			'.kisb .kl_marker.unknown { background-image: url(' + GetImageSrc('unknown.png') + ')}',
			'.kisb .kl_tag { display:inline-block; background: left top url(' + GetImageSrc('tag.png') + ') no-repeat; padding-left:12px; padding-right:5px; margin-right:5px; margin-bottom:5px; font-size: 7.5pt;}',
			'.kisb .kl_external { margin-top: 15px; padding-top:2px; padding-left:20px; background-position-x: left; background-position-y: top; background-repeat: no-repeat;}',
			'.kisb .kl_external { background-image: url(' + GetImageSrc('external.png') + ')}',
			'.kisb .kl_footer { background: url(' + GetImageSrc('footer.png') + ') no-repeat bottom left; padding:6px 26px 22px 26px;}',
			'.kisb .kl_content * { font-size:8pt; }',
			'.kisb a { text-decoration: underline; display:inline-block; }',
			'.kisb a:hover { text-decoration: none; }',
			'.kisb a, .kisb a:link, .kisb a:hover, .kisb a:visited { color: #008ccc;}',
			'.kisb .kl_header { font-size:12pt; color: #ffffff;  }',
			'.kisb .kl_footer a { font-size:8pt; color: #4d4d4d; text-decoration:underline; }'
		]);
	}
	function FixBigInt(bigInt)
	{
		if (bigInt.low >= 10000000000)
		{
			var addedHigh = Math.floor(bigInt.low / 10000000000);
			bigInt.low = bigInt.low % 10000000000;
			bigInt.high += addedHigh;
		}
	}
	function BigIntToString(bigInt)
	{
		var result = '';
		if (bigInt.high)
		{
			result += bigInt.high;
			for (var i = bigInt.low.toString().length; i < 10; ++i)
				result += '0';
		}
		result += bigInt.low;
		return result;
	}
	function GetMask(bit)
	{
		if (bit < 0 || bit >= 64)
			return {high: 0, low: 0};
		var mask = {
			high: 0,
			low: Math.pow(2, Math.min(50, bit))
		};
		FixBigInt(mask);
		if (bit > 50)
		{
			mask.low *= Math.pow(2, bit - 50);
			mask.high *= Math.pow(2, bit - 50);
			FixBigInt(mask);
		}
		return mask;
	}
	function GetCategoriesMask(threats, categories)
	{
		var mask = {high: 0, low: 0};
		var bits = [];
		var i, count;
		if (threats)
			for (i = 0, count = threats.length; i < count; ++i)
				bits.push(threatTypes[threats[i]].bit);
		if (categories)
			for (i = 0, count = categories.length; i < count; ++i)
				bits.push(categories[i] - 1);
		for (i = 0, count = bits.length; i < count; ++i)
		{
			var addingMask = GetMask(bits[i]);
			mask.high += addingMask.high;
			mask.low += addingMask.low;
			FixBigInt(mask);
		}
		return BigIntToString(mask);
	}
	function ConvertThreat(threat)
	{
		return threatTypes[threat].name;
	}
	function ConvertCategory(category)
	{
		return locales["CAT_" + category];
	}
	function AddTagsFromList(parentElement, list, converter)
	{
		if (!list)
			return;
		for (var i = 0, count = list.length; i < count; ++i)
		{
			var spanElement = document.createElement('span');
			spanElement.className = 'kl_tag';
			spanElement.appendChild(document.createTextNode(converter(list[i])));
			parentElement.appendChild(spanElement);
		}
	}
	function AddVerdictTags(parentElement, verdict)
	{
		if ((!verdict.categories || verdict.categories.length == 0) && (!verdict.threats || verdict.threats.length == 0))
			return;
		parentElement.appendChild(document.createElement('br'));
		parentElement.appendChild(document.createElement('br'));
		parentElement.appendChild(document.createTextNode(locales["UrlAdvisorDescribeCategories"] + ": "));
		var divElement = parentElement.appendChild(document.createElement('div'));
		AddTagsFromList(divElement, verdict.categories, ConvertCategory);
		AddTagsFromList(divElement, verdict.threats, ConvertThreat);
	}
	function RemoveAllChilds(element)
	{
		while (element.childNodes.length > 0)
			element.removeChild(element.childNodes[0]);
	}
	function UpdateBalloon(verdict)
	{
		var headerElement = document.getElementById('balloon_header');
		var contentElement = document.getElementById('balloon_content');
		var markerElement = document.getElementById('balloon_marker');
		var tagElement = document.getElementById('balloon_tags');
		RemoveAllChilds(headerElement);
		RemoveAllChilds(contentElement);
		RemoveAllChilds(markerElement);
		RemoveAllChilds(tagElement);
		headerElement.className = ratingIds[verdict.rating-1].headerClass;
		headerElement.appendChild(document.createTextNode(ratingIds[verdict.rating-1].headerNode));
		contentElement
			.appendChild(document.createElement('b'))
			.appendChild(document.createTextNode(ratingIds[verdict.rating-1].textNode));
		markerElement.className = ratingIds[verdict.rating-1].marker;
		markerElement.appendChild(document.createTextNode(verdict.url));
		AddVerdictTags(tagElement, verdict);
		var additionalInfoLink = locales["UrlAdvisorAdditionalInfoLinkMask"] || infoUrl;
		if (additionalInfoLink.indexOf("&rpe") === -1)
		{
			additionalInfoLink += "&act-exturl=%VerdictUrl%&act-threat-cat=%VerdictRating%&act-content-cat=%ContentCategory%&rpe=1";
		}
		additionalInfoLink = additionalInfoLink.replace("%VerdictUrl%", encodeURIComponent(verdict.url));
		additionalInfoLink = additionalInfoLink.replace("%VerdictRating%", verdict.rating - 1);
		additionalInfoLink = additionalInfoLink.replace("%ContentCategory%", GetCategoriesMask(verdict.threats, verdict.categories));
		m_externalLink = additionalInfoLink;
		m_termsLink = locales["UrlAdvisorTermLink"] || termsUrl;
	}
	function CheckMouseOverBalloon(mouseArgs)
	{
		if (m_balloon)
		{
			var args = mouseArgs || window.event;
			var rect = m_balloon.getBoundingClientRect();
			if (args.clientX > rect.left &&
				args.clientX < rect.right &&
				args.clientY > rect.top &&
				args.clientY < rect.bottom)
			{
				return;
			}
			HideBalloon();
		}
	}
	function CreateHeaderDiv(balloonDiv)
	{
		var headerDiv = document.createElement('div');
		headerDiv.id = 'balloon_header';
		balloonDiv.appendChild(headerDiv);
	}
	function OnExternalLinkClick(evt)
	{
		try
		{
			ns.StopProcessingEvent(evt);
			ns.WindowOpen(m_externalLink);
		}
		catch (e)
		{
			session.Log("OnExternalLinkClick error: " + (e.message || e));
		}
	}
	function CreateContentDiv(balloonDiv)
	{
		var contentDiv = document.createElement('div');
		contentDiv.className = 'kl_content';
		var blockDiv = document.createElement('div');
		blockDiv.className = 'block';
		contentDiv.appendChild(blockDiv);
		var contentTypeDiv = document.createElement('div');
		contentTypeDiv.className = 'block';
		contentTypeDiv.id = 'balloon_content';
		blockDiv.appendChild(contentTypeDiv);
		var markerDiv = document.createElement('div');
		markerDiv.className = 'kl_marker allow';
		markerDiv.id = 'balloon_marker';
		blockDiv.appendChild(markerDiv);
		var tagsDiv = document.createElement('div');
		tagsDiv.id = 'balloon_tags';
		blockDiv.appendChild(tagsDiv);
		var infoLink = document.createElement('a');
		infoLink.href = '#';
		infoLink.id = 'balloon_external';
		infoLink.className = 'kl_external';
		infoLink.target = '_blank';
		infoLink.appendChild(document.createTextNode(locales["UrlAdvisorSetLocalContentGotoForInfo"]));
		ns.AddEventListener(infoLink, "click", OnExternalLinkClick);
		blockDiv.appendChild(infoLink);
		balloonDiv.appendChild(contentDiv);
	}
	function OnTermsLinkClick(evt)
	{
		try
		{
			ns.StopProcessingEvent(evt);
			ns.WindowOpen(m_termsLink);
		}
		catch (e)
		{
			session.Log("OnTermsLinkClick error: " + (e.message || e));
		}
	}
	function CreateFooterDiv(balloonDiv)
	{
		var footerDiv = document.createElement('div');
		footerDiv.className = 'kl_footer';
		footerDiv.id = 'balloon_footer';
		var termsLink = document.createElement('a');
		termsLink.id = 'balloon_terms';
		termsLink.target = '_blank';
		termsLink.appendChild(document.createTextNode(locales["UrlAdvisorSetLocalContentTermsOfUsage"]));
		termsLink.href = '#';		
		ns.AddEventListener(termsLink, "click", OnTermsLinkClick);
		footerDiv.appendChild(termsLink);
		balloonDiv.appendChild(footerDiv);
	}
	function CreateBalloon()
	{
		AddStyles();
		var balloonDiv = document.createElement('div');
		balloonDiv.className = 'kisb';
		balloonDiv.id = 'balloon_parent_div';
		balloonDiv.onmouseout = CheckMouseOverBalloon;
		CreateHeaderDiv(balloonDiv);
		CreateContentDiv(balloonDiv);
		CreateFooterDiv(balloonDiv);
		balloonDiv.style.visibility = 'hidden';
		document.body.appendChild(balloonDiv);
		return balloonDiv;
	}
	var m_balloon = null;
	function GetElementSize(element)
	{
		var rect = element.getBoundingClientRect();
		var width = rect.width ? rect.width : rect.right - rect.left;
		var height = rect.height ? rect.height : rect.bottom - rect.top;
		return {width: width, height: height};
	}
	this.ShowBalloon = function(clientX, clientY, verdict)
	{
		m_balloon = document.getElementById('balloon_parent_div');
		if (!m_balloon)
			m_balloon = CreateBalloon();
		UpdateBalloon(verdict);
		var clientWidth = ns.GetPageWidth();
		var balloonSize = GetElementSize(m_balloon);
		var halfWidth = balloonSize.width / 2;
		var x;
		if (halfWidth > clientX)
			x = 0;
		else if (halfWidth + clientX > clientWidth)
			x = clientWidth - balloonSize.width;
		else
			x = clientX - halfWidth;
		var clientHeight = ns.GetPageHeight();
		var y = (clientY + balloonSize.height > clientHeight) ? clientY - balloonSize.height : clientY;
		if (y < 0)
			y = 0;
		var scroll = ns.GetPageScroll();
		y += scroll.top;
		x += scroll.left;
		m_balloon.style.position = 'absolute';
		m_balloon.style.top = Math.round(y).toString() + 'px';
		m_balloon.style.left = Math.round(x).toString() + 'px';
		m_balloon.style.visibility = 'visible';
	}
	function HideBalloon()
	{
		if (m_balloon)
			m_balloon.style.visibility = 'hidden';
	}
};
}) (KasperskyLab || {});
var CheckedAtributeName = 'kl_' + KasperskyLab.GetCurrentTime();
var IconName = 'kl_' + KasperskyLab.GetCurrentTime();
KasperskyLab.AddRunner("ua", function (ns, session, settings, locales) {
var UrlAdvisor = function()
{
	var m_urlAdvisorBalloon = new ns.UrlAdvisorBalloon(locales, settings.infoUrl, settings.termsUrl);	
	var m_settingsEnabled = settings.enable;
	var m_enabled = m_settingsEnabled && (settings.state === 'Enabled');
	var m_checkOnlySearchResults = settings.mode;
	var m_postponeCategorizeStarted = false;
	var m_urlCategorizeRequestTime = 0;
	var m_observer;
	var m_state = settings.state,
		m_callFunction;
	session.InitializePlugin(function(activatePlugin, registerMethod, callFunction){
		m_callFunction = callFunction;
		activatePlugin('ua', OnPing, OnError);
		registerMethod('ua.verdict', SetVerdict);
		registerMethod('ua.settings', SetSettings);
		registerMethod('ua.state', SetState);
	});
	Run();
	function OnPing(currentTime)
	{
		var timeFormRequest = (currentTime >= m_urlCategorizeRequestTime) ? currentTime - m_urlCategorizeRequestTime : 0;
		return timeFormRequest <= 10000 ? 500 : ns.MaxRequestDelay;
	}
	function OnError(e) {
	    session.Log('ERR UA - ' + (e.message || e));
	}
	function GetHref(link)
	{
		try	{ return link.href;	} catch(e){}
		try	{ return link.getAttribute('href');	} catch(e){}
		return '';
	}
	function IsLinkHighlighted(linkElement)
	{
		var nextElement = linkElement.nextSibling;
		return nextElement !== null && nextElement.name == IconName;
	}
	function GetLinkIcon(linkElement)
	{
		if (!IsLinkHighlighted(linkElement))
		{
			var icon = document.createElement('img');
			icon.name = IconName;
			icon.width = 12;
			icon.height = 12;
			icon.style.cssText="width:12px;height:12px";
			linkElement.parentNode.insertBefore(icon, linkElement.nextSibling);
		}
		return linkElement.nextSibling;
	}
	function UpdateIconImage(icon, verdict)
	{
		if (verdict.rating === 1)
		{
			icon.src = ns.GetResourceSrc('/ua/UrlAdvisorGoodImage.png');
			icon['kis_status'] = 16;
		}
		else if (verdict.rating === 2)
		{
			icon.src = ns.GetResourceSrc('/ua/UrlAdvisorSuspiciousImage.png');
			icon['kis_status'] = 8;
		}
		else if (verdict.rating === 3)
		{
			icon.src = ns.GetResourceSrc('/ua/UrlAdvisorDangerImage.png');
			icon['kis_status'] = 4;
		}
	}
	function SubscribeIconOnMouseEvents(icon, verdict)
	{
		var balloonTimerId = 0;
		icon.onmouseout = function()
		{
			if (balloonTimerId)
			{
				window.clearTimeout(balloonTimerId);
				balloonTimerId = 0;
			}
		};
		icon.onmouseover = function(mouseArgs)
		{
			if (!balloonTimerId)
			{
				var args = mouseArgs || window.event;
				balloonTimerId = window.setTimeout(function(clientX, clientY)
					{
						return function()
						{
							m_urlAdvisorBalloon.ShowBalloon(clientX, clientY, verdict);
						}
					}(args.clientX, args.clientY),
					300);
			}
		};
	}
	function SetVerdict(argumentsList)
	{
		for (var currentVerdict = 0; currentVerdict < argumentsList.length; currentVerdict++)
		{
			var verdict = ns.JSONParse(argumentsList[currentVerdict]);
			for (var currentLinkIndex = 0; currentLinkIndex < document.links.length; currentLinkIndex++)
			{
				var linkElement = document.links[currentLinkIndex];
				if (verdict.url === GetHref(linkElement) && (!m_checkOnlySearchResults || ns.IsLinkSearchResult(linkElement)))
				{
					var icon = GetLinkIcon(linkElement);
					if (!!icon)
					{
						UpdateIconImage(icon, verdict);
						SubscribeIconOnMouseEvents(icon, verdict);
					}
				}
			}
		}
	}
	function SetSettingsImpl(argumentList)
	{
		if (argumentList.length > 0)
		{
			m_settingsEnabled = (argumentList[0] != '0');
			m_enabled = m_settingsEnabled && (m_state == 'Enabled');
	 	}
		if (!m_enabled)
			return;
		m_checkOnlySearchResults = !!(argumentList.length > 1 && argumentList[1] == 1);
	}
	function ClearImages()
	{
		var images = document.getElementsByName(IconName);
		while (images.length > 0)
			images[0].parentNode.removeChild(images[0]);
	}
	function ClearAttributes()
	{
		for (var i = 0; i < document.links.length; ++i)
			if (document.links[i][CheckedAtributeName])
				document.links[i][CheckedAtributeName] = false;
	}
	function SetSettings(argumentList)
	{
		ClearImages();
		ClearAttributes();
		SetSettingsImpl(argumentList);
		CategorizeUrl();
	}
	function SetState(argumentList)
	{
		if (argumentList.length > 0)
		{
			ClearImages();
			ClearAttributes();
			m_state = argumentList[0];
			m_enabled = m_settingsEnabled && (m_state == 'Enabled');
			CategorizeUrl();
		}
	}
	function IsNeedCategorizeLink(linkElement)
	{
		try
		{
			return !linkElement.isContentEditable && !!linkElement.parentNode && !IsLinkHighlighted(linkElement) && !linkElement[CheckedAtributeName] &&
				(!m_checkOnlySearchResults || ns.IsLinkSearchResult(linkElement)) &&
				linkElement.id !== 'balloon_external' &&
				linkElement.id !== 'balloon_terms';
		}
		catch(e)
		{
			session.Log('check link exception: ' + (e.message || e));
			return false;
		}
	}
	function ProcessDomChange()
	{
		try
		{
			if (!m_postponeCategorizeStarted)
			{
				setTimeout(CategorizeUrl, 500);
				m_postponeCategorizeStarted = true;
			}
			var images = document.getElementsByName(IconName);
			for (var i = 0; i < images.length; ++i)
			{
				var linkNode = images[i].previousSibling;
				if (!linkNode || !linkNode.nodeName || linkNode.nodeName.toLowerCase() !== "a")
				{
					var imageNode = images[i];
					imageNode.parentNode.removeChild(imageNode);
				}
			}
		}
		catch (e)
		{
			session.Log("ua dom change handling exception: " + (e.message || e));
		}
	}
	function CategorizeUrl()
	{
		try
		{
			if (!m_enabled)
			{
				session.Log("skip categorize links because UA disabled");
				return;
			}
			m_postponeCategorizeStarted = false;
			var linksForCategorize = [];
			for (var i = 0; i < document.links.length; i++)
			{
				var link = document.links[i];
				if (IsNeedCategorizeLink(link))
				{
					link[CheckedAtributeName] = true; 
					var href = GetHref(link);
					if (!!href) {
						linksForCategorize.push(href); 
					} else {
						ns.Log("access to href blocked by browser"); 
					}
				}
			}
			if (linksForCategorize.length)
			{
				m_callFunction("ua.categorize", linksForCategorize, null, OnError);
				m_urlCategorizeRequestTime = ns.GetCurrentTime();
			}
			else
			{
				session.Log("UA not found links for categorization");
			}
		}
		catch (e)
		{
			session.Log("ua categorize exception: " + (e.message || e));
		}
	}
	function Run()
	{
		CategorizeUrl();
		m_observer = ns.GetDomChangeObserver("a");
		m_observer.Start(ProcessDomChange);
		ns.AddEventListener(window, "unload", 
			function()
			{
				if (m_observer)
					m_observer.Stop();
			});
	};
};
var instance = null;
function RunUrlAdvisor() {
	try
	{
		if (!instance) {
			instance = new UrlAdvisor();
		}
	}
	catch(e)
	{
		session.Log('UrlAdvisor exception ' + (e.message || e));
	}
}
if (document.readyState === "loading")
{
	if (document.addEventListener)
	{
		document.addEventListener("DOMContentLoaded", RunUrlAdvisor, true);
	}
	else if (document.all)
	{
		document.attachEvent("onreadystatechange", function()
			{
				if (document.readyState !== "loading")
					RunUrlAdvisor();
			});
	}
}
else
{
	RunUrlAdvisor();
}
});

 })();

 })();
