Overview

URLhttp://soccer-free-kick.blogspot.com/2012/11/sporting-kc-vs-houston-dynamo-live.html
IP173.194.69.132
ASNAS15169 Google Inc.
Location United States
Report completed2012-11-07 21:04:59 CET
StatusLoading report..
urlQuery Alerts No alerts detected


Settings

UserAgentMozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Referer
Adobe Reader8.0
Java1.6.0_26


Intrusion Detection Systems

Suricata /w Emerging Threats Pro
Timestamp Source IP Destination IP Severity Alert
2012-11-07 21:04:22 173.194.69.157 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
2012-11-07 21:04:28 69.46.36.6 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 173.194.69.132

Date Alerts / IDS URL IP
2013-02-13 19:05:291 / 1http://webcache.googleusercontent.com/search?q=cache:kyqNTVC1U1kJ:batsch-nass.de/+bat (...)173.194.69.132
2013-02-13 09:08:200 / 2http://homolesbino.blogspot.com/173.194.69.132
2013-02-13 08:33:112 / 12http://hotcpm63.blogspot.no/173.194.69.132
2013-02-13 08:32:040 / 2http://metaltothebones.blogspot.ca/2009/12/king-diamond-abigail-1987-1997.html173.194.69.132
2013-02-13 01:15:580 / 1http://adisetyawan37.blogspot.com/173.194.69.132
2013-02-13 00:44:300 / 1http://fiat-850-abarth-tc-news.blogspot.ca/2011/09/ariana-grande-as-cat-valentine.htm (...)173.194.69.132

Last 6 reports on ASN: AS15169 Google Inc.

Date Alerts / IDS URL IP
2013-02-26 22:15:060 / 0http://www.youtube.com/watch?v=JO3ecvYXrw8&feature=youtu.be173.194.32.1
2013-02-26 22:14:360 / 0http://74.125.137.12174.125.137.121
2013-02-26 22:10:460 / 0http://3.bp.blogspot.com/-bYr0U0fsRSA/T4zJ3wtUZgI/AAAAAAAAAKM/JpDm-01fMsU/s1600/kitchen-island- (...)173.194.32.0
2013-02-26 21:54:360 / 7http://malwaremustdie.blogspot.com173.194.32.11
2013-02-26 21:32:370 / 1http://www.youtube.com/watch?v=0f-rRTZN7Hk173.194.32.9
2013-02-26 21:11:380 / 1http://www.youtube.com/watch?v=MGkVjzaK76g173.194.32.5

Last 6 reports on domain: soccer-free-kick.blogspot.com

Date Alerts / IDS URL IP
2013-01-02 18:11:520 / 1http://soccer-free-kick.blogspot.com/2013/01/newcastle-united-vs-everton-live-epl.html173.194.32.11
2013-01-02 17:59:060 / 1http://soccer-free-kick.blogspot.com/2013/01/watch-liverpool-vs-sunderland-live-epl_2.html173.194.32.12
2013-01-02 17:49:210 / 1http://soccer-free-kick.blogspot.com/2013/01/chelsea-vs-queens-park-rangers-epl.html173.194.32.11
2013-01-01 18:45:050 / 1http://soccer-free-kick.blogspot.com/2013/01/burgess-hill-town-vs-worthing-live.html173.194.32.10
2013-01-01 16:55:160 / 2http://soccer-free-kick.blogspot.com/2013/01/watch-india-vs-pakistan-2nd-odi-live.html173.194.32.10
2013-01-01 12:55:310 / 1http://soccer-free-kick.blogspot.com/2013/01/west-bromwich-albion-vs-fulham-live.html173.194.32.11



JavaScript

Executed Scripts (96)


Executed Evals (58)

#1 JavaScript::Eval (size: 221775, repeated: 1)

(function() {
    try {
        var appNamespace = "$ice";
        if (window[appNamespace]) {
            if (window[appNamespace].logger && window[appNamespace].logger.error) {
                window[appNamespace].logger.error("Global namespace already defined. Aborting.", this)
            }
            return
        }
        var what = function(obj) {
                return typeof obj == "undefined" || obj === null ? "undefined" : ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase()
            };
        var $extend = function(source) {
                if (this.$root.what(source) != "object") {
                    this.$root.logger.warn("source is not an object", this);
                    return
                }
                var key;
                for (key in source) {
                    this[key] = source[key]
                }
                return this
            };
        var $fn = function(key, fn) {
                if (!this || this == window) {
                    return
                }
                if (this.$root.what(fn) != "function") {
                    this.$root.logger.warn(key + " is not a function", this);
                    return
                }
                this[key] = fn;
                fn.$id = key;
                fn.$parent = this;
                fn.$root = this.$root
            };
        var $create = function(id, source, extension, bindable) {
                var wsource = what(source),
                    parent = this || window,
                    node, key;
                if (!/object|function/.test(wsource)) {
                    return null
                }
                if (parent[id]) {
                    node = parent[id]
                } else {
                    var maker = function() {
                            var node = function() {};
                            node.prototype.$id = id;
                            node.prototype.$parent = parent;
                            node.prototype.$root = parent == window ? null : parent.$root;
                            node.prototype.$create = $create;
                            node.prototype.$extend = $extend;
                            node.prototype.$fn = $fn;
                            if (bindable && parent != window && parent.$root.event) {
                                node.prototype.bind = parent.$root.event.bind;
                                node.prototype.unbind = parent.$root.event.unbind;
                                node.prototype.fire = parent.$root.event.fire
                            }
                            return node
                        };
                    node = parent[id] = new(new maker())
                }
                if (what(extension) == "object") {
                    node.$extend(extension)
                }
                for (key in source) {
                    switch (what(source[key])) {
                    case "function":
                        node.$fn(key, source[key]);
                        break;
                    case "object":
                        node.$create(key, source[key]);
                        break;
                    default:
                        node[key] = source[key]
                    }
                }
                return node
            };
        var NodesArray = function() {
                this.nodes = []
            };
        NodesArray.prototype = {
            toString: function(separator) {
                var result = [],
                    i, len;
                for (i = 0, len = this.nodes.length; i < len; i++) {
                    result.unshift(this.nodes[i].$id)
                }
                return result.join(separator || ".")
            }
        };
        var $root = $create(appNamespace, {}, null, false);
        $root.what = what;
        $root.$root = $root;
        $root.$extend({
            NodesArray: NodesArray,
            $fn: $fn
        });
        $root.$create("plugins", {}, {}, true);
        var versionFile = "ice";
        var event = $root.$create("event", {
            bind: function(o) {
                var rt = this.$root,
                    ev = rt.event,
                    ls, key, clone, prop, err = null;
                if (!o.event) {
                    err = ev.msgs.me
                } else {
                    if (!o.listener) {
                        err = ev.msgs.ml
                    }
                }
                if (err) {
                    rt.logger.error(err, this);
                    return false
                }
                o.$root = rt;
                if (!ev._listeners[o.event]) {
                    ev._listeners[o.event] = []
                }
                ls = ev._listeners[o.event];
                var listenerType = rt.what(o.listener);
                if (listenerType == "function") {
                    ls[ls.length] = o
                } else {
                    if (listenerType == "object") {
                        for (key in o.listener) {
                            if (this != ev) {
                                this.$fn(key, o.listener[key])
                            }
                            clone = {};
                            for (prop in o) {
                                clone[prop] = o[prop]
                            }
                            clone.listener = o.listener[key];
                            ls[ls.length] = clone
                        }
                    }
                }
                return true
            },
            unbind: function(event, listener) {
                var rt = this.$root,
                    ev = rt.event,
                    i, len, ls = ev._listeners[event];
                if (rt.what(ls) != "array") {
                    return false
                }
                if (!listener) {
                    delete ev._listeners[event]
                } else {
                    for (i = 0, len = ls.length; i < len; i++) {
                        if (ls[i].listener === listener) {
                            ls.splice(i--, 1)
                        }
                    }
                }
                return true
            },
            fire: function(event, data, delay) {
                var rt = this.$root,
                    ls = rt.event._listeners[event],
                    func, context, o, hasData = rt.what(data) != "undefined",
                    time, msg;
                if (!event || rt.event.disabled || (ls && ls.disabled) || rt.what(ls) != "array") {
                    return false
                }
                for (var i = 0, len = ls.length; i < len; i++) {
                    o = ls[i];
                    if (hasData) {
                        o.data = data
                    }
                    func = o.listener;
                    context = func.$parent || window;
                    if (context == window) {
                        rt.logger.error("Probable Error: Context is window object. event: " + event, this.fire)
                    }
                    if (rt.event.log) {
                        msg = ['Fire "', func.$id || "Anonymous", '" on "', event, '".', data && data.hookId ? " hookId:" + data.hookId : ""].join("")
                    }
                    time = delay && rt.what(delay) == "number" ? delay : o.delay;
                    if (time) {
                        return setTimeout((function() {
                            var clone = rt.utils.object.clone(o);
                            return function() {
                                if (msg) {
                                    rt.logger.log(msg, func)
                                }
                                func.call(context, clone)
                            }
                        }()), time)
                    } else {
                        if (msg) {
                            rt.logger.log(msg, func)
                        }
                        func.call(context, o)
                    }
                }
            },
            repeat: function(event, interval, data, delay) {
                var rt = this.$root,
                    ls = rt.event._listeners[event],
                    func, context, o, hasData = rt.what(data) != "undefined",
                    msg, wrapper;
                if (!event || rt.event.disabled || (ls && ls.disabled) || rt.what(ls) != "array" || !interval || rt.what(interval) != "number") {
                    return false
                }
                if (!delay || rt.what(delay) != "number") {
                    delay = null
                }
                for (var i = 0, len = ls.length; i < len; i++) {
                    o = ls[i];
                    if (o.repeat || o.delay) {
                        return
                    }
                    if (hasData) {
                        o.data = data
                    }
                    func = o.listener;
                    context = func.$parent || window;
                    if (rt.event.log) {
                        msg = ['Repeat "', func.$id || "Anonymous", '" on "', event, '".'].join("")
                    }
                    o.interval = interval;
                    o.counter = 0;
                    wrapper = function() {
                        if (msg && !o.counter) {
                            rt.logger.log(msg, func)
                        }
                        o.counter++;
                        func.call(context, o)
                    };
                    if (delay) {
                        o.delay = setTimeout(function() {
                            o.repeat = setInterval(wrapper, interval)
                        }, delay)
                    } else {
                        o.repeat = setInterval(wrapper, interval)
                    }
                }
            },
            stop: function(event) {
                var rt = this.$root,
                    ls = rt.event._listeners[event],
                    func, o;
                if (!event || !ls) {
                    return false
                }
                for (var i = 0, len = ls.length; i < len; i++) {
                    o = ls[i];
                    clearInterval(o.repeat);
                    clearTimeout(o.delay);
                    delete o.repeat;
                    delete o.delay;
                    func = o.listener;
                    if (rt.event.log) {
                        rt.logger.log(['Stop "', func.$id || "Anonymous", '" on "', event, '" after ', o.counter, " repetitions."].join(""), func)
                    }
                    o.counter = 0
                }
            },
            disable: function(event) {
                this.$root.event.able(event, true)
            },
            enable: function(event) {
                this.$root.event.able(event, false)
            },
            able: function(event, disabled) {
                var rt = this.$root,
                    i;
                if (event) {
                    if (rt.what(event) == "string") {
                        event = [event]
                    }
                    for (i = 0; i < event.length; i++) {
                        rt.event._listeners[event].disabled = disabled
                    }
                } else {
                    rt.event.disabled = disabled
                }
            }
        }, {
            _listeners: {},
            log: true,
            msgs: {
                me: "Error: Missing event.",
                ml: "Error: Misssing listener."
            }
        }, false);
        event.$create("dom", {
            bind: function(element, o) {
                var rt = this.$root,
                    nt = rt.settings.nodeTypes,
                    key, clone, prop, err = null,
                    func;

                function isAChildOf(parent, child) {
                    if (parent === child) {
                        return false
                    }
                    while (child && child !== parent) {
                        child = child.parentNode
                    }
                    return child === parent
                }
                if (!element || !(element.nodeType == nt.ELEMENT || element.nodeType == nt.DOCUMENT || element == window)) {
                    err = this.msgs.mbe
                } else {
                    if (!o.event) {
                        err = this.$parent.msgs.me
                    } else {
                        if (!o.listener) {
                            err = this.$parent.msgs.ml
                        }
                    }
                }
                if (err) {
                    rt.logger.error(err, this);
                    return false
                }
                if (!element.$iceId) {
                    element.$iceId = ++this.elementBinder
                }
                o.element = element;
                o.$root = rt;
                if (rt.what(o.listener) == "function") {
                    o.listener = {
                        a: o.listener
                    }
                } else {
                    if (rt.what(o.listener) != "object") {
                        return
                    }
                }
                for (key in o.listener) {
                    clone = {};
                    for (prop in o) {
                        clone[prop] = o[prop]
                    }
                    clone.listener = o.listener[key];
                    if (element.addEventListener) {
                        if (/mouseenter|mouseleave/.test(clone.event)) {
                            clone.simEvent = clone.event;
                            clone.event = clone.event.replace(/enter/, "over").replace(/leave/, "out")
                        }
                    }
                    func = (function() {
                        var reclone = rt.utils.object.clone(clone);
                        return function(domEvt) {
                            if (!domEvt) {
                                domEvt = window.event
                            }
                            if (/mouseenter|mouseleave/.test(reclone.simEvent) && domEvt.relatedTarget && this == domEvt.relatedTarget || (isAChildOf(this, domEvt.relatedTarget))) {
                                return
                            }
                            reclone.domEvent = domEvt;
                            rt.event.dom.fire(reclone)
                        }
                    })();
                    if (element.addEventListener) {
                        element.addEventListener(clone.event, func, false)
                    } else {
                        if (element.attachEvent) {
                            element.attachEvent("on" + clone.event, func)
                        }
                    }
                    var eID = element.$iceId;
                    var eL = this._listeners;
                    if (!eL[eID]) {
                        eL[eID] = {}
                    }
                    if (!eL[eID][clone.event]) {
                        eL[eID][clone.event] = []
                    }
                    rt.utils.array.push(eL[eID][clone.event], {
                        listener: func,
                        original: clone.listener
                    })
                }
                return true
            },
            unbind: function(element, event, listener) {
                var rt = this.$root,
                    nt = rt.settings.nodeTypes,
                    i;
                if (!element || !element.$iceId || !(element.nodeType == nt.ELEMENT || element.nodeType == nt.DOCUMENT || element == window)) {
                    rt.logger.error(this.msgs.mbe, this);
                    return
                }
                var eID = element.$iceId;
                var ls = rt.event.dom._listeners[eID];
                if (!ls || !ls[event]) {
                    return
                }
                for (i = 0; i < ls[event].length; i++) {
                    if (ls[event][i].original == listener) {
                        if (element.removeEventListener) {
                            element.removeEventListener(event, ls[event][i].listener, false)
                        } else {
                            if (element.detachEvent) {
                                element.detachEvent("on" + event, ls[event][i].listener)
                            }
                        }
                        ls[event].splice(--i, 1)
                    }
                }
                if (ls[event].length == 0) {
                    delete ls[event]
                }
                return true
            },
            fire: function(o) {
                var rt = this.$root,
                    func = o.listener,
                    context = func.$parent || window,
                    msg;
                if (rt.event.log) {
                    msg = ['Fire "', func.$id || "Anonymous", '" on "', o.event, '".', o.data && o.data.hookId ? " hookId:" + o.data.hookId : ""].join("")
                }
                if (o.delay && rt.what(o.delay) == "number") {
                    setTimeout(function() {
                        if (msg) {
                            rt.logger.log(msg, func)
                        }
                        func.call(context, o)
                    }, o.delay)
                } else {
                    if (msg) {
                        rt.logger.log(msg, func)
                    }
                    func.call(context, o)
                }
            }
        }, {
            _listeners: {},
            elementBinder: 0,
            msgs: {
                mbe: "Error: Missing or bad element."
            }
        }, false);
        $root.$create("logger", {
            log: function(message, context, type) {
                if (!type) {
                    type = "log"
                }
                this.history[this.history.length] = {
                    message: message,
                    type: type,
                    time: (new Date()).getTime(),
                    context: context
                };
                if (this.output == "console" && this.$root.what(window.console) != "undefined") {
                    console[type](message, this.descent(context))
                }
            },
            info: function(message, context) {
                this.log(message, context, "info")
            },
            warn: function(message, context) {
                this.log(message, context, "warn")
            },
            error: function(message, context, kill) {
                this.log(message, context, "error");
                if (kill) {
                    this.$root.event.disable()
                }
                if (this.errorReporting >= Math.ceil(Math.random() * 100)) {
                    this.$root.event.fire("sendErrorReport", {
                        msg: message
                    })
                }
            },
            descent: function(context) {
                var result = new this.$root.NodesArray;
                while (context && context.$root && context != window) {
                    result.nodes[result.nodes.length] = context;
                    context = context.$parent
                }
                return result
            }
        }, {
            history: [],
            output: "none",
            errorReporting: -1
        });
        $root.$create("browser", new function() {
            var ua = this.ua = navigator.userAgent;
            var uac = function(str) {
                    return ua.indexOf(str) != -1
                };
            var _found = false;
            var ver = function(browser) {
                    if (_found) {
                        return false
                    }
                    var match = ua.match(new RegExp(browser + ".?([0-9][0-9\\.]+)"));
                    if (match != null) {
                        _found = true;
                        return match[1]
                    }
                    return false
                };
            this.IE = ver("MSIE");
            if (this.IE == "7.0" && $root.what(Array.isArray) == "function") {
                this.IE = "9.0"
            }
            this.Firefox = ver("Firefox");
            this.Chrome = ver("Chrome");
            this.Safari = this.Chrome ? false : uac("Safari") && ver("Version");
            this.MobileSafari = this.Safari && uac("Mobile") ? this.Safari : false;
            this.Opera = uac("Opera") && uac("Presto") ? ver("Version") || ver("Opera") : false;
            this.OperaMini = this.Opera && uac("Opera Mini");
            this.ucweb = ver("UCWEB") || (uac("UCWEB") ? ver("Browser") : false);
            _found = false;
            this.AppleWebKit = ver("AppleWebKit");
            this.Gecko = ver("Gecko");
            this.Mozilla = !this.Gecko && !this.AppleWebKit && uac("Mozilla/");
            _found = false;
            this.WindowsMobile = uac("Windows Phone OS");
            this.Windows = uac("Windows ");
            this.Linux = !this.Windows && (uac("Linux ") || uac("Linux;"));
            this.Mac = !this.Windows && !this.Linux && uac("Mac ");
            this.iPhone = !this.Windows && !this.Linux && uac("iPhone");
            this.iPad = !this.Windows && !this.Linux && uac("iPad");
            this.Android = (!this.Windows && uac("Android")) ? ver("Android") : false;
            this.Nokia = uac("Nokia");
            this.getOS = function() {
                var os = ["WindowsMobile", "Windows", "iPhone", "Mac", "iPad", "Android", "Nokia", "Linux"],
                    i, leni = os.length;
                for (i = 0; i < leni; i++) {
                    if (this[os[i]]) {
                        return os[i]
                    }
                }
                return "unknown"
            };
            this.isMobile = function() {
                return !!(this.iPhone || this.iPad || this.Android || this.WindowsMobile || this.OperaMini || this.ucweb)
            };
            this.getName = function() {
                var names = ["IE", "Firefox", "Chrome", "MobileSafari", "Safari", "Opera", "ucweb", "Gecko", "AppleWebKit", "Mozilla"];
                for (var i = 0, leni = names.length; i < leni; i++) {
                    if (this[names[i]]) {
                        return names[i]
                    }
                }
                return "unknown"
            };
            this.getVersion = function(asFloat) {
                var ver = this.IE || this.Firefox || this.Chrome || this.MobileSafari || this.Safari || this.Opera || this.AppleWebKit || this.ucweb || "unknown";
                return asFloat ? parseFloat(ver) || -1 : ver
            };
            this.toString = this.getValue = function() {
                return [this.getName(), this.getVersion(), this.getOS()].join(" ")
            }
        });
        var utils = $root.$create("utils", {
            VeST: function(template, data, name) {
                var fn, v = this.VeST,
                    c;
                if (!(c = v.cache)) {
                    c = v.cache = {};
                    v.encQ = function(m) {
                        return m.split("'").join("\t")
                    };
                    v.decQ = function(m) {
                        return m.split("\t").join("'")
                    }
                }
                if (name && c[name]) {
                    fn = c[name]
                } else {
                    template = template.replace(/<%\-\-[\s\S]*?\-\-%>/g, "");
                    var tjs = template.replace(/[\r\t\n]/g, " ").replace(/<%.*?%>/g, v.encQ).replace(/'/g, "\\'").replace(/<%.*?%>/g, v.decQ).replace(/<%=(.*?)%>/g, "',$1,'").split("<%").join("');").split("%>").join("p.push('");
                    tjs = ["var p=[];with(obj||{}){p.push('", tjs, "');}return p.join('');"].join("");
                    fn = new Function("obj", tjs);
                    if (name) {
                        c[name] = fn
                    }
                }
                return fn(data)
            },
            doRectsOverlap: function(r1, r2) {
                var temp;
                if (r2[0] < r1[0]) {
                    temp = r1;
                    r1 = r2;
                    r2 = temp
                }
                if (r1[2] < r2[0] || r1[0] > r2[2]) {
                    return false
                }
                if (r2[1] < r1[1]) {
                    temp = r1;
                    r1 = r2;
                    r2 = temp
                }
                if (r1[3] < r2[1] || r1[1] > r2[3]) {
                    return false
                }
                return true
            }
        });
        utils.$create("number", {
            get: function(counter) {
                return this.counters[counter]
            },
            next: function(counter, start) {
                if (this.$root.what(this.counters[counter]) == "undefined") {
                    this.counters[counter] = this.$root.what(start) == "number" ? start : 0
                } else {
                    this.counters[counter]++
                }
                return this.counters[counter]
            }
        }, {
            counters: {}
        });
        utils.$create("string", {
            capitalize: function(str) {
                var arr = str.split(/\s+/);
                if (arr.length > 2) {
                    arr[0] = arr[0].charAt(0).toUpperCase() + arr[0].slice(1)
                } else {
                    for (var i = 0, len = arr.length; i < len; ++i) {
                        arr[i] = arr[i].charAt(0).toUpperCase() + arr[i].slice(1)
                    }
                }
                return arr.join(" ")
            },
            qw: function(str) {
                return this.trim(str).split(/\s+/)
            },
            toObject: function(str, key, decode) {
                if (str.indexOf("=") == -1) {
                    return null
                }
                if (str.indexOf("?") == 0) {
                    str = str.substring(1)
                }
                var obj = {},
                    pairs = str.split("&"),
                    kv;
                for (var i = 0, leni = pairs.length; i < leni; i++) {
                    kv = pairs[i].split("=");
                    if (kv.length != 2) {
                        continue
                    }
                    if (decode) {
                        kv[0] = decodeURIComponent(kv[0]);
                        kv[1] = decodeURIComponent(kv[1])
                    }
                    obj[kv[0]] = kv[1]
                }
                return this.$root.what(key) != "undefined" ? obj[key] : obj
            },
            trim: function(str) {
                return str.replace(/^\s+|\s+$/g, "")
            },
            truncate: function(str, len, suffix) {
                return str.length <= len ? str : str.substring(0, len) + (suffix || "")
            },
            truncateToChar: function(str, len, sep, suffix) {
                var str2 = str.length <= len ? str : str.substring(0, len);
                if (str2.length < str.length) {
                    str2 = str2.substr(0, str2.lastIndexOf(sep)) + (suffix || "")
                }
                return str2
            }
        });
        utils.$create("array", {
            clone: function(origin, deep) {
                var clone = [],
                    i, leni, rt = this.$root;
                for (i = 0, leni = origin.length; i < leni; i++) {
                    if (deep && /object|array/.test(rt.what(origin[i])) && (!this.cloneDepth || this.cloneDepth < 10)) {
                        if (!this.cloneDepth) {
                            this.cloneDepth = 0
                        }
                        this.cloneDepth++;
                        clone[i] = rt.what(origin[i]) == "object" ? this.$parent.object.clone(origin[i], deep) : this.clone(origin[i], deep)
                    } else {
                        clone[i] = origin[i]
                    }
                }
                delete this.cloneDepth;
                return clone
            },
            concat: function() {
                var arr = [];
                for (var i = 0, leni = arguments.length; i < leni; i++) {
                    for (var j = 0, lenj = arguments[i].length; j < lenj; j++) {
                        arr[arr.length] = arguments[i][j]
                    }
                }
                return arr
            },
            discard: function(arr, item) {
                for (var i = arr.length - 1; i >= 0; i--) {
                    if (arr[i] == item) {
                        arr.splice(i, 1)
                    }
                }
                return arr
            },
            indexOf: function(arr, item) {
                for (var i = 0, leni = arr.length; i < leni; i++) {
                    if (arr[i] == item) {
                        return i
                    }
                }
                return -1
            },
            insertionSort: function(arr, prop, asc) {
                var i, j, value;
                for (i = 1; i < arr.length; i++) {
                    value = arr[i];
                    j = i - 1;
                    while (j >= 0 && (asc ? arr[j][prop] > value[prop] : arr[j][prop] < value[prop])) {
                        arr[j + 1] = arr[j];
                        j--
                    }
                    arr[j + 1] = value
                }
            },
            map: function(arr, mapper) {
                for (var i = 0, leni = arr.length, res = []; i < leni; i++) {
                    res[i] = mapper(arr[i])
                }
                return res
            },
            push: function() {
                if (arguments.length < 2) {
                    return
                }
                var arr = arguments[0];
                for (var i = 1; i < arguments.length; i++) {
                    arr[arr.length] = arguments[i]
                }
            },
            range: function(start, end) {
                var arr = [],
                    i, what = this.$root.what;
                if (what(start) == "number" && what(end) == "number" && start <= end) {
                    for (i = start; i <= end; i++) {
                        arr[arr.length] = i
                    }
                }
                return arr
            },
            sum: function(arr) {
                var sum = 0,
                    i, len, what = this.$root.what;
                for (i = 0, len = arr.length; i < len; i++) {
                    if (what(arr[i]) == "number") {
                        sum += arr[i]
                    }
                }
                return sum
            },
            toObject: function(arr, object, value) {
                if (!arr) {
                    return object
                }
                var what = this.$root.what;
                if (what(arr) != "array") {
                    arr = [arr]
                }
                if (!object) {
                    object = {}
                }
                var item, key, val;
                for (var i = 0, leni = arr.length; i < leni; i++) {
                    item = arr[i];
                    key = what(item) == "string" ? item : item != null && what(item.toString) == "function" ? item.toString() : null;
                    if (key) {
                        val = (what(value) == "undefined") ? key : (what(value) == "function") ? value(key) : value;
                        object[key] = val
                    }
                }
                return object
            },
            uniq: function(arr) {
                var i, j;
                for (i = 0; i < arr.length - 1; i++) {
                    for (j = i + 1; j < arr.length; j++) {
                        if (arr[i] === arr[j]) {
                            arr.splice(j, 1);
                            j--
                        }
                    }
                }
                return arr
            }
        });
        utils.$create("object", {
            clean: function(obj) {
                var res = {},
                    key, val, what = this.$root.what;
                for (key in obj) {
                    val = obj[key];
                    if (what(val) == "undefined" || val === "" || val === null) {
                        continue
                    }
                    res[key] = obj[key]
                }
                return res
            },
            clone: function(origin, deep) {
                var clone = {},
                    key, rt = this.$root;
                for (key in origin) {
                    if (deep && /object|array/.test(rt.what(origin[key])) && (!this.cloneDepth || this.cloneDepth < 10)) {
                        if (!this.cloneDepth) {
                            this.cloneDepth = 0
                        }
                        this.cloneDepth++;
                        clone[key] = rt.what(origin[key]) == "object" ? this.clone(origin[key], deep) : this.$parent.array.clone(origin[key], deep)
                    } else {
                        clone[key] = origin[key]
                    }
                }
                delete this.cloneDepth;
                return clone
            },
            extend: function() {
                if (arguments.length < 2) {
                    return arguments.length ? arguments[0] : {}
                }
                var key, rt = this.$root,
                    i, leni, dest = arguments[0],
                    source;
                if (rt.what(dest) != "object") {
                    return dest
                }
                for (i = 1, leni = arguments.length; i < leni; i++) {
                    source = arguments[i];
                    if (rt.what(source) == "object") {
                        for (key in source) {
                            dest[key] = source[key]
                        }
                    }
                }
                return dest
            },
            hasKey: function(obj, keys) {
                if (!(keys instanceof Array)) {
                    keys = [keys]
                }
                for (var i = 0, leni = keys.length, what = this.$root.what; i < leni; i++) {
                    if (what(obj[keys[i]]) != "undefined") {
                        return true
                    }
                }
                return false
            },
            keys: function(obj) {
                var arr = [];
                for (var key in obj) {
                    arr[arr.length] = key
                }
                return arr
            },
            renamePorpery: function(o, oldName, newName) {
                var rt = this.$root;
                if (rt.what(o[oldName]) == "undefined") {
                    return
                }
                o[newName] = o[oldName];
                delete o[oldName]
            },
            stringify: function(json, depth) {
                var res, rt = this.$root,
                    type = rt.what(json),
                    push = rt.utils.array.push,
                    i, leni, key, sgf = this.stringify;
                if (!depth) {
                    depth = 1
                }
                if (depth > 10) {
                    res = '"Exceeded max depth of 10 levels."'
                } else {
                    if (type == "undefined") {
                        res = "undefined"
                    } else {
                        if (type == "number" || type == "boolean") {
                            res = json
                        } else {
                            if (type == "string") {
                                res = ['"', json.replace(/"/g, '\\"'), '"'].join("")
                            } else {
                                if (type == "function") {
                                    res = '"[Function]"'
                                } else {
                                    if (type == "array") {
                                        res = ["["];
                                        for (i = 0, leni = json.length; i < leni; i++) {
                                            push(res, sgf.call(this, json[i], depth + 1), ",")
                                        }
                                        if (res.length > 1) {
                                            res.pop()
                                        }
                                        push(res, "]");
                                        res = res.join("")
                                    } else {
                                        if (json === null) {
                                            res = "null"
                                        } else {
                                            if (type == "object") {
                                                res = ["{"];
                                                for (key in json) {
                                                    push(res, '"', key.replace(/"/g, '\\"'), '":', sgf.call(this, json[key], depth + 1), ",")
                                                }
                                                if (res.length > 1) {
                                                    res.pop()
                                                }
                                                push(res, "}");
                                                res = res.join("")
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                return res
            },
            toQueryString: function(obj, useEncoding) {
                var res = [],
                    key, value, push = this.$parent.array.push;
                for (key in obj) {
                    if (useEncoding) {
                        key = encodeURIComponent(key);
                        value = encodeURIComponent(obj[key])
                    } else {
                        value = obj[key]
                    }
                    push(res, res.length ? "&" : "?", key, "=", value)
                }
                return res.join("")
            },
            values: function(obj) {
                var arr = [];
                for (var key in obj) {
                    arr[arr.length] = obj[key]
                }
                return arr
            }
        });
        utils.$create("date", {
            now: function() {
                return new Date().getTime()
            }
        });
        utils.$create("timer", {
            start: function(id) {
                var time = this.$root.utils.date.now();
                this.times[id] = {
                    start: time
                };
                return time
            },
            stop: function(id) {
                var rt = this.$root,
                    o = this.times[id];
                if (!o || !o.start) {
                    rt.logger.warn(['Trying to stop timer "', id, '" which does not exist.'].join(""), this.stop);
                    return 0
                }
                o.stop = rt.utils.date.now();
                o.delta = o.stop - o.start;
                return o.delta
            },
            delta: function(id) {
                var o = this.times[id];
                return o && o.delta ? o.delta : 0
            },
            poll: function(id) {
                var o = this.times[id];
                if (!o || !o.start) {
                    return 0
                }
                return (o.stop || this.$root.utils.date.now()) - o.start
            },
            clear: function(id) {
                delete this.times[id]
            }
        }, {
            times: {}
        });
        utils.$create("cookie", {
            set: function(name, value, expiration) {
                expiration = expiration ? ("; expires=" + (this.$root.what(expiration) == "date" ? expiration.toUTCString() : new Date((new Date()).getTime() + expiration * 1000).toUTCString())) : "";
                var parts = location.hostname.split(".");
                var domain = "; domain=" + [parts[parts.length - 2], parts[parts.length - 1]].join(".");
                document.cookie = [name, "=", encodeURIComponent(value), expiration, domain, "; path=/"].join("");
                return true
            },
            has: function(name) {
                return this.$parent.array.indexOf(this.$parent.array.map(document.cookie.split(/;\s*/), function(item) {
                    return item.split("=")[0]
                }), name) > -1
            },
            remove: function(name) {
                var parts = location.hostname.split(".");
                var domain = "; domain=" + [parts[parts.length - 2], parts[parts.length - 1]].join(".");
                document.cookie = [name, "=;expires=", new Date((new Date()).getTime() - 60000).toUTCString(), domain, "; path=/"].join("");
                return true
            },
            get: function(name) {
                var cookies = {};
                this.$parent.array.map(document.cookie.split(/;\s*/), function(cookie) {
                    var p = cookie.split("=");
                    cookies[p[0]] = p[1];
                    return null
                });
                return decodeURIComponent(cookies[name]) || null
            }
        });
        utils.$create("base64", {
            init: function(str) {
                if (!this.reverseBase64Chars) {
                    this.reverseBase64Chars = {};
                    for (var i = 0, leni = this.base64Chars.length; i < leni; i++) {
                        this.reverseBase64Chars[this.base64Chars[i]] = i
                    }
                }
                this.base64Str = str;
                this.base64Count = 0
            },
            readBase64: function() {
                if (!this.base64Str) {
                    return this.EOI
                }
                if (this.base64Count >= this.base64Str.length) {
                    return this.EOI
                }
                var c = this.base64Str.charCodeAt(this.base64Count) & 255;
                this.base64Count++;
                return c
            },
            encodeBase64: function(str) {
                this.init(str);
                var result = "";
                var inBuffer = new Array(3);
                var lineCount = 0;
                var done = false;
                while (!done && (inBuffer[0] = this.readBase64()) != this.EOI) {
                    inBuffer[1] = this.readBase64();
                    inBuffer[2] = this.readBase64();
                    result += (this.base64Chars[inBuffer[0] >> 2]);
                    if (inBuffer[1] != this.EOI) {
                        result += (this.base64Chars[((inBuffer[0] << 4) & 48) | (inBuffer[1] >> 4)]);
                        if (inBuffer[2] != this.EOI) {
                            result += (this.base64Chars[((inBuffer[1] << 2) & 60) | (inBuffer[2] >> 6)]);
                            result += (this.base64Chars[inBuffer[2] & 63])
                        } else {
                            result += (this.base64Chars[((inBuffer[1] << 2) & 60)]);
                            result += ("=");
                            done = true
                        }
                    } else {
                        result += (this.base64Chars[((inBuffer[0] << 4) & 48)]);
                        result += ("=");
                        result += ("=");
                        done = true
                    }
                    lineCount += 4;
                    if (lineCount >= 76) {
                        result += ("\n");
                        lineCount = 0
                    }
                }
                return result
            },
            readReverseBase64: function() {
                if (!this.base64Str) {
                    return this.EOI
                }
                while (true) {
                    if (this.base64Count >= this.base64Str.length) {
                        return this.EOI
                    }
                    var nextCharacter = this.base64Str.charAt(this.base64Count);
                    this.base64Count++;
                    if (this.reverseBase64Chars[nextCharacter]) {
                        return this.reverseBase64Chars[nextCharacter]
                    }
                    if (nextCharacter == "A") {
                        return 0
                    }
                }
            },
            ntos: function(n) {
                n = n.toString(16);
                if (n.length == 1) {
                    n = "0" + n
                }
                n = "%" + n;
                return unescape(n)
            },
            decodeBase64: function(str) {
                this.init(str);
                var result = "";
                var inBuffer = new Array(4);
                var done = false;
                while (!done && (inBuffer[0] = this.readReverseBase64()) != this.EOI && (inBuffer[1] = this.readReverseBase64()) != this.EOI) {
                    inBuffer[2] = this.readReverseBase64();
                    inBuffer[3] = this.readReverseBase64();
                    result += this.ntos((((inBuffer[0] << 2) & 255) | inBuffer[1] >> 4));
                    if (inBuffer[2] != this.EOI) {
                        result += this.ntos((((inBuffer[1] << 4) & 255) | inBuffer[2] >> 2));
                        if (inBuffer[3] != this.EOI) {
                            result += this.ntos((((inBuffer[2] << 6) & 255) | inBuffer[3]))
                        } else {
                            done = true
                        }
                    } else {
                        done = true
                    }
                }
                return result
            }
        }, {
            EOI: -1,
            base64Chars: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".split(""),
            reverseBase64Chars: null,
            base64Str: "",
            base64Count: 0
        });
        utils.$create("dom", {
            createDOMFragment: function(o) {
                var el, rt = this.$root,
                    key, i, leni, child;
                if (o.tag) {
                    var tag = o.tag.toLowerCase();
                    el = document.createElement(tag);
                    if (tag == "input") {
                        el.type = o.type || "text"
                    }
                    if (o.id) {
                        el.id = o.id
                    }
                    if (o.cls) {
                        el.className = o.cls
                    }
                    if (o.style) {
                        this.element.setStyle(el, o.style)
                    }
                    if (o.attributes) {
                        for (key in o.attributes) {
                            el.setAttribute(key, o.attributes[key])
                        }
                    }
                    if (rt.what(o.value) != "undefined") {
                        el.value = o.value
                    }
                    if (rt.what(o.innerHTML) != "undefined") {
                        el.innerHTML = o.innerHTML
                    }
                    if (o.events) {
                        for (key in o.events) {
                            rt.event.dom.bind(el, {
                                event: key,
                                listener: o.events[key]
                            })
                        }
                    }
                } else {
                    if (o.isTextNode && rt.what(o.value) != "undefined") {
                        el = document.createTextNode(o.value)
                    } else {
                        return null
                    }
                }
                if (o.isChild) {
                    el = o.parent.appendChild(el)
                }
                if (o.tag && o.children) {
                    if (rt.what(o.children) != "array") {
                        o.children = [o.children]
                    }
                    for (i = 0, leni = o.children.length; i < leni; i++) {
                        child = o.children[i];
                        rt.utils.object.extend(child, {
                            isChild: true,
                            parent: el
                        });
                        this.createDOMFragment(child)
                    }
                } else {
                    if (o.tag && o.childNodes) {
                        for (i = 0, leni = o.childNodes.length; i < leni; i++) {
                            el.appendChild(o.childNodes[i])
                        }
                    }
                }
                if (!o.isChild && o.parent) {
                    var parent = rt.what(o.parent) == "string" ? this.element.$(o.parent) : o.parent;
                    if (o.overwrite) {
                        parent.innerHTML = ""
                    }
                    o.before ? parent.insertBefore(el, o.before) : o.after ? this.element.insertAfter(el, o.after) : parent.appendChild(el)
                }
                return el
            },
            filterByClass: function(cls, tag, elm) {
                if (!this._filterByClass) {
                    if (document.getElementsByClassName) {
                        this._filterByClass = function(cls, tag, elm) {
                            var elements = (elm ? (elm.getElementsByClassName ? elm : document) : document).getElementsByClassName(cls),
                                els = [];
                            tag = tag ? tag.toLowerCase() : null;
                            for (var i = 0, leni = elements.length; i < leni; i++) {
                                if (!tag || elements[i].tagName.toLowerCase() == tag) {
                                    els[els.length] = elements[i]
                                }
                            }
                            return els
                        }
                    } else {
                        if (document.evaluate) {
                            this._filterByClass = function(cls, tag, elm) {
                                tag = tag || "*";
                                elm = elm || document;
                                var classes = cls.split(" "),
                                    classesToCheck = "",
                                    xhtmlNamespace = "http://www.w3.org/1999/xhtml",
                                    namespaceResolver = (document.documentElement.namespaceURI === xhtmlNamespace) ? xhtmlNamespace : null,
                                    els = [],
                                    elements, node;
                                for (var j = 0, jl = classes.length; j < jl; j++) {
                                    classesToCheck += "[contains(concat(' ', @class, ' '), ' " + classes[j] + " ')]"
                                }
                                try {
                                    elements = document.evaluate(".//" + tag + classesToCheck, elm, namespaceResolver, 0, null)
                                } catch (e) {
                                    elements = document.evaluate(".//" + tag + classesToCheck, elm, null, 0, null)
                                }
                                while ((node = elements.iterateNext())) {
                                    els[els.length] = node
                                }
                                return els
                            }
                        } else {
                            this._filterByClass = function(cls, tag, elm) {
                                tag = tag || "*";
                                elm = elm || document;
                                var classes = cls.split(" "),
                                    classesToCheck = [],
                                    elements = (tag === "*" && elm.all) ? elm.all : elm.getElementsByTagName(tag),
                                    current, els = [],
                                    match;
                                for (var k = 0, kl = classes.length; k < kl; k++) {
                                    classesToCheck[classesToCheck.length] = new RegExp("(^|\\s)" + classes[k] + "(\\s|$)")
                                }
                                for (var l = 0, ll = elements.length; l < ll; l++) {
                                    current = elements[l];
                                    match = false;
                                    for (var m = 0, ml = classesToCheck.length; m < ml; m++) {
                                        match = classesToCheck[m].test(current.className);
                                        if (!match) {
                                            break
                                        }
                                    }
                                    if (match) {
                                        els[els.length] = current
                                    }
                                }
                                return els
                            }
                        }
                    }
                }
                return this._filterByClass(cls, tag, elm)
            },
            findWidestNode: function() {
                var bd = document.body,
                    i, leni, rt = this.$root,
                    dm = rt.utils.dom,
                    dmel = dm.element,
                    node, widestNode, width, maxWidth = 0,
                    height, minHeight = 50,
                    widest = null;
                for (i = 0, leni = bd.childNodes.length; i < leni; i++) {
                    node = bd.childNodes[i];
                    if (node.nodeType != rt.settings.nodeTypes.ELEMENT || !dmel.isVisible(node)) {
                        continue
                    }
                    width = dmel.getActualWidth(node);
                    height = dmel.getActualHeight(node);
                    if (width > maxWidth && height > minHeight) {
                        maxWidth = width;
                        widest = {
                            node: node,
                            width: width,
                            height: height
                        }
                    }
                }
                if (!widest) {
                    widestNode = bd;
                    widest = {
                        node: bd,
                        width: dm.document.getWidth(),
                        height: dm.document.getHeight()
                    }
                }
                return widest
            }
        });
        utils.dom.$create("element", {
            $: function(id) {
                return document.getElementById(id)
            },
            getActualWidth: function(el) {
                var cssWidth = this.getStyle(el, "width");
                var width = parseInt(cssWidth, 10);
                return !isNaN(width) && (width > 0) && (cssWidth.match(/px/)) ? width : el.clientWidth || el.offsetWidth
            },
            getActualHeight: function(el) {
                var cssHeight = this.getStyle(el, "height");
                var height = parseInt(cssHeight, 10);
                return !isNaN(height) && (height > 0) && (cssHeight.match(/px/)) ? height : el.clientHeight || el.offsetHeight
            },
            getStyle: function(node, prop) {
                var dfv = document.defaultView,
                    style = node.currentStyle || (dfv && dfv.getComputedStyle ? dfv.getComputedStyle(node, null) : null) || node.style;
                return prop && style ? style[prop] : style
            },
            inHierarchy: function(low, high) {
                do {
                    if (low == high) {
                        return true
                    }
                    low = low.parentNode
                } while (low);
                return false
            },
            insertAfter: function(newNode, refNode) {
                var parent = refNode.parentNode;
                return refNode.nextSibling ? parent.insertBefore(newNode, refNode.nextSibling) : parent.appendChild(newNode)
            },
            isOnViewport: function(node) {
                if (!this.isVisible(node)) {
                    return false
                }
                return (this.offset(node).top < this.$parent.viewport.getHeight())
            },
            isVisible: function(node) {
                if (!node) {
                    return false
                }
                while (node && node.tagName && node.tagName.toLowerCase() != "body") {
                    var cs = this.getStyle(node);
                    if (cs["display"] == "none" || cs["visibility"] == "hidden") {
                        return false
                    }
                    node = node.parentNode
                }
                return true
            },
            offset: function(node, ancestor) {
                var x = 0,
                    y = 0,
                    rt = this.$root,
                    dm = rt.utils.dom,
                    dmel = dm.element,
                    b = rt.browser,
                    parent, body = document.body || document.documentElement;
                var pos = "position",
                    abs = "absolute",
                    blw = "borderLeftWidth",
                    btw = "borderTopWidth";
                if (!ancestor) {
                    ancestor = body
                }
                if (node == ancestor) {
                    return {
                        left: 0,
                        top: 0
                    }
                }
                if (node.getBoundingClientRect && !ancestor) {
                    var box = node.getBoundingClientRect();
                    var scrollTop = dm.document.getScrollTop();
                    var scrollLeft = dm.document.getScrollLeft();
                    return {
                        left: parseInt(box.left + scrollLeft, 10),
                        top: parseInt(box.top + scrollTop, 10)
                    }
                }
                var hasAbsolute = dmel.getStyle(node, pos) == abs;
                parent = node;
                while (parent && parent != ancestor) {
                    x += parent.offsetLeft;
                    y += parent.offsetTop;
                    if (!hasAbsolute && dmel.getStyle(parent, pos) == abs) {
                        hasAbsolute = true
                    }
                    if (b.Firefox) {
                        var bl = parseInt(dmel.getStyle(parent, blw), 10) || 0;
                        var bt = parseInt(dmel.getStyle(parent, btw), 10) || 0;
                        x += bl;
                        y += bt;
                        if (parent != node && dmel.getStyle(parent, "overflow") != "visible") {
                            x += bl;
                            y += bt
                        }
                    }
                    parent = parent.offsetParent
                }
                if (b.Safari && hasAbsolute) {
                    x -= body.offsetLeft;
                    y -= body.offsetTop
                }
                if (b.Firefox && !hasAbsolute) {
                    x += parseInt(dmel.getStyle(body, blw), 10) || 0;
                    y += parseInt(dmel.getStyle(body, btw), 10) || 0
                }
                parent = node.parentNode;
                while (parent && parent != ancestor) {
                    if (!b.Opera || (parent.tagName.toLowerCase() != "tr" && dmel.getStyle(parent, "display") != "inline")) {
                        x -= parent.scrollLeft;
                        y -= parent.scrollTop
                    }
                    parent = parent.parentNode
                }
                var bs = dmel.getStyle(body);
                if (ancestor == body && bs.position == abs && bs.left) {
                    x -= parseInt(bs.left, 10) || 0
                }
                return {
                    left: parseInt(x, 10),
                    top: parseInt(y, 10)
                }
            },
            setStyle: function(node, styles) {
                var b = this.$root.browser,
                    key;
                if (!node) {
                    return null
                }
                if (!styles) {
                    styles = {}
                }
                for (key in styles) {
                    if (styles[key] != null) {
                        if ((key == "opacity" || key == "cssFloat") && b.IE) {
                            if (key == "opacity") {
                                node.style["filter"] = "alpha(opacity=" + Math.ceil(parseFloat(styles[key]) * 100) + ")"
                            }
                            if (key == "cssFloat") {
                                node.style["styleFloat"] = styles[key]
                            }
                        } else {
                            node.style[key] = styles[key]
                        }
                    }
                }
                return node
            },
            getData: function(node, dataId) {
                return node.dataset ? node.dataset[dataId] : node.getAttribute("data-" + dataId)
            },
            setData: function(node, dataId, val) {
                node.dataset ? (node.dataset[dataId] = val) : node.setAttribute("data-" + dataId, val)
            }
        });
        utils.dom.$create("document", {
            getHeight: function() {
                var body = document.body,
                    html = document.documentElement;
                return Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight)
            },
            getWidth: function() {
                var d = document,
                    m = "clientWidth";
                return Math.max(d.documentElement[m], d.body[m]) || 0
            },
            getScrollTop: function() {
                var d = document,
                    m = "scrollTop";
                return window.pageYOffset || d.documentElement[m] || d.body[m] || 0
            },
            getScrollLeft: function() {
                var d = document,
                    m = "scrollLeft";
                return window.pageXOffset || d.documentElement[m] || d.body[m] || 0
            }
        });
        utils.dom.$create("viewport", {
            getHeight: function() {
                var d = document,
                    de = d.documentElement,
                    m = "clientHeight";
                return window.innerHeight || (de ? (de[m] || d.body[m] || 0) : 0)
            },
            getWidth: function() {
                var d = document,
                    de = d.documentElement,
                    m = "clientWidth";
                return window.innerWidth || (de ? (de[m] || d.body[m] || 0) : 0)
            }
        });
        utils.dom.$create("style", {
            getStylesheet: function() {
                var st = this.$root.settings;
                if (st.stylesheet) {
                    return st.stylesheet
                }
                var cont = document.getElementsByTagName("head");
                cont = cont.length ? cont[0] : document.body;
                var style = document.createElement("style");
                style.type = "text/css";
                return (st.stylesheet = cont.appendChild(style))
            },
            addRule: function(selector, css) {
                var stylesheet = this.getStylesheet();
                if (stylesheet.styleSheet && stylesheet.styleSheet.addRule) {
                    stylesheet.styleSheet.addRule(selector, css)
                } else {
                    if (stylesheet.sheet && stylesheet.sheet.insertRule) {
                        stylesheet.sheet.insertRule([selector, "{", css, "}"].join(""), stylesheet.sheet.cssRules ? stylesheet.sheet.cssRules.length : 0)
                    }
                }
            },
            addClass: function(el, cls) {
                var uta = this.$root.utils.array,
                    classes = el.className.split(/\s+/);
                if (uta.indexOf(classes, cls) == -1) {
                    uta.push(classes, cls)
                }
                el.className = classes.join(" ")
            },
            removeClass: function(el, cls) {
                var classes = el.className.split(/\s+/);
                this.$root.utils.array.discard(classes, cls);
                el.className = classes.join(" ")
            },
            buildHookUnderlineCSS: function(type, color, imp) {
                var bb = "border-bottom:",
                    td = "text-decoration:",
                    n = "none",
                    u = "underline",
                    i = imp ? " !important;" : ";";
                switch (type) {
                case "single":
                    return [bb, "0 ", n, i, td, u, i].join("");
                case "dotted":
                    return [bb, "1px dotted ", color, i, td, n, i].join("");
                case "dashed":
                    return [bb, "1px dashed ", color, i, td, n, i].join("");
                case "none":
                    return [bb, "0 ", n, i, td, n, i].join("");
                default:
                    return [bb, "1px solid ", color, i, td, u, i].join("")
                }
            },
            buildBorderRadius: function(val) {
                var what = this.$root.what,
                    dbs = document.body.style,
                    css = "border-radius:" + val + ";";
                if (what(dbs.borderRadius) == "string") {
                    return css
                } else {
                    if (what(dbs.MozBorderRadius) == "string") {
                        return "-moz-" + css
                    } else {
                        if (what(dbs.WebkitBorderRadius) == "string") {
                            return "-webkit-" + css
                        } else {
                            return ""
                        }
                    }
                }
            },
            buildBoxShadow: function(val) {
                var rt = this.$root,
                    what = rt.what,
                    b = rt.browser,
                    dbs = document.body.style,
                    css = "box-shadow:" + val + ";";
                if (what(dbs.boxShadow) == "string") {
                    return css
                } else {
                    if (what(dbs.MozBoxShadow) == "string") {
                        return "-moz-" + css
                    } else {
                        if (what(dbs.WebkitBoxShadow) == "string" && (!b.Safari || parseFloat(b.AppleWebKit >= 533))) {
                            return "-webkit-" + css
                        } else {
                            return ""
                        }
                    }
                }
            },
            buildTextShadow: function(val) {
                var what = this.$root.what,
                    dbs = document.body.style,
                    css = "text-shadow:" + val + ";";
                if (what(dbs.textShadow) == "string") {
                    return css
                } else {
                    if (what(dbs.MozTextShadow) == "string") {
                        return "-moz-" + css
                    } else {
                        if (what(dbs.WebkitTextShadow) == "string") {
                            return "-webkit-" + css
                        } else {
                            return ""
                        }
                    }
                }
            },
            buildLinearGradient: function(start, end, startColor, endColor) {
                var b = this.$root.browser,
                    css = "background-image:";
                if (parseFloat(b.Firefox) >= 3.6) {
                    return [css, "-moz-linear-gradient(", start, ", ", startColor, ", ", endColor, " ", end, "px);"].join("")
                } else {
                    if (parseFloat(b.AppleWebKit) >= 530) {
                        return [css, "-webkit-gradient(linear, left ", start, ", left ", end, ", from(", startColor, "), to(", endColor, "));"].join("")
                    } else {
                        return ""
                    }
                }
            },
            supports: function(prop) {
                var wh = this.$root.what,
                    dbs = document.body.style,
                    b = this.$root.browser,
                    s = "string",
                    M = "Moz",
                    W = "Webkit",
                    cprop = prop.charAt(0).toUpperCase() + prop.substr(1);
                switch (prop) {
                case "borderRadius":
                case "textShadow":
                    return wh(dbs[prop]) == s ? prop : (wh(dbs[M + cprop]) == s ? M + cprop : (wh(dbs[W + cprop]) == s ? W + cprop : false));
                case "boxShadow":
                    return wh(dbs[prop]) == s ? prop : (wh(dbs[M + cprop]) == s ? M + cprop : ((wh(dbs[W + cprop]) == s && (!b.Safari || parseFloat(b.AppleWebKit >= 533))) ? W + cprop : false));
                case "linearGradient":
                    return (parseFloat(b.Firefox) >= 3.6 || parseFloat(b.AppleWebKit) >= 530) ? prop : false;
                default:
                    return false
                }
            }
        });
        utils.dom.$create("event", {
            disableEventBubbling: function(element, event) {
                if (element.addEventListener) {
                    element.addEventListener(event, this.stop, false)
                } else {
                    if (element.attachEvent) {
                        element.attachEvent("on" + event, this.stop)
                    }
                }
            },
            stop: function(domEvt) {
                domEvt.cancelBubble = true;
                domEvt.returnValue = false;
                if (domEvt.preventDefault) {
                    domEvt.preventDefault()
                }
                if (domEvt.stopPropagation) {
                    domEvt.stopPropagation()
                }
            }
        });
        $root.$create("helpers", {
            getVar: function(v, context) {
                var wl = this.$root.settings.white_label,
                    s1 = "infolink",
                    s2 = s1 + "s",
                    undef = "undefined",
                    what = this.$root.what;
                s1 += "_";
                s2 += "_";
                var val = wl && what(window[wl + "_" + v]) != undef ? window[wl + "_" + v] : what(window[s2 + v]) != undef ? window[s2 + v] : what(window[s1 + v]) != undef ? window[s1 + v] : null;
                if (context) {
                    context[v] = val
                }
                return val
            },
            chanceIntegration: function() {
                var percentage = this.getVar("percentage");
                if (percentage) {
                    percentage = percentage > 100 ? 100 : percentage < 0 ? 0 : percentage;
                    var rnd = Math.random() * 100;
                    if (rnd > percentage) {
                        var integrationNode;
                        try {
                            integrationNode = this.searchForIntegrationComment(document.body)
                        } catch (ex) {
                            integrationNode = null
                        }
                        if (integrationNode) {
                            var js = integrationNode.data;
                            if (document.readyState != "complete" && !this.getVar("ddw")) {
                                document.write(js.substring(14, js.length))
                            }
                        }
                        this.$root.logger.log("Stopping on unlucky chance integration.", this.chanceIntegration);
                        return true
                    }
                }
                return false
            },
            searchForIntegrationComment: function(node) {
                switch (node.nodeType) {
                case 1:
                case 9:
                    for (var i = 0, leni = node.childNodes.length; i < leni; i++) {
                        var resultNode = this.searchForIntegrationComment(node.childNodes[i]);
                        if (resultNode) {
                            return resultNode
                        }
                    }
                    return null;
                case 8:
                    return node.data.length > 15 && node.data.substr(0, 14) == "IL_INTEGRATION" ? node : null;
                default:
                    return null
                }
            },
            isSupportedClient: function() {
                var rt = this.$root,
                    b = rt.browser,
                    sv = rt.settings.supportedClients[b.getName()];
                return sv && b.getVersion(true) >= sv
            },
            setHosts: function() {
                var rt = this.$root,
                    host, url, ver, path = "",
                    re, st = rt.settings,
                    hosts = st.hosts;
                var scripts = document.getElementsByTagName("script"),
                    resources = rt.helpers.getVar("resources");
                if (window.INFOLINKS && window.INFOLINKS._boot) {
                    st.boot = window.INFOLINKS._boot;
                    ver = rt.version = st.boot.version;
                    re = /\/infolinks_main\.js$/
                } else {
                    if (window.$iceboot) {
                        st.boot = window.$iceboot;
                        ver = rt.version = st.boot.version;
                        re = /\/infolinks_main\.js$/
                    } else {
                        re = new RegExp(versionFile + ".js$")
                    }
                }
                if (resources) {
                    resources = resources.replace(/^\w+:\/\//, "");
                    host = resources.substring(0, resources.indexOf("/"));
                    path = resources.substring(resources.indexOf("/")) + "/"
                } else {
                    for (var i = 0, leni = scripts.length; i < leni; i++) {
                        if (scripts[i].src.match(re) != null) {
                            url = scripts[i].src.replace(/^\w+:\/\//, "");
                            host = url.replace(/\/.*/, "");
                            path = url.substring(url.indexOf("/"), url.lastIndexOf("/") + 1);
                            if (!ver) {
                                var parts = path.split("/");
                                rt.version = parts[parts.length - 2]
                            }
                            break
                        }
                    }
                }
                if (host) {
                    hosts.resources = host
                } else {
                    hosts.resources = hosts.resourcesDefault;
                    path = hosts.scriptDefaultPath
                }
                hosts.router = rt.utils.string.toObject(location.search, "il.mt") || rt.helpers.getVar("metro_server") || hosts.resources.replace(/\bresources\b/, "router");
                hosts.thumbnails = hosts.resources.replace(/\bresources\b/, "thumbnails");
                if (ver) {
                    path += ver
                }
                if (path && path.charAt(path.length - 1) != "/") {
                    path += "/"
                }
                hosts.scriptPath = path;
                if (path.indexOf("/src/") != -1) {
                    hosts.src = true
                }
            },
            getCustomerId: function() {
                var rt = this.$root,
                    hp = rt.helpers;
                rt.settings.$extend({
                    customerId: hp.getVar("cid") || hp.getVar("pid") || "null",
                    websiteId: hp.getVar("wsid") || 0,
                    customerUrl: document.location.href
                })
            },
            setDefaultWebsiteDirectives: function(data) {
                var rt = this.$root,
                    key, dwd = {
                        ht: true,
                        qmin: 1,
                        ha: null,
                        hd: null
                    };
                if (!data.wd) {
                    data.wd = {}
                }
                for (key in dwd) {
                    if (rt.what(data.wd[key]) == "undefined") {
                        data.wd[key] = dwd[key]
                    }
                }
            },
            getReferrer: function() {
                var rt = this.$root,
                    docRef = document.referrer,
                    res = {
                        ref: "",
                        refq: ""
                    },
                    refqIndex, ut = rt.utils,
                    uts = ut.string,
                    hasRefc = ut.cookie.has("refc"),
                    simQuery = ut.string.toObject(location.search, "il.sq");
                if (simQuery) {
                    res = {
                        refq: decodeURIComponent(simQuery),
                        ref: ut.base64.decodeBase64("d3d3Lmdvb2dsZS5jb20=")
                    };
                    ut.object.extend(rt.settings, res);
                    return res
                }
                if (docRef) {
                    refqIndex = docRef.indexOf("?");
                    if (refqIndex != -1) {
                        try {
                            var queryObj = uts.toObject(docRef.substring(refqIndex + 1));
                            res.refq = uts.truncate(uts.trim(decodeURIComponent((queryObj.q || queryObj.p || "").replace(/\+/g, " "))), 100, "");
                            res.ref = docRef.substring(0, refqIndex)
                        } catch (ex) {
                            rt.logger.error("Error reading referrer.", this.getReferrer)
                        }
                    } else {
                        if (!hasRefc) {
                            res.ref = docRef
                        }
                    }
                    res.ref = uts.truncate(res.ref.replace(/^\w+:\/\//, ""), 100, "");
                    if (res.refq && !hasRefc) {
                        ut.cookie.set("refc", ut.object.toQueryString(res), 60)
                    }
                }
                if (!res.refq && hasRefc) {
                    ut.object.extend(res, uts.toObject(ut.cookie.get("refc") || ""))
                }
                ut.object.extend(rt.settings, res);
                return res
            },
            normalizeText: function(text) {
                var delimiter = "|";
                text = text.replace(/\.|:|;|<|>|=|\?|\(|\)|\[|\]|\{|\}|,|"|\x201C|\x201D|\x96|\x97|\\|\//g, delimiter);
                text = text.replace(/['`\-]\W/g, delimiter).replace(/\W['`\-]/g, delimiter);
                var re1 = new RegExp("\\s*\\" + delimiter + "+\\s*", "g");
                var re2 = new RegExp("\\" + delimiter + "{2,}", "g");
                text = text.replace(re1, delimiter).replace(re2, delimiter);
                text = text.toLowerCase().replace(/\|/g, "P").replace(/\s/g, "S").replace(/\./g, "D").replace(/'/g, "Q").replace(/\$/g, "M").replace(/\+/g, "A");
                return text
            },
            countWords: function(text) {
                var re = new RegExp("P|S", "g");
                var matched = text.match(re);
                return (matched != null) ? matched.length + 1 : 0
            },
            getMetaContent: function(name, limit) {
                var metas = document.getElementsByTagName("meta");
                for (var i = 0, leni = metas.length; i < leni; i++) {
                    if (metas[i].name && metas[i].name.toLowerCase() == name && metas[i].content) {
                        return this.normalizeText(this.$root.utils.string.truncateToChar(metas[i].content, limit * 1024, " "))
                    }
                }
                return ""
            },
            getSilverlightVersion: function() {
                var plugin = navigator.plugins["Silverlight Plug-In"],
                    version = -1;
                if (plugin) {
                    version = plugin.description
                } else {
                    try {
                        var control = new ActiveXObject("AgControl.AgControl");
                        var checkVersion = 2;
                        while (control.IsVersionSupported(checkVersion + ".0")) {
                            checkVersion++
                        }
                        checkVersion--;
                        version = (checkVersion == 1) ? -1 : checkVersion
                    } catch (ex) {}
                }
                return version
            },
            getTagTexts: function(tags, prop, param) {
                var rt = this.$root,
                    ut = rt.utils,
                    uts = ut.string,
                    uta = ut.array,
                    nodes, res = [],
                    i, leni, j, lenj, val, end = false,
                    charCount = 0,
                    tlm = rt.settings.textLimits.merged,
                    nodesCount = 0,
                    maxNodes = 20;
                if (rt.what(tags) != "array") {
                    tags = [tags]
                }
                for (i = 0, leni = tags.length; i < leni; i++) {
                    nodes = document.getElementsByTagName(tags[i]);
                    for (j = 0, lenj = nodes.length; j < lenj; j++) {
                        val = prop == "text" ? (nodes[j].textContent || nodes[j].innerText || "") : prop == "alt" ? nodes[j].alt : "";
                        if (!val) {
                            continue
                        }
                        val = uts.truncateToChar(val, tlm[param].i, " ");
                        nodesCount++;
                        if (charCount + val.length > tlm[param].t * 1024 || nodesCount >= maxNodes) {
                            end = true;
                            break
                        }
                        uta.push(res, val);
                        charCount += val.length
                    }
                    if (end) {
                        break
                    }
                }
                return this.normalizeText(res.join("|"))
            },
            processImpressionResponse: function(response) {
                var rt = this.$root,
                    hp = rt.helpers,
                    component;
                if (rt.what(response) != "object") {
                    return null
                }
                if (response.components) {
                    response.prs = {};
                    for (component in response.components) {
                        response.prs[component.charAt(0)] = response.components[component]
                    }
                    delete response.components
                }
                hp.normalizeSentenceLists(response);
                if (response.messages) {
                    hp.findMaxBidCount(response)
                }
                return response
            },
            findMaxBidCount: function(response) {
                var prod, msg, i, maxBDC = 0;
                for (prod in response.prs) {
                    msg = response.prs[prod].messages;
                    if (!msg) {
                        continue
                    }
                    for (i in msg) {
                        if (msg[i].bdc > maxBDC) {
                            maxBDC = msg[i].bdc
                        }
                    }
                }
                this.$root.settings.bdc = maxBDC
            },
            normalizeSentenceLists: function(response) {
                var prs = response.prs,
                    prod, ut = this.$root.utils,
                    numOfSentences = ut.object.keys(response.sentences).length;
                for (prod in prs) {
                    if (numOfSentences && prs[prod].sentences.length == 1 && prs[prod].sentences[0] == "ALL") {
                        prs[prod].sentences = ut.array.range(0, numOfSentences - 1)
                    }
                }
            },
            getCustomerBehavior: function(str) {
                var rt = this.$root,
                    v, key, i, leni, res = {};

                function uc() {
                    return arguments[1].toUpperCase()
                }
                var arr = rt.utils.string.qw(str);
                for (i = 0, leni = arr.length; i < leni; i++) {
                    v = rt.helpers.getVar(arr[i]);
                    if (v != null) {
                        key = arr[i].replace(/_(\w)/g, uc);
                        res[key] = v
                    }
                }
                return res
            },
            getImpressionBehavior: function() {
                var rt = this.$root,
                    st = rt.settings,
                    uto = rt.utils.object,
                    bi = rt.comm.settings.responses.impression.behavior_imp || {};
                uto.renamePorpery(bi, "lc", "linkColor");
                uto.renamePorpery(bi, "st", "bubbleShowDelay");
                uto.renamePorpery(bi, "rw", "adsReuseWindow");
                uto.renamePorpery(bi, "bd", "bubbleDirection");
                st.behavior.impression = bi
            },
            renameBehaviorProperties: function(o) {
                var rt = this.$root,
                    uto = rt.utils.object;
                uto.renamePorpery(o, "hc", "highlightCount");
                uto.renamePorpery(o, "lc", "linkColor");
                uto.renamePorpery(o, "du", "doubleUnderline");
                uto.renamePorpery(o, "st", "bubbleShowDelay");
                uto.renamePorpery(o, "rw", "adsReuseWindow");
                uto.renamePorpery(o, "si", "simanitIcon");
                uto.renamePorpery(o, "bd", "bubbleDirection");
                uto.renamePorpery(o, "t", "theme");
                uto.renamePorpery(o, "ln", "lines");
                return o
            },
            sanitize: function(data, sanitizer, strict) {
                var rt = this.$root;
                for (var key in data) {
                    if (strict && rt.what(sanitizer[key]) == "undefined") {
                        delete data[key];
                        continue
                    }
                    switch (sanitizer[key]) {
                    case "int":
                        data[key] = parseInt(data[key], 10) || 0;
                        break;
                    case "bool":
                        data[key] = data[key] == "false" ? false : !! data[key];
                        break;
                    case "color":
                        data[key] = this.validateColorValue(data[key] || "");
                        break;
                    case "multiColor":
                        data[key] = this.validateMultiColorValue(data[key] || "");
                        break;
                    case "str":
                        data[key] = data[key] && data[key].toString ? data[key].toString() : data[key];
                        break;
                    case "node":
                        data[key] = data[key] && data[key].tagName ? data[key] : null;
                        break;
                    default:
                        if (rt.what(sanitizer[key]) == "array") {
                            if (rt.utils.array.indexOf(sanitizer[key], data[key]) == -1) {
                                data[key] = sanitizer[key][0]
                            }
                        }
                    }
                }
                return data
            },
            validateColorValue: function(color) {
                return (color && color.match(/^#?[0-9a-fA-F]{6}$/) != null) ? color.charAt(0) == "#" ? color : "#" + color : "#000000"
            },
            validateMultiColorValue: function(colorsStr) {
                var rt = this.$root,
                    colors = colorsStr.split(","),
                    newColors = [],
                    i, leni;
                for (i = 0, leni = colors.length; i < leni; i++) {
                    if (rt.what(colors[i]) == "string") {
                        rt.utils.array.push(newColors, this.validateColorValue(colors[i]))
                    }
                }
                return (newColors.join(","))
            },
            createBaseClasses: function() {
                var rt = this.$root,
                    dmst = rt.utils.dom.style,
                    baseClass = rt.settings.baseClass;
                var baseCSS = "margin:0;padding:0;border:0;outline:0;font:normal normal normal 13px trebuchet MS,Arial,sans-serif;vertical-align:baseline;background:transparent;list-style:none;text-decoration:none;text-align:left;float:none;";
                dmst.addRule("." + baseClass, baseCSS);
                dmst.addRule("." + baseClass + " *", baseCSS);
                dmst.addRule("a." + baseClass + ":hover", "background-color:transparent !important;")
            },
            getHookData: function(hookId) {
                var data = this.$root.comm.settings.responses.getads;
                return data ? data[hookId] || null : null
            },
            setHookData: function(hookId, data) {
                var res = this.$root.comm.settings.responses;
                if (!res.getads) {
                    res.getads = {}
                }
                res.getads[hookId] = data
            },
            clearHookData: function(hookId) {
                var data = this.$root.comm.settings.responses.getads;
                if (data && data[hookId]) {
                    data[hookId] = null
                }
            },
            createHook: function(hookId, sentence, node, fontSize, context, prodCode, prodName, hasBubble, instance) {
                var rt = this.$root,
                    st = rt.settings,
                    sn = context.settings.sentences;
                var hook = {
                    id: hookId,
                    fontSize: fontSize,
                    node: node,
                    parentNode: node.parentNode,
                    rendered: true,
                    sentence: sentence,
                    prod: prodCode,
                    type: prodName,
                    hovered: false,
                    currentAdIndex: 0,
                    instance: instance
                };
                st.hooksMap[hook.id] = hook;
                if (!sn[sentence]) {
                    sn[sentence] = {
                        hooks: [],
                        rendered: 0
                    }
                }
                rt.utils.array.push(sn[sentence].hooks, hook);
                sn[sentence].rendered++;
                if (hasBubble) {
                    hook.bubble = rt.utils.object.clone(rt.bubble.settings.base);
                    rt.helpers.bindHookEvents(hook)
                }
                return hook
            },
            getHookBehavior: function(hookId) {
                var rt = this.$root,
                    st = rt.settings,
                    hook = st.hooksMap[hookId],
                    prods = rt.products;
                switch (hook.prod) {
                case "i":
                    return prods.intext.settings.behavior.merged;
                case "t":
                    return prods.intag.settings.behavior.merged;
                case "s":
                case "o":
                    return hook.instance.behavior;
                case "f":
                    return prods.inframe.settings.behavior.merged;
                default:
                    return {}
                }
            },
            bindHookEvents: function(hook) {
                var rt = this.$root,
                    ed = rt.event.dom,
                    rtb = rt.bubble,
                    node = hook.node,
                    data = {
                        hookId: hook.id
                    };
                ed.bind(node, {
                    event: "dblclick",
                    listener: rtb.hookDblClick
                });
                ed.bind(node, {
                    event: "mouseenter",
                    data: data,
                    listener: rtb.hookMouseover
                });
                ed.bind(node, {
                    event: "mouseleave",
                    data: data,
                    listener: rtb.hookMouseout
                });
                ed.bind(node, {
                    event: "click",
                    data: data,
                    listener: rtb.hookClick
                })
            },
            getHookSD: function(hookId) {
                var rt = this.$root,
                    st = rt.settings,
                    hook = st.hooksMap[hookId],
                    imp;
                if (!hook) {
                    return {}
                }
                imp = hook.updater ? hook.updater.impression : rt.comm.settings.responses.impression;
                return rt.utils.object.extend({
                    sdata: hook.sentence,
                    scs: imp.sentences[hook.sentence]
                }, imp.rauth)
            },
            setAdThumbnail: function(ad) {
                if (ad.template == "text" && !ad.thumbURL) {
                    ad.thumbURL = ["http://", this.$root.settings.hosts.thumbnails, "/thumbnail.jpg?domain=", ad.displayedURL].join("")
                }
            },
            hitTrackerURL: function(trackerURL) {
                var rt = this.$root;
                if (rt.what(trackerURL) != "array") {
                    trackerURL = [trackerURL]
                }
                for (var i = 0; i < trackerURL.length; i++) {
                    rt.utils.dom.createDOMFragment({
                        tag: "img",
                        parent: document.body,
                        attributes: {
                            src: trackerURL[i]
                        },
                        style: {
                            display: "none"
                        }
                    })
                }
            },
            mapUnhoverableAreas: function() {
                var rt = this.$root,
                    st = rt.settings,
                    ut = rt.utils,
                    dmel = ut.dom.element,
                    b = rt.browser;
                var embeds = document.getElementsByTagName("embed");
                var objects = document.getElementsByTagName("object");
                var arr = ut.array.concat(embeds, objects);
                st.unhoverableAreas = [];
                for (var i = 0; i < arr.length; i++) {
                    if (!dmel.isVisible(arr[i])) {
                        continue
                    }
                    if (arr[i].tagName.toLowerCase() == "embed") {
                        if ((arr[i].getAttribute("wmode") || "").toLowerCase() == "transparent") {
                            continue
                        }
                    } else {
                        var params = arr[i].getElementsByTagName("param"),
                            hasWmode = false;
                        for (var j = 0, lenj = params.length; j < lenj; j++) {
                            if (params[j].name == "wmode" && params[j].value.toLowerCase() == "transparent") {
                                hasWmode = true;
                                break
                            }
                        }
                        if (hasWmode) {
                            continue
                        }
                    }
                    if (arr[i].tagName.toLowerCase() == "embed" && arr[i].parentNode.tagName.toLowerCase() == "object") {
                        if (b.IE) {
                            continue
                        } else {
                            ut.array.discard(arr, arr[i].parentNode)
                        }
                    }
                    var width = parseInt(arr[i].width, 10) || arr[i].offsetWidth || 0;
                    var height = parseInt(arr[i].height, 10) || arr[i].offsetHeight || 0;
                    if (!width || !height) {
                        continue
                    }
                    var pos = dmel.offset(arr[i]);
                    ut.array.push(st.unhoverableAreas, [pos.left, pos.top, pos.left + width, pos.top + height])
                }
            },
            hasSpecialTags: function(content, tags) {
                content = content.toLowerCase();
                if ((tags == "all" || tags == "script") && (content.indexOf("<scr") != -1 || content.indexOf("document.write") != -1)) {
                    return true
                }
                return (tags == "all" || tags == "iframe") && content.indexOf("<ifr") != -1
            },
            parseTokens: function(hook, content) {
                var rt = this.$root,
                    data = this.getHookData(hook.id),
                    ad = data.ads[hook.currentAdIndex];
                if (!content) {
                    content = ad.content
                }
                if (ad.template == "html" || ad.template == "external") {
                    var re = /@start@.*?@end@/,
                        match, matchUrl, url, redirectUrl, encoded;
                    while ((match = content.match(re)) != null) {
                        matchUrl = match[0];
                        url = matchUrl.substring(7, matchUrl.length - 5);
                        redirectUrl = rt.comm.getRedirectUrl(hook, url, "onWin");
                        content = content.replace(re, redirectUrl)
                    }
                    re = /@encode@.*?@encode@/;
                    while ((match = content.match(re)) != null) {
                        encoded = encodeURIComponent(match[0].substring(8, match[0].length - 8));
                        content = content.replace(re, encoded)
                    }
                }
                if (ad.contentType == "javascript") {
                    content = ['<script type="text/javascript">', content, "<\/script>"].join("")
                }
                return content
            },
            setActualTemplate: function(ad) {
                ad.actualTemplate = (ad.echo || (ad.template == "html" || ad.template == "external") && ad.content && this.hasSpecialTags(ad.content, "script")) ? "iframe" : ad.template
            },
            getPlatform: function() {
                var rt = this.$root,
                    gen = document.getElementsByName("generator"),
                    i, leni, val, undef = "undefined";
                for (i = 0, leni = gen.length; i < leni; i++) {
                    val = gen[i].getAttribute("content");
                    if (!val) {
                        continue
                    }
                    if (val.indexOf("WordPress") > -1) {
                        return "wdp"
                    }
                    if (val.indexOf("Joomla") > -1) {
                        return "jml"
                    }
                    if (val.indexOf("blogger") > -1) {
                        return "bsp"
                    }
                    if (val.indexOf("vBulletin") > -1) {
                        return "vbt"
                    }
                    if (val.indexOf("phpBB") > -1) {
                        return "pbb"
                    }
                    if (val.indexOf("weebly") > -1) {
                        return "wbl"
                    }
                    if (val.indexOf("tumblr") > -1) {
                        return "tbr"
                    }
                }
                if (rt.what(window["Drupal"]) != undef) {
                    return "drl"
                }
                if (rt.what(window["Joomla"]) != undef) {
                    return "jml"
                }
                if (rt.what(window["blogger"]) != undef) {
                    return "jml"
                }
                if (rt.what(window["blogger_blog_id"]) != undef) {
                    return "jml"
                }
                if (rt.utils.dom.filterByClass("contentpaneopen").length) {
                    return "jml"
                }
                if (rt.what(window["vBulletin"]) != undef) {
                    return "vbt"
                }
                if (rt.what(window["phpbb"]) != undef) {
                    return "pbb"
                }
                if (rt.what(window["positionWeeblyFooter"]) != undef) {
                    return "wbl"
                }
                if (rt.what(window["Tumblr"]) != undef) {
                    return "tbr"
                }
                if (rt.what(window["ipb"]) != undef) {
                    return "ipb"
                }
                var links = document.getElementsByTagName("link"),
                    href;
                for (i = 0, leni = links.length; i < leni; i++) {
                    href = links[i].getAttribute("href");
                    if (!href) {
                        continue
                    }
                    if (href.indexOf("wp-content") > -1) {
                        return "wdp"
                    }
                    if (href.indexOf("support-files") > -1) {
                        return "sbi"
                    }
                }
                return ""
            },
            getSiteLanguage: function() {
                if (this.getSiteLanguage.lang) {
                    return this.getSiteLanguage.lang
                }
                var lang = "en";
                return this.getSiteLanguage.lang = lang
            },
            translate: function(key) {
                var tr = this.$root.settings.translations;
                return tr[key] ? tr[key][this.getSiteLanguage()] : key
            },
            getEchoForm: function(content, iframeName, formId, formCls) {
                var rt = this.$root,
                    st = rt.settings,
                    echo = "http://" + st.hosts.router + "/echo.htm";
                var html = '<form 			<% if (formId){ %>id="<%= formId %>"<% } %> <% if (formCls){ %>class="<%= formCls %>"<% } %> method="post" action="<%= echo %>" target="<%= iframeName %>" accept-charset="utf-8" style="display:none;">				<input type="hidden" name="echo" value="<%= encodeURIComponent(content.split(\'\').reverse().join(\'\')) %>" />				<input type="hidden" name="pid" value="<%= cid %>" />				<input type="hidden" name="wsid" value="<%= wsid %>" />				<input type="hidden" name="jsv" value="<%= jsv %>" />			</form>';
                return rt.utils.VeST(html, {
                    echo: echo,
                    content: content,
                    iframeName: iframeName,
                    formId: formId,
                    formCls: formCls,
                    cid: st.customerId,
                    wsid: st.websiteId,
                    jsv: rt.version,
                    nocache: rt.utils.number.next("echo")
                })
            }
        });
        var comm = $root.$create("comm", {
            loadScript: function(url, params, event, data) {
                var $comm = this,
                    rt = this.$root,
                    qstr = "",
                    qarr = [],
                    cbfunc;
                if (rt.what(params) == "object") {
                    for (var key in params) {
                        rt.utils.array.push(qarr, (qarr.length || url.indexOf("?") != -1) ? "&" : "?", encodeURIComponent(key), "=", encodeURIComponent(params[key]))
                    }
                    qstr = qarr.join("")
                } else {
                    if (rt.what(params) == "string") {
                        qstr = params
                    }
                }
                url += qstr;
                if (url.match(/^\w+:\/\//) == null) {
                    url = "http://" + url
                }
                if (event) {
                    cbfunc = function(url) {
                        var rt = $comm.$root,
                            ls = $comm.loadedScripts;
                        if (ls[url]) {
                            return true
                        }
                        ls[url] = true;
                        if (rt.what(data) == "undefined") {
                            rt.event.fire(event)
                        } else {
                            rt.event.fire(event, data)
                        }
                    }
                } else {
                    cbfunc = function() {
                        $comm.loadedScripts[url] = true
                    }
                }
                if (this.loadedScripts[url]) {
                    cbfunc()
                } else {
                    this.loadedScripts[url] = false;
                    var script = document.createElement("script");
                    script.type = "text/javascript";
                    script.charset = "UTF-8";
                    script.onreadystatechange = function() {
                        if (/complete|loaded/.test(this.readyState) && !$comm.loadedScripts[url]) {
                            cbfunc(url)
                        }
                    };
                    script.onload = function() {
                        cbfunc(url)
                    };
                    script.src = url;
                    var container = document.getElementsByTagName("head");
                    container = container[0] || document.body;
                    script = container.appendChild(script);
                    return true
                }
            },
            supportsCORS: function() {
                var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : null;
                return this.settings.cors = (xhr && "withCredentials" in xhr)
            },
            sendRequest: function(options, beforeSend) {
                var rt = this.$root,
                    b = rt.browser,
                    st = rt.settings,
                    cst = this.settings,
                    uta = rt.utils.array,
                    hasBeforeSend = rt.what(beforeSend) == "function",
                    ptxt, removeParams, totalLength, ptxtMaxLength, i, leni;
                var urlCharLimit = {
                    IE: 2048,
                    Other: 8192
                };
                if (b.iPhone || b.iPad) {
                    var inputs = [],
                        formContainer;
                    if (hasBeforeSend) {
                        beforeSend.call(rt, "i")
                    }
                    for (var key in options.params) {
                        uta.push(inputs, {
                            tag: "input",
                            type: "hidden",
                            attributes: {
                                name: key
                            },
                            value: options.params[key]
                        })
                    }
                    formContainer = document.getElementById("IL_FORM_CONT");
                    if (formContainer) {
                        var parent = formContainer.parentNode;
                        parent.removeChild(formContainer)
                    }
                    formContainer = rt.utils.dom.createDOMFragment({
                        tag: "div",
                        parent: document.body,
                        id: "IL_FORM_CONT",
                        style: {
                            display: "none"
                        },
                        children: [{
                            tag: "form",
                            id: "IL_FORM",
                            children: inputs,
                            attributes: {
                                method: options.method,
                                action: options.url,
                                target: "IL_FRAME"
                            }
                        }, {
                            tag: "div",
                            id: "IL_FRAME_CONT",
                            innerHTML: '<iframe id="IL_FRAME" name="IL_FRAME" src="' + st.blankURL + '" width="1" height="1" frameborder="0" scrolling="no"></iframe>'
                        }]
                    });
                    if (formContainer) {
                        document.getElementById("IL_FORM").submit()
                    }
                } else {
                    if (cst.mode == "cors") {
                        if (hasBeforeSend) {
                            beforeSend.call(rt, "a")
                        }
                        this.sendAjaxRequest(options)
                    } else {
                        if (cst.mode == "messaging") {
                            if (cst.messagingReady) {
                                if (hasBeforeSend) {
                                    beforeSend.call(rt, "a")
                                }
                                var message = rt.utils.object.stringify({
                                    action: "ajax",
                                    data: options
                                });
                                this.sendMessage(message)
                            } else {
                                rt.utils.array.push(this.pendingRequests, [options, beforeSend])
                            }
                        } else {
                            if (cst.mode == "flash") {
                                if (b.IE) {
                                    if (hasBeforeSend) {
                                        beforeSend.call(rt, "f")
                                    }
                                    this.flash.embedIE(options)
                                } else {
                                    if (this.flash.flashLoadAmount == 10 && this.flash.flashElement) {
                                        if (hasBeforeSend) {
                                            beforeSend.call(rt, "f")
                                        }
                                        this.flash.sendURLRequest(options.url, options.method, options.params, options.onSuccess, options.onSuccess, 1)
                                    } else {
                                        rt.utils.array.push(this.pendingRequests, [options, beforeSend])
                                    }
                                }
                            } else {
                                if (hasBeforeSend) {
                                    beforeSend.call(rt, "s")
                                }
                                ptxt = options.params.ptxt;
                                removeParams = rt.utils.string.qw("ptxt plinks pimgs phdrs pdesc page_keyw ptitle"), i, leni = removeParams.length;
                                for (i = 0, leni = removeParams.length; i < leni; i++) {
                                    options.params[removeParams[i]] = ""
                                }
                                rt.utils.object.clean(options.params);
                                totalLength = rt.utils.object.toQueryString(options.params).length + options.url.length + document.location.href.length + navigator.userAgent.length + document.cookie.length + 400;
                                ptxtMaxLength = urlCharLimit[b.IE ? "IE" : "Other"] - totalLength;
                                if (ptxtMaxLength < 0) {
                                    rt.logger.error("Request too long for GET.", this.sendRequest);
                                    return
                                }
                                options.params.ptxt = (ptxtMaxLength > 0) ? ptxt.substring(0, ptxtMaxLength) : "";
                                options.params.twnum = rt.helpers.countWords(options.params.ptxt);
                                this.loadScript(options.url, options.params)
                            }
                        }
                    }
                }
            },
            sendMessage: function(message) {
                var rt = this.$root,
                    commFrame = rt.utils.dom.element.$("iceCommFrame");
                if (commFrame && commFrame.contentWindow) {
                    commFrame.contentWindow.postMessage(message, "*")
                } else {
                    rt.logger.error("Could not get comm frame.", this.sendMessage)
                }
            },
            receiveMessage: function(event) {
                var de = event.domEvent,
                    message = de.data,
                    data, rt = this.$root,
                    lg = rt.logger;
                var origin = (de.origin || de.domain).replace("http://", "");
                if (origin.indexOf(this.settings.responses.gsd.rs) != 0) {
                    return
                }
                if (message.charAt(0) == "(" && message.charAt(message.length - 1) == ")") {
                    message = message.substring(1, message.length - 1)
                }
                try {
                    data = rt.what(window.JSON) != "undefined" && window.JSON.parse ? window.JSON.parse(message) : eval("(" + message + ")")
                } catch (ex) {
                    lg.error("Data parsing failed: " + ex.message + ". message:" + message + " ", this.receiveMessage);
                    return
                }
                if (data.action == "error") {
                    lg.error(data.data, this.receiveMessage)
                } else {
                    if (data.action == "event") {
                        rt.event.fire(data.type, data.data)
                    } else {
                        if (!data.action) {
                            rt.event.fire("afterImpression", data)
                        }
                    }
                }
            },
            sendAjaxRequest: function(o) {
                var rt = this.$root,
                    xhr, xdr, xhrc = window.XMLHttpRequest ? new XMLHttpRequest() : null;
                if (rt.what(o) != "object") {
                    return null
                }
                if (xhrc && "withCredentials" in xhrc) {
                    xhr = xhrc
                } else {
                    if (window.XDomainRequest) {
                        xdr = new XDomainRequest()
                    }
                }
                if (!xhr && !xdr) {
                    return null
                }
                if (xhr) {
                    xhr.onreadystatechange = function() {
                        if (!req || !req.xhr) {
                            return
                        }
                        if (req.xhr.readyState == 4) {
                            reqComplete(req)
                        }
                    }
                } else {
                    xdr.onload = function() {
                        reqComplete(req)
                    }
                }
                function reqComplete(req) {
                    if (req.done || req.aborted) {
                        return
                    }
                    var o = req.xhr || req.xdr;
                    req.done = true;
                    if (req.xdr || req.xhr.status == 200) {
                        if (req.onSuccess) {
                            rt.comm.handleAjaxResponse({
                                action: "event",
                                type: req.onSuccess,
                                data: o.responseText
                            })
                        }
                    } else {
                        if (req.xdr || req.xhr.status != 0) {
                            rt.comm.handleAjaxResponse({
                                action: "error",
                                data: "Ajax request failed."
                            })
                        }
                    }
                }
                function reqTimeout() {
                    if (!req || req.done) {
                        return
                    }
                    var o = req.xhr || req.xdr;
                    req.aborted = true;
                    o.abort();
                    rt.comm.handleAjaxResponse({
                        action: "error",
                        data: "Ajax request timed out."
                    });
                    if (req.xhr) {
                        delete req.xhr["onreadystatechange"]
                    }
                }
                function process() {
                    var o = req.xhr || req.xdr,
                        params = req.params || {},
                        method = req.method || "GET",
                        url = req.url || window.location.href;
                    req.queryString = (req.queryString ? req.queryString + "&" : "") + rt.utils.object.toQueryString(params, true).substr(1);
                    if (req.method == "GET" && req.queryString) {
                        req.url += ((req.url.indexOf("?") > -1) ? "&" : "?") + req.queryString
                    }
                    if (req.timeout > 0) {
                        setTimeout(reqTimeout, req.timeout)
                    }
                    if (req.xhr) {
                        req.xhr.open(method, url, true)
                    } else {
                        req.xdr.open(method, url)
                    }
                    if (method == "POST") {
                        if (req.xhr && rt.what(req.xhr.setRequestHeader) == "function") {
                            req.xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
                        }
                        o.send(req.queryString)
                    } else {
                        o.send()
                    }
                }
                var req = rt.utils.object.extend({
                    xhr: xhr,
                    xdr: xdr,
                    process: process
                }, o);
                req.process();
                return req
            },
            handleAjaxResponse: function(response) {
                var rt = this.$root,
                    data;
                if (response.action == "error") {
                    rt.logger.error(response.data, this.handleAjaxResponse)
                } else {
                    if (response.action == "event") {
                        try {
                            data = rt.what(window.JSON) != "undefined" && window.JSON.parse ? window.JSON.parse(response.data) : eval("(" + response.data + ")")
                        } catch (ex) {
                            rt.logger.error("Data parsing failed: " + ex.message, this.handleAjaxResponse);
                            return
                        }
                        rt.event.fire(response.type, data)
                    }
                }
            },
            getRedirectUrl: function(hook, url, clickedOn) {
                var rt = this.$root,
                    st = rt.settings,
                    ut = rt.utils,
                    uto = ut.object,
                    data = rt.helpers.getHookData(hook.id),
                    ad = data.ads[hook.currentAdIndex];
                if (ad.noClickPrefix) {
                    return url || ad.redirectURL
                }
                var now = ut.date.now();
                var params = uto.clean(uto.extend({
                    rid: this.settings.responses.gsd.rid,
                    bdc: hook.bdc,
                    midx: hook.midx || hook.currentAdIndex,
                    rts: now,
                    vt: ut.timer.poll("adView" + hook.id),
                    clk_t: clickedOn,
                    jsv: rt.version,
                    prod_t: hook.prod || "",
                    tcln: hook.tcln || "",
                    pst: hook.pst || "",
                    cv: hook.viewed ? 1 : 0,
                    refq: st.impression.params.refq || "",
                    ifip: st.ifip || ""
                }, rt.helpers.getHookSD(hook.id)));
                params.rurl = url || ad.redirectURL || "";
                var serverClickUrl = ["http://", this.settings.responses.gsd.rs, "/action/clk.htm"].join("");
                return serverClickUrl + uto.toQueryString(params, true)
            }
        }, {
            settings: {
                responses: {},
                errorReportingUrl: "http://cel.infolinks.com/"
            },
            loadedScripts: {},
            pendingRequests: []
        }, true);
        comm.$create("flash", {
            getSwfUrl: function() {
                return ["http://", this.$root.settings.hosts.resources, "/flash/ic5.swf"].join("")
            },
            embed: function() {
                var rt = this.$root,
                    swf = this.getSwfUrl();
                rt.utils.timer.start("tmr_fsh");
                rt.utils.dom.createDOMFragment({
                    tag: "div",
                    parent: document.body,
                    style: {
                        display: "block",
                        position: "absolute",
                        top: "1px",
                        left: "1px",
                        width: "1px",
                        height: "1px"
                    },
                    innerHTML: ['<embed pluginspage="http://www.macromedia.com/go/getflashplayer" src="', swf, '" width="1" height="1" wmode="transparent" name="ilfc" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>'].join("")
                })
            },
            embedIE: function(options) {
                var rt = this.$root,
                    st = rt.settings,
                    ut = rt.utils,
                    swf = this.getSwfUrl(),
                    id = "ilfc" + rt.utils.number.next("flashEmbedConter");
                this.requests[options.url] = {
                    request: ut.object.extend(options, {
                        open: false,
                        complete: false
                    })
                };
                var flashVars = ut.object.toQueryString({
                    url: options.url,
                    method: options.method,
                    success: options.onSuccess,
                    error: options.onSuccess
                }, true).substr(1);
                if (options.params) {
                    flashVars += ["&", ut.object.toQueryString(options.params, true).substr(1)].join("")
                }
                window[id + "_DoFSCommand"] = function(command, args) {
                    var response, func;
                    try {
                        func = eval(command);
                        response = eval(decodeURIComponent(args))
                    } catch (ex) {
                        rt.logger.error("Error evaluating response.", this);
                        return
                    }
                    func.call(func.$parent, response)
                };
                rt.utils.timer.start("tmr_fsh");
                ut.dom.createDOMFragment({
                    tag: "div",
                    parent: document.body,
                    style: {
                        display: "block",
                        position: "absolute",
                        top: "1px",
                        left: "1px",
                        width: "1px",
                        height: "1px"
                    },
                    innerHTML: ['<object id="', id, '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="1" height="1" align="middle">', '<param name="movie" value="', swf, '" />', '<param name="quality" value="high" />', '<param name="allowScriptAccess" value="always" />', '<param name="wmode" value="transparent" />', '<param name="flashvars" value="environment=IE&pcode=', st.impression.pcode, "&", flashVars, '" />', "</object>", "<sc", "ript event=FSCommand(command,args) for=", id, ">\n ", id, "_DoFSCommand(command, args)</sc", "ript>"].join("")
                });
                this.flashLoadComplete()
            },
            flashLoadUpdate: function(loaded) {
                this.flashLoadAmount = loaded
            },
            flashLoadComplete: function() {
                var rt = this.$root;
                this.flashLoadAmount = 10;
                this.flashElement = window["ilfc" + rt.utils.number.get("flashEmbedConter")] || document["ilfc"];
                rt.utils.timer.stop("tmr_fsh");
                while (this.$parent.pendingRequests.length) {
                    this.$parent.sendRequest.apply(this.$parent, rt.comm.pendingRequests.shift())
                }
            },
            sendURLRequest: function(url, method, params, success, error, contextReferenceKey) {
                this.requests[url] = {
                    request: {
                        url: url,
                        method: method,
                        params: params,
                        success: success,
                        error: error,
                        contextReferenceKey: contextReferenceKey,
                        open: false,
                        complete: false
                    }
                };
                this.flashElement.sendURLRequest(url, method, params, success, error, contextReferenceKey)
            },
            requestOpenHandler: function(responseObj) {
                this.requests[responseObj.url].request.open = true
            },
            requestCompleteHandler: function(response) {
                var rt = this.$root,
                    data, request = this.requests[response.url];
                if (!request) {
                    rt.logger.error("Missing Request Object");
                    return
                }
                request.request.complete = true;
                request.response = response;
                if (response.success) {
                    var event = response.success;
                    try {
                        data = eval(response.data.replace(/^data=/, ""))
                    } catch (e) {
                        rt.logger.error("Error Evaluating Response.");
                        return
                    }
                    rt.event.fire(event, data)
                }
            },
            requestError: function(response) {
                this.requests[response.url].response = response;
                if (response.error) {
                    var event = response.error;
                    this.$root.event.fire(event, response)
                }
            },
            getFlashVersion: function() {
                var flashVer = -1,
                    swStr = "Shockwave Flash",
                    np = navigator.plugins,
                    swp, b = this.$root.browser;
                if (np && np.length) {
                    swp = np[swStr + " 2.0"] || np[swStr];
                    if (swp) {
                        flashVer = parseFloat(swp.description.replace(/[a-z ]+([0-9\.]+)[a-z ]+/i, "$1."))
                    }
                }
                if (flashVer == -1 && b.IE && b.Windows) {
                    var axo, vnum = [".9", ".7", ".6", ".3", ".3", ""],
                        vstr = [null, null, "WIN 6,0,21,0", null, "WIN 3,0,18,0", "WIN 2,0,0,11"];
                    for (var i = 0, leni = vnum.length; i < leni; i++) {
                        try {
                            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash" + vnum[i]);
                            flashVer = vstr[i] ? vstr[i] : axo.GetVariable("$version")
                        } catch (e) {}
                        if (flashVer != -1) {
                            break
                        }
                    }
                    if (flashVer != -1) {
                        flashVer = parseFloat(flashVer.replace(/^[a-z ]+/i, "").replace(/,/g, "."))
                    }
                }
                return flashVer
            }
        }, {
            requests: {}
        }, false);
        comm.bind({
            event: "initComm",
            listener: {
                init: function() {
                    var rt = this.$root,
                        cst = this.settings,
                        b = rt.browser;
                    cst.flashVersion = this.flash.getFlashVersion();
                    if ((b.iPhone || b.iPad) && window.postMessage) {
                        cst.mode = "formsubmit";
                        rt.event.dom.bind(window, {
                            event: "message",
                            listener: this.receiveMessage
                        })
                    } else {
                        if (this.supportsCORS()) {
                            cst.mode = "cors"
                        } else {
                            if (window.postMessage) {
                                cst.mode = "messaging";
                                cst.messagingReady = false;
                                rt.event.dom.bind(window, {
                                    event: "message",
                                    listener: this.receiveMessage
                                });
                                rt.utils.dom.createDOMFragment({
                                    tag: "div",
                                    style: {
                                        display: "none"
                                    },
                                    parent: document.body,
                                    innerHTML: ['<iframe id="iceCommFrame" src="http://', cst.responses.gsd.rs, '/comm2.htm" width="1" height="1" frameborder="0" scrolling="no"></iframe>'].join("")
                                })
                            } else {
                                if (cst.flashVersion >= 9) {
                                    cst.mode = "flash";
                                    if (!rt.browser.IE) {
                                        this.flash.embed()
                                    }
                                } else {
                                    cst.mode = "unsupported";
                                    rt.logger.error("Unsupported comm mode", this.init)
                                }
                            }
                        }
                    }
                }
            }
        });
        comm.bind({
            event: "getAds",
            listener: {
                getAds: function(event) {
                    var rt = this.$root,
                        uto = rt.utils.object,
                        et = rt.externalTags,
                        hook = rt.settings.hooksMap[event.data.hookId];
                    if (et.settings.oldAPI && /s|o/.test(hook.prod)) {
                        rt.event.fire("sendGetAds", event.data);
                        return
                    }
                    if (et.settings.oldAPI && uto.keys(et.settings.tags).length) {
                        var emds = uto.keys(et.settings.tags);
                        var tag = et.settings.tags[emds[0]];
                        var doExternal = Math.ceil(Math.random() * 100) <= 33;
                        if (tag.ads[0].prs[hook.prod] && doExternal && !et.settings.didExternal) {
                            et.settings.didExternal = true;
                            delete et.settings.tags[emds[0]];
                            tag.lid = hook.id;
                            tag.sentence = hook.sentence;
                            tag.ads[0].template = "external";
                            hook.externalTag = true;
                            var imp = this.settings.responses.impression;
                            hook.bdc = imp.prs[hook.prod] && imp.prs[hook.prod].messages && imp.prs[hook.prod].messages[tag.msg] ? imp.prs[hook.prod].messages[tag.msg].bdc : 0;
                            rt.event.fire(event.data.callback || "getadsResponse", tag);
                            return
                        } else {
                            et.settings.didExternal = false
                        }
                    }
                    if (uto.keys(et.settings.tags).length) {
                        hook.externalBidsTimeout = rt.event.fire("sendGetAds", uto.extend({
                            timeout: true
                        }, event.data), event.data.bidRequestTimeout || et.settings.bidRequestTimeout);
                        rt.event.fire("sendBids", event.data)
                    } else {
                        rt.event.fire("sendGetAds", event.data)
                    }
                }
            }
        });
        comm.bind({
            event: "sendGetAds",
            listener: {
                sendGetAds: function(event) {
                    var rt = this.$root,
                        hookId = event.data.hookId,
                        st = rt.settings,
                        ut = rt.utils,
                        hook = st.hooksMap[hookId],
                        gsd = rt.comm.settings.responses.gsd;
                    if (event.data.timeout) {
                        hook.killBids = true
                    } else {
                        clearTimeout(hook.externalBidsTimeout)
                    }
                    if (!rt.helpers.getHookData(hookId)) {
                        rt.helpers.setHookData(hookId, "pending")
                    }
                    hook.bdc = ++st.bdc;
                    var params = ut.object.clean(ut.object.extend({
                        lid: hookId,
                        rid: gsd.rid,
                        jsv: rt.version,
                        rts: ut.date.now(),
                        bdc: hook.bdc,
                        prod_t: hook.prod,
                        cfv: rt.comm.settings.flashVersion,
                        ifip: st.ifip,
                        cb: event.data.callback || "getadsResponse",
                        tcln: hook.tcln,
                        pst: hook.pst,
                        purl: st.customerUrl,
                        ref: st.impression.params.ref,
                        refq: st.impression.params.refq
                    }, event.data.params || {}, rt.helpers.getHookSD(hookId), rt.externalTags.getBidData(hook.externalTag), rt.externalTags.getViewedTagsParam()));
                    if ("irt".indexOf(hook.prod) == -1) {
                        if (hook.prod == "s" || hook.prod == "o") {
                            params.as = "728*90"
                        }
                    }
                    if (rt.what(window["x1"]) != "undefined" && rt.what(window["x2"]) != "undefined") {
                        params[window["x1"]] = window["x2"]
                    }
                    rt.comm.loadScript(gsd.rs + "/action/getads.htm", params)
                }
            }
        });
        comm.bind({
            event: "sendAdView",
            listener: {
                sendAdView: function(event) {
                    var rt = this.$root,
                        gsd = this.settings.responses.gsd,
                        uto = rt.utils.object;
                    var params = uto.extend({
                        rid: gsd.rid,
                        midx: 0,
                        rts: rt.utils.date.now(),
                        prod_t: "unknown",
                        jsv: rt.version
                    }, rt.helpers.getHookSD(event.data.hookId), event.data.params);
                    this.loadScript([gsd.rs, "/action/adview.htm"].join(""), params, "adViewed", event.data)
                }
            }
        });
        comm.bind({
            event: "adViewed",
            listener: {
                adViewed: function(event) {
                    var rt = this.$root,
                        hook = rt.settings.hooksMap[event.data.hookId];
                    hook.viewed = true
                }
            }
        });
        comm.bind({
            event: "doRedirect",
            listener: {
                doRedirect: function(event) {
                    var result = event.data;
                    var rt = this.$root,
                        st = rt.settings,
                        b = rt.browser,
                        ut = rt.utils,
                        hook = result.hook,
                        reuseWindow = rt.helpers.getHookBehavior(hook.id).adsReuseWindow,
                        winName;
                    if (st.clickStatus == "complete") {
                        return
                    }
                    if (!result.maxLength) {
                        result.maxLength = b.IE ? 2048 : 8192
                    }
                    var data = rt.helpers.getHookData(hook.id);
                    var url = result.url || data.ads[hook.currentAdIndex].redirectURL;
                    rt.event.fire(hook.type + "HookMouseout", {
                        hookId: hook.id
                    });
                    var hookNodeId = hook.node.id;
                    st.clickStatus = "complete";
                    if (hook.bubble) {
                        rt.event.fire("hideBubble", {
                            hookId: hook.id
                        })
                    }
                    hook = null;
                    if (url.length < result.maxLength) {
                        winName = hookNodeId;
                        try {
                            winName = st.adWin.name
                        } catch (ex) {}
                        if (b.IE && b.getVersion(true) < 9) {
                            var anchor = rt.utils.dom.createDOMFragment({
                                tag: "a",
                                parent: document.body,
                                attributes: {
                                    href: url
                                },
                                style: {
                                    display: "none"
                                }
                            });
                            if (!reuseWindow && st.adWin && winName == hookNodeId) {
                                anchor.target = winName
                            }
                            anchor.click()
                        } else {
                            if (!reuseWindow && st.adWin && winName == hookNodeId) {
                                try {
                                    st.adWin.location = url
                                } catch (ex) {
                                    window.location = url;
                                    st.adWin.close();
                                    st.adWin = null
                                }
                            } else {
                                window.location = url
                            }
                        }
                    } else {
                        var action = url,
                            inputs = null,
                            urlParamsIndex = url.indexOf("?");
                        if (urlParamsIndex != -1) {
                            action = url.substring(0, urlParamsIndex);
                            var params = ut.string.toObject(url.substring(urlParamsIndex + 1), null, true);
                            inputs = [];
                            for (var key in params) {
                                ut.array.push(inputs, {
                                    tag: "input",
                                    type: "hidden",
                                    value: params[key],
                                    attributes: {
                                        name: key
                                    }
                                })
                            }
                        }
                        var redirectForm = ut.dom.createDOMFragment({
                            tag: "form",
                            parent: document.body,
                            style: {
                                display: "none"
                            },
                            children: inputs,
                            attributes: ut.object.extend({
                                action: action,
                                method: "post"
                            }, reuseWindow ? {} : {
                                target: hookNodeId
                            })
                        });
                        redirectForm.submit()
                    }
                }
            }
        });
        comm.bind({
            event: "productClick",
            listener: {
                productClick: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        data = rt.helpers.getHookData(hookId),
                        clickType = event.data.clickType || hook.clickType;
                    if (st.clickStatus == "complete") {
                        return
                    }
                    if ((clickType == "onLink" || clickType == "onLinkAfterWinOpen") && data && data.ads[hook.currentAdIndex].redirectURL == "") {
                        st.clickStatus = "none";
                        if (st.adWin) {
                            rt.event.fire("hideBubble", {
                                hookId: hookId
                            });
                            st.adWin.close();
                            st.adWin = null
                        }
                        return
                    }
                    var url = this.getRedirectUrl(hook, event.data.url || null, clickType);
                    rt.event.fire("startClick", {
                        url: url,
                        hook: hook
                    })
                }
            }
        });
        comm.bind({
            event: "startClick",
            listener: {
                updateClickCookie: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        ut = rt.utils,
                        uto = ut.object,
                        now = rt.utils.date.now(),
                        data = event.data,
                        hook = data.hook;
                    var params = uto.clean(uto.extend({
                        rid: this.settings.responses.gsd.rid,
                        bdc: hook.bdc,
                        midx: hook.midx || hook.currentAdIndex,
                        rts: now,
                        vt: ut.timer.poll("adView" + hook.id),
                        clk_t: hook.clickType,
                        jsv: rt.version,
                        prod_t: hook.prod || "",
                        tcln: hook.tcln || "",
                        pst: hook.pst || "",
                        ifip: st.ifip || ""
                    }, rt.helpers.getHookSD(hook.id)));
                    var url = ["http://", this.settings.responses.gsd.rs, "/", now, "/ck.js"].join("");
                    this.loadScript(url, params, "doRedirect", data)
                }
            }
        });
        comm.bind({
            event: "commRemoteReady",
            listener: {
                commRemoteReady: function() {
                    var rt = this.$root,
                        uto = rt.utils.object,
                        st = this.settings,
                        key, data = [];
                    st.messagingReady = true;
                    var gsd = st.responses.gsd;
                    if (gsd.cks) {
                        for (key in gsd.cks) {
                            rt.utils.array.push(data, {
                                name: key,
                                value: gsd.cks[key],
                                expiration: "2y"
                            })
                        }
                        var message = uto.stringify({
                            action: "setcookie",
                            data: data
                        });
                        this.sendMessage(message)
                    }
                    while (this.pendingRequests.length) {
                        this.sendRequest.apply(this, this.pendingRequests.shift())
                    }
                }
            }
        });
        comm.bind({
            event: "sendErrorReport",
            listener: {
                sendErrorReport: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        gsd = rt.comm.settings.responses.gsd,
                        evt = null,
                        cbdata = null;
                    if (event.data.cbdata) {
                        evt = event.data.cbdata.evt;
                        cbdata = event.data.cbdata.data;
                        delete event.data.cbdata
                    }
                    this.loadScript(this.settings.errorReportingUrl, rt.utils.object.extend({
                        pid: st.customerId,
                        wsid: st.websiteId,
                        jsv: rt.version,
                        rid: gsd ? gsd.rid : ""
                    }, event.data || {}), evt, cbdata)
                }
            }
        });
        $root.$create("settings", {}, {
            svntest: "yes",
            supportedClients: {
                IE: 6,
                Firefox: 1.5,
                Safari: 3,
                MobileSafari: 4,
                Opera: 10,
                Chrome: 1,
                AppleWebKit: 533,
                ucweb: 7
            },
            hosts: {
                resourcesDefault: "resources.infolinks.com",
                scriptDefaultPath: "/js/"
            },
            productCodes: {
                i: "intext",
                t: "intag",
                s: "insearch",
                o: "insearch",
                f: "inframe"
            },
            nodeTypes: {
                ELEMENT: 1,
                DOCUMENT: 9,
                TEXT: 3,
                COMMENT: 8
            },
            baseZIndex: 9999999,
            bdc: 0,
            behavior: {
                def: {
                    linkColor: "009900",
                    bubbleShowDelay: 200,
                    bubbleHideDelay: 1000,
                    adsReuseWindow: true,
                    hoverRequestDelay: 20
                },
                sanitizer: {
                    linkColor: "color",
                    linkHoverColor: "color",
                    linkHoverBgColor: "color",
                    bubbleShowDelay: "int",
                    bubbleHideDelay: "int",
                    adsReuseWindow: "bool",
                    hoverRequestDelay: "int"
                }
            },
            hooksMap: {},
            hooksCount: 0,
            baseClass: "IL_BASE",
            clickStatus: "none",
            defaultLabel: "infolinks",
            defaultHomeUrl: "http://www.infolinks.com/?kid=bb&trackerid=101",
            defaultHelpUrl: "http://www.infolinks.com/opt-out.html?pid=<%= cid %>&wsid=<%= wsid %>",
            yourAdHereUrl: "http://www.infolinks.com/ads",
            white_labelLoaded: false,
            textLimits: {
                def: {
                    plinks: {
                        t: 2,
                        i: 100
                    },
                    pimgs: {
                        t: 2,
                        i: 100
                    },
                    phdrs: {
                        t: 2,
                        i: 100
                    },
                    pdesc: 1,
                    page_keyw: 2
                }
            },
            translations: {
                advertisement: {
                    en: "Advertisement",
                    es: "Aviso Publicitario"
                },
                yourAdHere: {
                    en: "Your Ad Here",
                    es: "Publique Aqu??"
                },
                clickHere: {
                    en: "Click here",
                    es: "Presione Aqu??"
                },
                searchingFor: {
                    en: "Searching for",
                    es: "Buscando"
                },
                nextSearchResultFor: {
                    en: "Next search result for",
                    es: "Nueva b??squeda para"
                },
                learnMore: {
                    en: "Learn More",
                    es: "Saber m??s"
                },
                adsBy: {
                    en: "Ads by",
                    es: "Anuncios"
                }
            }
        });
        $root.$create("harvest", {
            createInstance: function() {
                var o = {};
                o.texts = [];
                o.nodes = [];
                o.stopped = false;
                o.harvesting = false;
                o.firstNode = null;
                o.charCount = 0;
                o.insideAllowedNode = null;
                o.useAllowSettings = false;
                return o
            },
            setConditionalTags: function() {
                var rt = this.$root,
                    st = rt.settings,
                    hs = this.settings,
                    label = (st.white_label || st.defaultLabel).toUpperCase();
                hs.tagGenericOff = "INTEXT_OFF";
                hs.tagGenericOn = "INTEXT_ON";
                hs.tagGenericStop = "INTEXT_STOP";
                hs.tagGenericToggle = "INTEXT_TOGGLE";
                hs.tagOff = label + "_OFF";
                hs.tagOn = label + "_ON";
                hs.tagStop = label + "_STOP";
                hs.tagToggle = label + "_TOGGLE"
            },
            setHarvestEnabled: function() {
                var hs = this.settings;
                var bodyHtml = document.body.innerHTML;
                var indexOfCommentTag = function(tag) {
                        return bodyHtml.indexOf(["<!--", tag, "-->"].join(""))
                    };
                var onIndexGeneric = indexOfCommentTag(hs.tagGenericOn);
                var onIndexWL = indexOfCommentTag(hs.tagOn);
                var onIndex = (onIndexGeneric == -1 || onIndexWL == -1) ? Math.max(onIndexGeneric, onIndexWL) : Math.min(onIndexGeneric, onIndexWL);
                var offIndexGeneric = indexOfCommentTag(hs.tagGenericOff);
                var offIndexWL = indexOfCommentTag(hs.tagOff);
                var offIndex = (offIndexGeneric == -1 || offIndexWL == -1) ? Math.max(offIndexGeneric, offIndexWL) : Math.min(offIndexGeneric, offIndexWL);
                hs.enabled = (onIndex == -1 || (offIndex != -1 && onIndex > offIndex))
            },
            getHarvestedText: function(container) {
                var rt = this.$root,
                    st = rt.settings,
                    hs = this.settings,
                    hp = rt.helpers,
                    ut = rt.utils,
                    uta = ut.array,
                    hd = st.highlightDeny,
                    ha = st.highlightAllow,
                    instance = this.createInstance();
                hs.instances[hs.instances.length] = instance;
                if (hs.instances.length == 1) {
                    ut.timer.start("tmr_har")
                }
                if (ha) {
                    hs.allowedTags = uta.toObject(ha.tags, {}, 1);
                    hs.allowedIds = uta.toObject(ha.ids, {}, 1);
                    hs.allowedCls = uta.toObject(ha.cls, {}, 1);
                    for (var key in hs.allowedTags) {
                        if (hs.deniedTags[key]) {
                            delete hs.deniedTags[key]
                        }
                    }
                    if (!ha.min) {
                        ha.min = 1
                    }
                    instance.useAllowSettings = true
                }
                if (hd) {
                    hs.deniedTags = uta.toObject(hd.tags, hs.deniedTags, 1);
                    hs.deniedIds = uta.toObject(hd.ids, hs.deniedIds, 1);
                    hs.deniedCls = uta.toObject(hd.cls, hs.deniedCls, 1)
                }
                this.setConditionalTags();
                this.setHarvestEnabled();
                hs.allowOnclick = hp.getVar("allow_onclick");
                this.harvestText(container || document.body);
                var text = instance.texts.join("|");
                text = hp.normalizeText(text);
                var twnum = hp.countWords(text);
                if (instance.useAllowSettings && twnum < ha.min) {
                    instance.useAllowSettings = false;
                    this.harvestText(container || document.body);
                    text = instance.texts.join("|");
                    text = hp.normalizeText(text);
                    twnum = hp.countWords(text)
                }
                if (hs.instances.length == 1) {
                    ut.timer.stop("tmr_har")
                }
                instance.text = text;
                return instance
            },
            isHarvestableNode: function(node) {
                var hs = this.settings,
                    ut = this.$root.utils;
                return !((node.getAttribute("onclick") != null && node != document.body && !hs.allowOnclick) || hs.deniedTags[node.tagName.toLowerCase()] || (node.id && hs.deniedIds[node.id]) || (node.className && ut.object.hasKey(hs.deniedCls, node.className.split(/\s+/))) || (!this.$root.comm.settings.responses.gsd.wd.ht && !ut.dom.element.isVisible(node)))
            },
            harvestText: function(node) {
                var rt = this.$root,
                    hs = this.settings,
                    nodeType = null,
                    ut = rt.utils,
                    uto = ut.object,
                    tm = ut.timer,
                    nt = rt.settings.nodeTypes,
                    i, leni, text, instanceNum = hs.instances.length - 1,
                    instance = hs.instances[instanceNum];
                if (!instance.harvesting) {
                    instance.harvesting = true;
                    instance.stopped = false;
                    tm.start("harvest" + instanceNum);
                    instance.nodes = [];
                    instance.texts = [];
                    instance.charCount = 0;
                    instance.firstNode = node;
                    if (!instance.useAllowSettings) {
                        instance.insideAllowedNode = node
                    }
                }
                if (instance.stopped || hs.timeLimit != -1 && tm.poll("harvest" + instanceNum) >= hs.timeLimit) {
                    instance.stopped = true
                } else {
                    nodeType = node.nodeType
                }
                var hasAllowedIds = uto.keys(hs.allowedIds).length > 0,
                    hasAllowedCls = uto.keys(hs.allowedCls).length > 0;
                switch (nodeType) {
                case nt.DOCUMENT:
                case nt.ELEMENT:
                    if (this.isHarvestableNode(node)) {
                        if (instance.useAllowSettings && !instance.insideAllowedNode && !hs.deniedTags[node.tagName.toLowerCase()] && ((!hasAllowedIds && !hasAllowedCls) || (hasAllowedIds && node.id && hs.allowedIds[node.id]) || (hasAllowedCls && node.className && uto.hasKey(hs.allowedCls, node.className.split(/\s+/))))) {
                            instance.insideAllowedNode = node
                        }
                        for (i = 0, leni = node.childNodes.length; i < leni; i++) {
                            if (instance.stopped) {
                                break
                            }
                            this.harvestText(node.childNodes[i])
                        }
                        if (instance.insideAllowedNode == node) {
                            instance.insideAllowedNode = null
                        }
                    }
                    break;
                case nt.TEXT:
                    if (hs.enabled && instance.insideAllowedNode) {
                        text = ut.string.trim(node.data).replace(/\s+/g, " ");
                        if (text.length > 3) {
                            if (hs.charLimit != -1 && instance.charCount + text.length > hs.charLimit) {
                                instance.stopped = true;
                                text = text.substring(0, hs.charLimit - instance.charCount).replace(/\S+$/, "")
                            }
                            ut.array.push(instance.nodes, node);
                            ut.array.push(instance.texts, text);
                            instance.charCount += text.length
                        }
                    }
                    break;
                case nt.COMMENT:
                    this.checkConditionalTags(ut.string.trim(node.data), hs)
                }
                if (instance.firstNode == node) {
                    instance.harvesting = false;
                    tm.stop("harvest" + instanceNum)
                }
            },
            checkConditionalTags: function(value, st) {
                var c = this.settings;
                switch (value) {
                case c.tagOff:
                case c.tagGenericOff:
                    st.enabled = false;
                    break;
                case c.tagOn:
                case c.tagGenericOn:
                    st.enabled = true;
                    break;
                case c.tagToggle:
                case c.tagGenericToggle:
                    st.enabled = !st.enabled;
                    break;
                case c.tagStop:
                case c.tagGenericStop:
                    st.stopped = true
                }
            }
        }, {
            settings: {
                allowedCls: null,
                allowedIds: null,
                charLimit: 8000,
                deniedCls: {
                    footer: 1,
                    wibiyaToolbar_window: 1
                },
                deniedIds: {
                    footer: 1,
                    wibiyaToolbar: 1,
                    wibiyaToolbar_window_template: 1
                },
                deniedTags: {
                    a: 1,
                    acronym: 1,
                    address: 1,
                    br: 1,
                    dd: 1,
                    dl: 1,
                    dt: 1,
                    embed: 1,
                    fieldset: 1,
                    h1: 1,
                    h2: 1,
                    h3: 1,
                    h4: 1,
                    h5: 1,
                    h6: 1,
                    iframe: 1,
                    input: 1,
                    label: 1,
                    legend: 1,
                    noscript: 1,
                    object: 1,
                    param: 1,
                    script: 1,
                    select: 1,
                    style: 1,
                    textarea: 1,
                    th: 1,
                    title: 1,
                    m: 1
                },
                enabled: true,
                timeLimit: 1000,
                instances: []
            }
        });
        var shared = $root.$create("shared", {}, null, true);
        shared.bind({
            event: "main",
            listener: {
                main: function() {
                    var rt = this.$root,
                        ut = rt.utils,
                        st = rt.settings;
                    st.cconf = ut.string.toObject(ut.cookie.get("$ice-conf")) || {};
                    if (st.cconf.logto) {
                        rt.logger.output = st.cconf.logto
                    }
                    if (st.cconf.er) {
                        rt.logger.errorReporting = parseInt(st.cconf.er, 10)
                    }
                    rt.utils.timer.start("tmr_wait");
                    rt.settings.boot = (window["INFOLINKS"] && window["INFOLINKS"]._boot) ? window["INFOLINKS"]._boot : window.$iceboot ? window.$iceboot : null;
                    var $this = this;
                    rt.helpers.getVar("white_label", rt.settings);
                    if (rt.helpers.chanceIntegration()) {
                        return
                    }
                    if (document.readyState && /complete|interactive/i.test(document.readyState)) {
                        $this.$root.event.fire("domready");
                        return
                    }
                    if (this.$root.what(document.addEventListener) == "function") {
                        document.addEventListener("DOMContentLoaded", function() {
                            $this.$root.event.fire("domready")
                        }, false)
                    } else {
                        document.onreadystatechange = function() {
                            if (/complete|interactive/i.test(document.readyState)) {
                                document.onreadystatechange = null;
                                $this.$root.event.fire("domready")
                            }
                        }
                    }
                }
            }
        });
        shared.bind({
            event: "domready",
            listener: {
                domready: function() {
                    var rt = this.$root,
                        hp = rt.helpers,
                        msg, i, leni, pluginUrl, src;
                    rt.utils.timer.stop("tmr_wait");
                    rt.utils.timer.start("tmr_all");
                    if (rt.settings._initialized) {
                        msg = "Trying to re-run an application that has already been initialized."
                    } else {
                        if (!hp.isSupportedClient()) {
                            msg = "Client is not supported: " + rt.browser.toString()
                        }
                    }
                    if (msg) {
                        rt.logger.error(msg, this.domready);
                        return
                    }
                    rt.settings._initialized = true;
                    hp.setHosts();
                    if (rt.demo.isDemo()) {
                        rt.event.fire("demo");
                        return
                    }
                    rt.event.fire("loadPlugins")
                }
            }
        });
        shared.bind({
            event: "loadPlugins",
            listener: {
                loadPlugins: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        hs = st.hosts,
                        src, i, leni, pluginUrl;
                    if (rt.settings.white_label && !rt.settings.white_labelLoaded) {
                        rt.settings.white_labelLoaded = true;
                        rt.comm.loadScript([hs.resources, hs.scriptDefaultPath, "0/wl/", st.white_label, ".js"].join(""), null, "loadPlugins");
                        return
                    }
                    var plugins = rt.helpers.getVar("plugins");
                    if (plugins) {
                        src = rt.settings.hosts.src ? "/src" : "";
                        if (rt.what(plugins) == "string") {
                            plugins = [plugins]
                        }
                        rt.settings.plugins = {};
                        for (i = 0, leni = plugins.length; i < leni; i++) {
                            pluginUrl = (plugins[i].match(/https?:\/\//)) ? plugins[i] : [rt.settings.hosts.resources, "/js", src, "/0/plugins/", plugins[i], ".js"].join("");
                            rt.settings.plugins[pluginUrl] = false;
                            rt.comm.loadScript(pluginUrl, null, "pluginLoaded", {
                                plugin: pluginUrl
                            })
                        }
                    } else {
                        rt.event.fire("beforeGSD")
                    }
                }
            }
        });
        shared.bind({
            event: "pluginLoaded",
            listener: {
                pluginLoaded: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        key;
                    st.plugins[event.data.plugin] = true;
                    if (rt.utils.array.indexOf(rt.utils.object.values(st.plugins), false) == -1) {
                        for (key in rt.plugins) {
                            if (rt.plugins[key] && rt.what(rt.plugins[key].init) == "function") {
                                rt.plugins[key].init()
                            }
                        }
                        rt.event.fire("beforeGSD")
                    }
                }
            }
        });
        shared.bind({
            event: "beforeGSD",
            listener: {
                prepareGSD: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        hp = rt.helpers;
                    hp.getCustomerId();
                    var docRef = hp.getReferrer();
                    var params = {
                        evt: "afterGSD",
                        pid: st.customerId,
                        wsid: st.websiteId,
                        pdom: location.hostname,
                        purl: st.customerUrl,
                        jsv: rt.version
                    };
                    if (docRef.ref.length) {
                        params.ref = docRef.ref
                    }
                    if (docRef.refq.length) {
                        params.refq = docRef.refq
                    }
                    rt.utils.timer.start("tmr_gsd");
                    rt.comm.loadScript([st.hosts.router, "/gsd/", rt.utils.date.now(), rt.utils.number.next("nocache")].join(""), params)
                }
            }
        });
        shared.bind({
            event: "afterGSD",
            listener: {
                gsdCallback: function(evt) {
                    var rt = this.$root,
                        data = evt.data,
                        tl = rt.settings.textLimits;
                    rt.utils.timer.stop("tmr_gsd");
                    data.rs = rt.utils.string.toObject(location.search, "il.rt") || rt.helpers.getVar("runtime_server") || data.rs || null;
                    var msg = "";
                    if (!data.rs) {
                        msg = "GSD Response is missing `rs`."
                    }
                    if (!data.prs) {
                        msg = "GSD Response is missing `prs`."
                    }
                    if (msg) {
                        rt.logger.error(msg, this.gsdCallback, true);
                        return
                    }
                    data.rs = data.rs.toLowerCase();
                    if (!data.makey) {
                        data.makey = ""
                    }
                    rt.helpers.setDefaultWebsiteDirectives(data);
                    tl.merged = rt.utils.object.extend(tl.def, data.wd || {});
                    if (data.prs.indexOf("r") != -1) {
                        if (data.prs.indexOf("t") == -1) {
                            data.prs += ",t"
                        } else {
                            data.wd.rtm = "b"
                        }
                    }
                    rt.comm.settings.responses.gsd = data;
                    rt.event.fire("initComm");
                    if (/i|t/.test(data.prs)) {
                        rt.event.fire("beforeHarvest")
                    } else {
                        rt.event.fire("beforeImpression")
                    }
                }
            }
        });
        shared.bind({
            event: "beforeHarvest",
            listener: {
                prepareHarvest: function() {
                    var rt = this.$root,
                        hp = rt.helpers,
                        st = rt.settings,
                        hd = null,
                        gsd = rt.comm.settings.responses.gsd;
                    hd = hp.getVar("highlight_deny") || gsd.wd.hd || {};
                    if (rt.what(window["vBulletin"]) != "undefined") {
                        if (!hd.cls) {
                            hd.cls = []
                        }
                        rt.utils.array.push(hd.cls, "thead", "tcat", "navbar", "tfoot", "alt2")
                    }
                    st.$extend({
                        highlightDeny: hd,
                        highlightAllow: hp.getVar("highlight_allow") || gsd.wd.ha
                    });
                    rt.updater.settings.className = rt.what(window["blogger"]) != "undefined" ? "hentry" : (hp.getVar("updater_class") || hp.getVar("refreshed_container"));
                    var harvested = rt.harvest.getHarvestedText();
                    rt.event.fire("beforeImpression", {
                        ptxt: harvested.text
                    })
                }
            }
        });
        shared.bind({
            event: "beforeImpression",
            listener: {
                prepareImpression: function(event) {
                    var rt = this.$root,
                        ut = rt.utils,
                        hp = rt.helpers,
                        st = rt.settings,
                        prs, prods = rt.products,
                        cm = rt.comm,
                        gsd = cm.settings.responses.gsd,
                        tgst = prods.intag.settings,
                        crt = document.getElementsByName(tgst.relatedTags).length || "",
                        ctc = document.getElementsByName(tgst.prodId).length || "";
                    if (!st.impression) {
                        st.impression = {
                            params: {}
                        }
                    }
                    var imp = st.impression;
                    var impp = imp.params;
                    prs = ut.array.toObject(gsd.prs.split(","), {}, true);
                    if (event.data && event.data.updater) {
                        prs = {
                            i: true
                        }
                    }
                    impp.ptxt = event.data && gsd.prs != "s" ? event.data.ptxt : "";
                    impp.twnum = hp.countWords(impp.ptxt);
                    if (prs["i"] && impp.twnum < gsd.wd.qmin) {
                        delete prs["i"]
                    }
                    if (prs["t"] && gsd.wd.rtm == "m" && !crt && !ctc) {
                        delete prs["t"]
                    }
                    if (rt.helpers.getVar("inframe_disable") === true) {
                        delete prs["f"]
                    }
                    if (prs["f"]) {
                        var gpmp = prods.inframe.buildImpPageMarginsParam();
                        if (gpmp) {
                            impp.ifs = gpmp
                        } else {
                            delete prs["f"]
                        }
                    }
                    impp.prs = ut.object.keys(prs).join(",");
                    if (impp.prs == "") {
                        impp.prs = ".";
                        impp.ptxt = ""
                    }
                    if (!event.data || !event.data.updater) {
                        impp.pid = st.customerId;
                        impp.wsid = st.websiteId;
                        impp.makey = gsd.makey;
                        impp.anow = hp.getVar("anow") || "";
                        impp.rid = gsd.rid || "";
                        impp.purl = st.customerUrl;
                        impp.jsv = rt.version;
                        impp.ms = gsd.ms || "";
                        impp.gid = gsd.wd.gid || "";
                        impp.rh = hp.getVar("require_highlight") || "";
                        impp.by = "u";
                        impp.crt = crt;
                        impp.ctc = ctc;
                        impp.cfv = cm.settings.flashVersion;
                        st.ifip = hp.getVar("ifip") || "";
                        st.blankURL = ["http://", st.hosts.resources, "/static/blank.html"].join("");
                        impp.ifip = st.ifip;
                        impp.pf = hp.getPlatform();
                        impp.ptitle = hp.normalizeText(document.title);
                        impp.ref = st.ref;
                        impp.refq = st.refq;
                        impp.csilv = hp.getSilverlightVersion();
                        if (impp.prs.match(/[^so,\.]/) != null) {
                            impp.plinks = hp.getTagTexts("a", "text", "plinks");
                            impp.pimgs = hp.getTagTexts("img", "alt", "pimgs");
                            impp.phdrs = hp.getTagTexts(ut.string.qw("h1 h2 h3 h4 h5 h6"), "text", "phdrs");
                            impp.pdesc = hp.getMetaContent("description", st.textLimits.merged.pdesc);
                            impp.page_keyw = hp.getMetaContent("keywords", st.textLimits.merged.page_keyw)
                        }
                        imp.pcode = (hp.getVar("encoding") || document.characterSet || document.charset || "").toLowerCase();
                        imp.url = ["http://", gsd.rs, "/action/doq.htm", "?pcode=", imp.pcode, "&r=", ut.date.now(), ut.number.next("nocache")].join("");
                        if (rt.browser.IE && cm.settings.mode == "cors") {
                            imp.url += "&oct=1"
                        }
                        imp.method = "POST";
                        imp.onSuccess = "afterImpression"
                    }
                    ut.object.extend(impp, gsd.cks || {});
                    impp.rts = ut.date.now();
                    imp.params = ut.object.clean(impp);
                    cm.sendRequest(imp, function(sendBy) {
                        imp.params.by = sendBy;
                        if (!ut.timer.poll("tmr_imp")) {
                            ut.timer.start("tmr_imp")
                        }
                    })
                }
            }
        });
        shared.bind({
            event: "afterImpression",
            listener: {
                handleImpressionResponse: function(event) {
                    var rt = this.$root,
                        utt = rt.utils.timer,
                        response, prs;
                    if (!utt.delta("tmr_imp")) {
                        utt.stop("tmr_imp")
                    }
                    response = rt.helpers.processImpressionResponse(event.data);
                    if (rt.what(response) != "object") {
                        rt.logger.error("Bad Impression response.", true);
                        return
                    }
                    prs = response.prs;
                    if (prs.r) {
                        if (prs.t) {
                            prs.t.sentences = rt.utils.array.uniq(rt.utils.array.concat(prs.t.sentences, prs.r.sentences));
                            rt.utils.object.extend(prs.t.behavior, prs.r.behavior)
                        } else {
                            prs.t = prs.r;
                            delete prs.r
                        }
                    }
                    rt.comm.settings.responses.impression = response;
                    rt.externalTags.init();
                    rt.event.fire("preRenderProducts")
                }
            }
        });
        shared.bind({
            event: "preRenderProducts",
            listener: {
                preRenderProducts: function() {
                    var rt = this.$root,
                        hp = rt.helpers,
                        st = rt.settings,
                        bh = st.behavior,
                        ut = rt.utils;
                    bh.customer = hp.getCustomerBehavior("link_color link_hover_color link_hover_bg_color ads_reuse_window bubble_direction bubble_logo_url bubble_logo_url_downgrade bubble_logo_width bubble_logo_height bubble_logo_link bubble_help_link");
                    bh.impression = hp.renameBehaviorProperties(rt.comm.settings.responses.impression.behavior_imp || {});
                    hp.createBaseClasses();
                    st.homeUrl = bh.customer.bubbleLogoLink || st.defaultHomeUrl;
                    st.helpUrl = rt.utils.VeST(bh.customer.bubbleHelpLink || bh.customer.bubbleLogoLink || st.defaultHelpUrl, {
                        cid: st.customerId,
                        wsid: st.websiteId
                    });
                    st.productRenderStatus = ut.array.toObject(ut.object.keys(st.productCodes), {}, "before");
                    this.$root.event.fire("renderProduct")
                }
            }
        });
        shared.bind({
            event: "productRenderStatus",
            listener: {
                productRenderStatus: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        ut = rt.utils,
                        ps = st.productRenderStatus,
                        data = event.data;
                    ps[data.prod] = data.status;
                    if (data.status == "failed") {
                        rt.logger.error([st.productCodes[data.prod], " failed. reason: ", data.reason].join(""), this.productRenderStatus)
                    }
                    if (!/before|during/.test(ut.object.values(ps).join(","))) {
                        this.$root.event.fire("afterRenderProducts")
                    }
                }
            }
        });
        shared.bind({
            event: "afterRenderProducts",
            listener: {
                productsRendedred: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        gsd = rt.comm.settings.responses.gsd,
                        i, len, cb, src = st.hosts.src ? "/src" : "";
                    if (/i|r|t/.test(gsd.prs)) {
                        rt.helpers.mapUnhoverableAreas()
                    }
                    if (rt.what(gsd.incs) != "undefined") {
                        for (i = 0, len = gsd.incs.length; i < len; ++i) {
                            var func = function(name, params) {
                                    return function() {
                                        if (rt.plugins[name] && rt.what(rt.plugins[name].init) == "function") {
                                            rt.plugins[name].init(params)
                                        }
                                    }
                                };
                            cb = func(gsd.incs[i].s, gsd.incs[i].p);
                            rt.comm.loadScript([st.hosts.resources, "/js", src, "/0/plugins/", gsd.incs[i].s, ".js"].join(""), null, cb)
                        }
                    }
                    if (rt.updater.settings.className) {
                        rt.event.fire("initUpdater")
                    }
                    rt.utils.timer.stop("tmr_all");
                    rt.event.fire("sendImpressionLog")
                }
            }
        });
        shared.bind({
            event: "sendImpressionLog",
            listener: {
                sendImpressionLog: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        ut = rt.utils,
                        uta = ut.array,
                        tmr = ut.timer,
                        res = rt.comm.settings.responses,
                        gsd = res.gsd;
                    st.sendClientLog = rt.helpers.getVar("send_client_log") || gsd.scl || false;
                    if (!st.sendClientLog) {
                        return
                    }
                    var prods = rt.products,
                        ist = prods.intext.settings,
                        tst = prods.intag.settings,
                        sentence, i, leni, hook, intxt_sen = [];
                    var params = {
                        rid: gsd.rid,
                        makey: gsd.makey,
                        tmr_scr: st.boot && st.boot.tmr_scr ? ut.date.now() - st.boot.tmr_scr : -1,
                        tmr_wait: tmr.delta("tmr_wait") || -1,
                        tmr_gsd: tmr.delta("tmr_gsd") || -1,
                        tmr_har: tmr.delta("tmr_har") || -1,
                        tmr_imp: tmr.delta("tmr_imp") || -1,
                        tmr_dwq: tmr.delta("tmr_imp") || -1,
                        tmr_hi: tmr.delta("tmr_hi") || -1,
                        tmr_fsh: tmr.delta("tmr_fsh") || -1,
                        tmr_all: tmr.delta("tmr_all") || -1
                    };
                    if (gsd.prs.indexOf(ist.prodCode) != -1) {
                        params.intxt_num = [ist.rendered, ut.object.keys(ist.sentences).length].join("*");
                        for (sentence in ist.sentences) {
                            for (i = 0, leni = ist.sentences[sentence].hooks.length; i < leni; i++) {
                                hook = ist.sentences[sentence].hooks[i];
                                uta.push(intxt_sen, [sentence, hook.visible ? 1 : 0, hook.pos.left, hook.pos.top].join("_"))
                            }
                        }
                        params.intxt_sen = intxt_sen.join("*")
                    }
                    if (gsd.prs.indexOf(tst.prodCode) != -1) {
                        var tCldSent = (res.impression.prs[tst.prodCode] || {
                            sentences: []
                        }).sentences.length;
                        params.tCld_num = [uta.sum(uta.map(tst.instances, function(instance) {
                            return instance.hooksCount
                        })), tCldSent].join("*");
                        if (tst.instances.length) {
                            params.tCld_pos = [tst.instances[0].pos.left, tst.instances[0].pos.top].join("*")
                        }
                    }
                    rt.comm.loadScript(gsd.rs + "/action/dcil.htm", params)
                }
            }
        });
        $root.event.dom.bind(document, {
            event: "keyup",
            listener: {
                keyboardShortcuts: function(event) {
                    var evt = event.domEvent,
                        rt = event.$root,
                        logger = rt.logger;
                    if (evt.keyCode == 76 && evt.ctrlKey && evt.altKey) {
                        logger.output = logger.output == "console" ? "none" : "console";
                        if (rt.what(window.console) != "undefined") {
                            console.info("Logging to console turned " + (logger.output == "console" ? "on." : "off."))
                        }
                    } else {
                        if (evt.keyCode == 67 && evt.ctrlKey && evt.altKey) {
                            if (rt.what(window.console) != "undefined") {
                                console.clear()
                            }
                        }
                    }
                }
            }
        });
        var products = $root.$create("products", {}, null, true);
        var intext = products.$create("intext", {
            createCandidate: function(node, parentNode, sentence) {
                var rt = this.$root,
                    ut = rt.utils,
                    dm = ut.dom,
                    o = {};
                o.sentence = sentence;
                o.node = node;
                o.parentNode = parentNode;
                o.rendered = false;
                o.type = "intext";
                o.prod = "i";
                o.bubble = ut.object.clone(rt.bubble.settings.base);
                o.fontSize = (node.nodeType == 1 ? parseInt(dm.element.getStyle(node, "lineHeight"), 10) : parseInt(dm.element.getStyle(parentNode, "fontSize"), 10)) || 0;
                o.visible = dm.element.isVisible(parentNode);
                o.onViewPort = dm.element.isOnViewport(parentNode);
                o.wordCount = (parentNode.innerText || parentNode.textContent).replace(/\s+/g, " ").length;
                o.importance = parentNode.offsetWidth / dm.viewport.getWidth();
                return o
            },
            estimateCandidatesFontSizeIE: function(candidates) {
                var rt = this.$root,
                    b = rt.browser,
                    c;
                if (!b.IE || b.getVersion(true) >= 9) {
                    return
                }
                for (var i = 0, leni = candidates.length; i < leni; i++) {
                    c = candidates[i];
                    c.fontSize = c.node.firstChild.offsetHeight || 0
                }
            },
            scoreFactorsCalc: {
                fontSize: function(v) {
                    return !v || v > 16 || v < 10 ? 0 : 1
                },
                wordCount: function(v) {
                    return v < 10 ? 0 : v < 20 ? 0.3 : v < 30 ? 0.6 : 1
                },
                importance: function(v) {
                    return v > 0.4 ? 1 : v > 0.2 ? 0.5 : v
                }
            },
            scoreCandidates: function(candidates) {
                var sf = this.settings.scoreFactors,
                    calc = this.scoreFactorsCalc,
                    c, i, leni;
                for (i = 0, leni = candidates.length; i < leni; i++) {
                    c = candidates[i];
                    c.score = calc.fontSize(c.fontSize) * sf.fontSize + (c.visible ? 1 : 0) * sf.visible + (c.onViewPort ? 1 : 0) * sf.onViewPort + calc.wordCount(c.wordCount) * sf.wordCount + calc.importance(c.importance) * sf.importance
                }
            },
            createStyleSheet: function() {
                var rt = this.$root,
                    ist = this.settings,
                    bh = ist.behavior.merged,
                    b = rt.browser,
                    dm = rt.utils.dom,
                    dmst = dm.style;
                var cs = dm.element.getStyle(document.body);
                if (cs && cs.position == "relative" && cs.width && parseInt(cs.width, 10) < dm.document.getWidth()) {
                    document.body.style.position = "static"
                }
                var underline = dmst.buildHookUnderlineCSS(bh.underline, bh.linkColor, true);
                dmst.addRule("." + ist.hookClass, [underline, "color:", bh.linkColor, " !important; background:transparent none repeat scroll 0% !important;cursor:pointer !important;position:static;display:inline !important;padding:0 0 1px 0 !important;float:none !important;"].join(""));
                if (bh.linkHoverColor) {
                    dmst.addRule("." + ist.hookClass + "_HOVER", ["color:", bh.linkHoverColor, " !important;border-bottom-color:", bh.linkHoverColor, " !important;"].join(""))
                }
                if (bh.simanitIcon) {
                    if (b.IE && b.getVersion(true) <= 7) {
                        dmst.addRule("." + ist.hookClass + "_ICON", ["display:inline-block !important; position:static !important;cursor:pointer !important;margin:0 !important;padding:0 !important;background:transparent url(", bh.simanitIcon, ") no-repeat scroll ", bh.simanitPosition, " center; width:", bh.simanitWidth, "px !important;float:none !important;"].join(""))
                    } else {
                        dmst.addRule("." + ist.hookClass + "_ICON", ["display:inline !important;position:static !important;cursor:pointer !important;margin:0 !important;padding:0 !important;background:transparent url(", bh.simanitIcon, ") no-repeat scroll ", bh.simanitPosition, " center;padding-", bh.simanitPosition, ":", bh.simanitWidth, "px !important; float:none !important;", b.IE ? "height:1%;" : ""].join(""))
                    }
                    if (bh.simanitOver) {
                        dmst.addRule("." + ist.hookClass + "_ICON_OVER", ["background-image:url(", bh.simanitOver, ");"].join(""))
                    }
                }
            },
            createHook: function(hook, textNode, updater) {
                var rt = this.$root,
                    ist = this.settings,
                    st = rt.settings,
                    bh = ist.behavior.merged,
                    b = rt.browser,
                    node;
                node = hook.node = document.createElement("span");
                hook.id = ++st.hooksCount;
                ist.hooksCount++;
                node.id = ist.hookClass + hook.id;
                if (updater) {
                    hook.updater = updater
                }
                st.hooksMap[hook.id] = hook;
                node.className = ist.hookClass;
                var text = textNode.data || textNode.innerHTML.replace(/<\/?span>/ig, "");
                if (bh.simanitIcon) {
                    var simanitTag = ['<span class="', ist.hookClass, '_ICON"></span>'].join("");
                    node.innerHTML = bh.simanitPosition == "left" ? simanitTag + text : text + simanitTag
                } else {
                    node.innerHTML = text
                }
                var ps = rt.utils.dom.element.getStyle(hook.parentNode),
                    css = [],
                    push = rt.utils.array.push;
                if (ps["fontFamily"]) {
                    push(css, "font-family:", ps["fontFamily"], " !important;")
                }
                if (ps["fontWeight"]) {
                    push(css, "font-weight:", ps["fontWeight"], " !important;")
                }
                if (ps["fontStyle"]) {
                    push(css, "font-style:", ps["fontStyle"], " !important;")
                }
                if ((!b.IE || (b.getVersion(true) > 8)) && !b.Opera && ps["fontSize"] && ps["fontSize"].match(/px$/) != null) {
                    push(css, "font-size:", ps["fontSize"], " !important;")
                }
                if (textNode.nodeType == 1 || b.IE) {
                    push(css, this.fixIEAdNodeStyle(textNode))
                }
                rt.utils.dom.style.addRule("#" + node.id, css.join(""));
                hook.currentAdIndex = 0;
                rt.helpers.bindHookEvents(hook);
                return node
            },
            fixIEAdNodeStyle: function(node) {
                var rt = this.$root,
                    bh = this.settings.behavior.merged,
                    b = rt.browser,
                    ut = rt.utils,
                    dmel = ut.dom.element,
                    push = ut.array.push,
                    css = [];
                if (node.nodeType != 1) {
                    node = node.parentNode
                }
                if (b.getVersion() >= 7 && bh.underline == "double") {
                    push(css, "border:1px solid transparent; border-bottom:1px solid ", bh.linkColor, ";")
                }
                if (bh.underline != "single" && bh.underline != "none") {
                    push(css, "padding-bottom:2px;")
                }
                var parent = node.offsetParent,
                    nodePos = dmel.offset(node);
                if (parent && parent.tagName.toLowerCase().match(/^(?:li|td)$/) != null) {
                    if (nodePos.top + node.offsetHeight >= dmel.offset(parent).top + parent.offsetHeight) {
                        dmel.setStyle(parent, {
                            paddingBottom: "3px"
                        })
                    }
                }
                if (nodePos.top + node.offsetHeight > document.body.clientHeight) {
                    dmel.setStyle(document.body, {
                        paddingBottom: "3px"
                    })
                }
                parent = node.parentNode;
                if (bh.underline == "double" && dmel.getStyle(parent, "styleFloat") && parseInt(dmel.getStyle(parent, "paddingBottom")) < 2 && parent.offsetHeight < 18) {
                    dmel.setStyle(parent, {
                        paddingBottom: "2px"
                    })
                }
                return css.join("")
            },
            revertCandidateNodesIE: function(updater) {
                var rt = this.$root,
                    candidates, sentence, i, leni, textNode, node, parentNode;
                var sentenceObjects;
                if (!rt.browser.IE) {
                    return
                }
                if (updater) {
                    sentenceObjects = updater.impression.sentences
                } else {
                    sentenceObjects = rt.comm.settings.responses.impression.sentences
                }
                for (sentence in sentenceObjects) {
                    candidates = sentenceObjects[sentence].candidates;
                    if (!candidates) {
                        continue
                    }
                    for (i = 0, leni = candidates.length; i < leni; i++) {
                        node = candidates[i].node;
                        textNode = document.createTextNode(node.innerText);
                        parentNode = node.parentNode;
                        parentNode.insertBefore(textNode, node);
                        parentNode.removeChild(node);
                        candidates[i].node = textNode
                    }
                }
            }
        }, {
            settings: {
                prodCode: "i",
                prodName: "intext",
                behavior: {
                    def: {
                        skin: "brand",
                        theme: "def",
                        highlightCount: 1,
                        underline: "double",
                        favicon: false,
                        simanitIcon: null,
                        simanitOver: null,
                        simanitWidth: 16,
                        simanitPosition: "right"
                    },
                    sanitizer: {
                        highlightCount: "int",
                        underline: ["double", "single", "dotted", "dashed", "none"],
                        favicon: "bool",
                        simanitIcon: "str",
                        simanitOver: "str",
                        simanitWidth: "int",
                        simanitPosition: ["right", "left"]
                    }
                },
                themes: {
                    color: {
                        def: "#003366",
                        lightBlue: "#1b8ede",
                        green: "#67b045",
                        orange: "#f3933b",
                        red: "#dd3c42",
                        pink: "#d84189",
                        purple: "#5939aa"
                    }
                },
                hookClass: "IL_AD",
                hooksCount: 0,
                maxCandidates: 50,
                scoreFactors: {
                    fontSize: 10,
                    visible: 10,
                    onViewPort: 50,
                    wordCount: 30,
                    importance: 0
                },
                rendered: 0
            }
        }, true);
        intext.bind({
            event: "renderProduct",
            listener: {
                renderIntext: function() {
                    var rt = this.$root,
                        prod = "i";
                    if (!rt.comm.settings.responses.impression.prs[prod]) {
                        rt.event.fire("productRenderStatus", {
                            prod: prod,
                            status: "none"
                        });
                        return
                    }
                    rt.event.fire("productRenderStatus", {
                        prod: prod,
                        status: "during"
                    });
                    rt.utils.timer.start("tmr_hi");
                    rt.event.fire("initIntext")
                }
            }
        });
        intext.bind({
            event: "initIntext",
            listener: {
                init: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        bh = st.behavior,
                        bhi = this.settings.behavior,
                        prod = "i",
                        imp = rt.comm.settings.responses.impression,
                        prodImp = imp.prs[prod],
                        uto = rt.utils.object;

                    function convertDoubleUnderline() {
                        for (var i = 0; i < arguments.length; i++) {
                            if (rt.what(arguments[i].underline) == "undefined" && rt.what(arguments[i].doubleUnderline) != "undefined") {
                                arguments[i].underline = arguments[i].doubleUnderline.toString() == "false" ? "dotted" : "double"
                            }
                        }
                    }
                    bhi.customer = rt.helpers.getCustomerBehavior("link_color highlight_count underline simanit_icon simanit_over simanit_width simanit_position");
                    bhi.impression = rt.helpers.renameBehaviorProperties(prodImp.behavior || {});
                    convertDoubleUnderline(bh.impression, bhi.impression, bhi.customer);
                    bhi.merged = rt.utils.object.extend({}, bh.def, bhi.def, bh.impression, bhi.impression, bh.customer, bhi.customer);
                    rt.helpers.sanitize(bhi.merged, uto.extend({}, bh.sanitizer, bhi.sanitizer));
                    if (!rt.bubble.initialized) {
                        rt.event.fire("initBubble", this.settings.prodName)
                    }
                    rt.event.fire("setIntextMarkers", event.data)
                }
            }
        });
        intext.bind({
            event: "setIntextMarkers",
            listener: {
                setCandidates: function(event) {
                    var rt = this.$root,
                        hs = rt.harvest.settings,
                        ist = this.settings,
                        updater = event.data && event.data.updater ? event.data.updater : null,
                        nodes, context, sentencesKeys, sentenceIndexes, sentences, sentenceObjects, sentence, normalizedSentence, re, k, lenk, i, leni, node, text, sentenceObj, match, newNode, parentNode, harvested = hs.instances[hs.instances.length - 1],
                        matchText, textNode, candidateNode, hadMatches, textFollowingMatch, allCandidates = [];
                    if (updater) {
                        context = updater;
                        sentenceObjects = context.sentences = {}
                    } else {
                        context = rt.comm.settings.responses;
                        sentenceObjects = ist.sentences = {}
                    }
                    nodes = harvested.nodes;
                    sentences = context.impression.sentences;
                    sentenceIndexes = context.impression.prs.i.sentences || [];
                    sentencesKeys = rt.utils.object.keys(sentences);
                    for (k = 0, lenk = sentenceIndexes.length; k < lenk; k++) {
                        sentence = sentencesKeys[sentenceIndexes[k]];
                        normalizedSentence = sentence.replace(/([\+\.\?\(\)\[\]\*])/g, "\\$1").replace(/(\w+)/g, "\\b$1\\b").replace(/\s+/g, "\\s+");
                        re = new RegExp(normalizedSentence, "i");
                        sentenceObj = sentenceObjects[sentence] = {
                            candidates: [],
                            hooks: [],
                            rendered: 0
                        };
                        for (i = 0, leni = nodes.length; i < leni; i++) {
                            if (sentenceObj.candidates.length >= ist.maxCandidates) {
                                break
                            }
                            node = nodes[i];
                            if (!node.parentNode || rt.what(node.data) == "undefined" || rt.utils.array.indexOf(allCandidates, node) != -1) {
                                continue
                            }
                            text = node.data;
                            match = re.exec(text);
                            if (!match || node.parentNode.className == ist.hookClass) {
                                continue
                            }
                            textFollowingMatch = text.substr(match.index + match[0].length);
                            if (textFollowingMatch.match(/^[\u2019']s/) != null) {
                                continue
                            }
                            hadMatches = false;
                            newNode = document.createDocumentFragment();
                            parentNode = node.parentNode;
                            nodes.splice(i, 1);
                            while (match && sentenceObj.candidates.length < ist.maxCandidates) {
                                matchText = match[0];
                                if ((match.index == 0 || text.charAt(match.index - 1).match(/\w/) == null) && (text.length <= match.index + matchText.length || text.charAt(match.index + matchText.length).match(/\w/) == null)) {
                                    hadMatches = true;
                                    if (match.index > 0) {
                                        textNode = document.createTextNode(text.substr(0, match.index));
                                        newNode.appendChild(textNode);
                                        nodes.splice(i++, 0, textNode)
                                    }
                                    if (rt.browser.IE && rt.browser.getVersion(true) < 9) {
                                        candidateNode = document.createElement("span");
                                        candidateNode.innerHTML = ["<span>", matchText.charAt(0), "</span>", matchText.substring(1)].join("")
                                    } else {
                                        candidateNode = document.createTextNode(matchText)
                                    }
                                    rt.utils.array.push(allCandidates, candidateNode);
                                    candidateNode = newNode.appendChild(candidateNode);
                                    rt.utils.array.push(sentenceObj.candidates, this.createCandidate(candidateNode, parentNode, sentence))
                                }
                                text = text.substr(match.index + matchText.length);
                                match = re.exec(text)
                            }
                            if (!hadMatches) {
                                continue
                            }
                            if (text != "") {
                                textNode = document.createTextNode(text);
                                newNode.appendChild(textNode);
                                nodes.splice(i, 0, textNode)
                            }
                            parentNode.insertBefore(newNode, node);
                            parentNode.removeChild(node);
                            node.data = "";
                            leni = nodes.length
                        }
                        this.estimateCandidatesFontSizeIE(sentenceObj.candidates);
                        this.scoreCandidates(sentenceObj.candidates);
                        rt.utils.array.insertionSort(sentenceObj.candidates, "score", false);
                        for (i = ist.behavior.merged.highlightCount, leni = sentenceObj.candidates.length; i < leni; i++) {
                            rt.utils.array.push(nodes, sentenceObj.candidates[i].node)
                        }
                    }
                    rt.event.fire("createIntextHooks", {
                        updater: updater
                    })
                }
            }
        });
        intext.bind({
            event: "createIntextHooks",
            listener: {
                createIntextHooks: function(event) {
                    var rt = this.$root,
                        ist = this.settings,
                        bh = ist.behavior.merged,
                        updater = event.data && event.data.updater ? event.data.updater : null,
                        context, sentences, sentenceIndexes, sentencesKeys, sentenceObjects, sentence, sentenceObj, candidate, textNode, parentNode, hook, k, lenk;
                    if (updater) {
                        context = updater;
                        sentenceObjects = context.sentences
                    } else {
                        context = rt.comm.settings.responses;
                        sentenceObjects = ist.sentences;
                        this.createStyleSheet()
                    }
                    sentences = context.impression.sentences;
                    sentenceIndexes = context.impression.prs.i.sentences;
                    sentencesKeys = rt.utils.object.keys(sentences);
                    for (k = 0, lenk = sentenceIndexes.length; k < lenk; k++) {
                        sentence = sentencesKeys[sentenceIndexes[k]];
                        sentenceObj = sentenceObjects[sentence];
                        while (sentenceObj.candidates.length && sentenceObj.rendered < bh.highlightCount) {
                            candidate = sentenceObj.candidates[0];
                            textNode = candidate.node;
                            parentNode = textNode.parentNode || candidate.parentNode;
                            if (!parentNode) {
                                continue
                            }
                            hook = this.createHook(candidate, textNode, updater);
                            parentNode.insertBefore(hook, textNode);
                            parentNode.removeChild(textNode);
                            candidate.rendered = true;
                            sentenceObj.rendered++;
                            if (sentenceObj.hooks.length == 0 && !updater) {
                                ist.rendered++
                            }
                            rt.utils.array.push(sentenceObj.hooks, sentenceObj.candidates.shift());
                            candidate.pos = rt.utils.dom.element.offset(hook)
                        }
                    }
                    this.revertCandidateNodesIE(updater);
                    rt.utils.timer.stop("tmr_hi");
                    if (!updater) {
                        rt.event.fire("productRenderStatus", {
                            prod: "i",
                            status: "after"
                        })
                    }
                }
            }
        });
        intext.bind({
            event: "intextHookMouseover",
            listener: {
                intextHookMouseover: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        bh = this.settings.behavior.merged,
                        hook = st.hooksMap[event.data.hookId];
                    if (st.clickStatus != "none") {
                        return
                    }
                    var cls = this.settings.hookClass;
                    if (bh.linkHoverColor) {
                        hook.node.className = [cls, " ", cls, "_HOVER"].join("")
                    }
                    if (bh.simanitIcon && bh.simanitOver) {
                        var iconSpan = hook.node.getElementsByTagName("span");
                        if (iconSpan.length) {
                            iconSpan[0].className = [cls, "_ICON ", cls, "_ICON_OVER"].join("")
                        }
                    }
                }
            }
        });
        intext.bind({
            event: "intextHookMouseout",
            listener: {
                hookMouseout: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        ist = this.settings,
                        bh = ist.behavior.merged,
                        hook = st.hooksMap[event.data.hookId],
                        cls = this.settings.hookClass;
                    if (bh.linkHoverColor) {
                        hook.node.className = cls
                    }
                    if (bh.simanitIcon && bh.simanitOver) {
                        var iconSpan = hook.node.getElementsByTagName("span");
                        if (iconSpan.length) {
                            iconSpan[0].className = cls + "_ICON "
                        }
                    }
                }
            }
        });
        var autoPlacement = $root.$create("autoPlacement", {
            createMarker: function(prodId, val) {
                var rt = this.$root,
                    apst = this.settings,
                    dmel = rt.utils.dom.element,
                    resNodeHeight, node, result;
                if (rt.what(prodId) == "array") {
                    prodId = prodId[0]
                }
                node = rt.utils.dom.createDOMFragment({
                    tag: "input",
                    type: "hidden",
                    attributes: {
                        name: prodId,
                        value: val
                    }
                });
                if (apst.result) {
                    result = apst.result
                } else {
                    apst.result = result = this.findPlacement()
                }
                if (result.placement != "before" && (resNodeHeight = dmel.getStyle(result.node, "height"))) {
                    if (resNodeHeight.indexOf("px") != -1) {
                        dmel.setStyle(result.node, {
                            minHeight: parseInt(resNodeHeight, 10) + 45 + "px"
                        })
                    }
                }
                if (result.placement == "append") {
                    result.node.appendChild(node)
                } else {
                    if (result.placement == "prepend") {
                        result.node.insertBefore(node, result.node.firstChild)
                    } else {
                        result.node.parentNode.insertBefore(node, result.node)
                    }
                }
                return [node]
            },
            findPlacement: function() {
                var rt = this.$root,
                    ut = rt.utils,
                    dmel = ut.dom.element,
                    el, i, leni;
                var ids = ut.string.qw("pageContent content_body contentBody contentWrapper main_content_section main-content bodyarea content-wrap Blog1 content");
                var commentsId = ut.string.qw("commentlist comments respond commentpost commentform disqus_thread idc-container-parent");
                for (i = 0, leni = commentsId.length; i < leni; i++) {
                    if (el = dmel.$(commentsId[i])) {
                        if (dmel.isVisible(el)) {
                            return {
                                node: el,
                                placement: (/respond|commentform|disqus_thread/.test(commentsId[i])) ? "before" : "prepend"
                            }
                        }
                    }
                }
                for (i = 0, leni = ids.length; i < leni; i++) {
                    if (el = dmel.$(ids[i])) {
                        if (dmel.isVisible(el)) {
                            return {
                                node: el,
                                placement: "append"
                            }
                        }
                    }
                }
                return {
                    node: this.findBestContainer(),
                    placement: "append"
                }
            },
            findBestContainer: function() {
                var rt = this.$root,
                    hs = this.settings,
                    ut = rt.utils,
                    i, leni, candidate, winner = null,
                    maxScore = -1000,
                    score, node, dm = ut.dom,
                    dmel = dm.element,
                    docHeight, docWidth, iceapw;
                var forbiddenTags = ut.array.toObject(ut.string.qw("body tbody table tr ul dl ol p span embed marquee"), {}, 1);
                var wrapper = dm.findWidestNode();
                if (wrapper.node == document.body) {
                    docWidth = dm.document.getWidth();
                    docHeight = dm.document.getHeight()
                } else {
                    docWidth = wrapper.width;
                    docHeight = wrapper.height
                }
                this.harvest(document.body);
                for (i = 0, leni = hs.candidates.length; i < leni; i++) {
                    candidate = hs.candidates[i];
                    node = candidate.node;
                    if (forbiddenTags[node.tagName.toLowerCase()]) {
                        continue
                    }
                    candidate.wordsCount = parseInt(dmel.getData(node, "iceapw"), 10) || 0;
                    candidate.childrenCount = parseInt(dmel.getData(node, "iceapc"), 10) || 0;
                    if (!candidate.wordsCount || !candidate.childrenCount) {
                        continue
                    }
                    score = candidate.score = (candidate.width / (docWidth || 1) + candidate.height / (docHeight || 1)) / 4 + candidate.wordsCount / (hs.totalWordsCount || 1) - candidate.childrenCount / (hs.totalValidNodes || 1);
                    if (rt.what(score) == "number" && score > maxScore) {
                        maxScore = score;
                        winner = candidate
                    }
                }
                if (winner) {
                    for (i = 0, leni = hs.candidates.length; i < leni; i++) {
                        candidate = hs.candidates[i];
                        if (candidate.wordsCount == winner.wordsCount && candidate.node != winner.node && dmel.inHierarchy(candidate.node, winner.node)) {
                            winner = candidate
                        }
                    }
                }
                hs.winner = winner;
                return winner ? winner.node : document.body
            },
            harvest: function(node) {
                var rt = this.$root,
                    hs = this.settings,
                    nodeType, ut = rt.utils,
                    dmel = ut.dom.element,
                    tm = ut.timer,
                    nt = rt.settings.nodeTypes,
                    i, leni, wordsCount, text, parent, iceapw, iceapc;
                if (!hs.harvesting) {
                    hs.harvesting = true;
                    hs.stopped = false;
                    tm.start("apHarvest");
                    hs.candidates = [];
                    hs.firstNode = node;
                    hs.enabled = true;
                    hs.timeLimit = 1000;
                    hs.totalWordsCount = 0;
                    hs.totalValidNodes = 0
                }
                if (hs.stopped || hs.timeLimit != -1 && tm.poll("apHarvest") >= hs.timeLimit) {
                    hs.stopped = true
                } else {
                    nodeType = node.nodeType
                }
                switch (nodeType) {
                case nt.DOCUMENT:
                case nt.ELEMENT:
                    if (node.className.indexOf(rt.settings.baseClass) == -1 && node.className.indexOf(rt.products.intext.settings.hookClass) == -1 && dmel.isVisible(node) && rt.harvest.isHarvestableNode(node)) {
                        for (i = 0, leni = node.childNodes.length; i < leni; i++) {
                            if (hs.stopped) {
                                break
                            }
                            this.harvest(node.childNodes[i])
                        }
                        hs.totalValidNodes++;
                        parent = node.parentNode;
                        while (parent && parent != document && parent.tagName.toLowerCase() != "html") {
                            iceapc = (parseInt(dmel.getData(parent, "iceapc"), 10) || 0) + 1;
                            dmel.setData(parent, "iceapc", iceapc);
                            parent = parent.parentNode
                        }
                        ut.array.push(hs.candidates, {
                            node: node,
                            parent: node.parentNode,
                            width: dmel.getActualWidth(node),
                            height: dmel.getActualHeight(node)
                        })
                    }
                    break;
                case nt.TEXT:
                    if (hs.enabled) {
                        text = ut.string.trim(node.data).replace(/\s+/g, " ");
                        if (text.match(/\S/)) {
                            wordsCount = text.split(/\s+/).length;
                            hs.totalWordsCount += wordsCount;
                            parent = node.parentNode;
                            while (parent && parent != document && parent.tagName.toLowerCase() != "html") {
                                iceapw = (parseInt(dmel.getData(parent, "iceapw"), 10) || 0) + wordsCount;
                                dmel.setData(parent, "iceapw", iceapw);
                                parent = parent.parentNode
                            }
                        }
                    }
                    break;
                case nt.COMMENT:
                    rt.harvest.checkConditionalTags(ut.string.trim(node.data), hs)
                }
                if (hs.firstNode == node) {
                    hs.harvesting = false;
                    tm.stop("apHarvest")
                }
            }
        }, {
            settings: {}
        }, false);
        var intag = products.$create("intag", {
            locateMarkers: function(prodId, lines) {
                var rt = this.$root,
                    b = rt.browser,
                    i, leni, markers, autoMarker = [];
                if (rt.what(prodId) != "array") {
                    prodId = [prodId]
                }
                for (i = 0, leni = prodId.length; i < leni; i++) {
                    markers = document.getElementsByName(prodId[i]);
                    if (markers.length) {
                        break
                    }
                }
                if ((rt.comm.settings.responses.gsd.wd.rtm == "b" || !markers.length) && (!b.IE || b.getVersion(true) > 6)) {
                    autoMarker = rt.autoPlacement.createMarker(prodId, lines);
                    if (autoMarker.length) {
                        this.settings.autoPlacement = true
                    }
                }
                return rt.utils.array.concat([], markers, autoMarker)
            },
            renderUnit: function(instanceIndex) {
                var rt = this.$root,
                    st = rt.settings,
                    stit = this.settings,
                    instance = stit.instances[instanceIndex],
                    i, leni, html = "";
                for (i = 0, leni = instance.lines; i < leni; i++) {
                    html += this.renderUnitLine(instanceIndex, i, i == leni - 1)
                }
                return rt.utils.dom.createDOMFragment({
                    tag: "div",
                    parent: instance.container,
                    after: instance.marker,
                    cls: st.baseClass,
                    style: {
                        margin: "0 auto",
                        padding: "10px 0",
                        width: instance.width + "px"
                    },
                    innerHTML: html
                })
            },
            renderUnitLine: function(instanceIndex, line, withLogo) {
                var rt = this.$root,
                    st = rt.settings,
                    stit = this.settings,
                    b = rt.browser,
                    instance = stit.instances[instanceIndex],
                    bh = stit.behavior.merged,
                    skinPath = this.getSkinPath();
                var tpl = '<% if (withLogo){ %><div 				id="<%= prodId %>_LOGO_<%= instanceIndex %>" class="<%= baseCls %>" style="float:right; margin-right:15px; margin-top:8px; width:53px; height:12px; cursor:pointer; font-size:1px; <% if (oldIE || oldFF){ %>background:url(<%= skinPath %>logo<%= bh.darkBg ? \'-gray\' : \'\' %>.png) no-repeat scroll 0 0 transparent;<% } %>">				<% if (!(oldIE || oldFF)){ %>					<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="53px" height="12px" viewBox="0 0 636 144" enable-background="new 0 0 636 144" xml:space="preserve">					<g>						<%-- dot (first) --%>						<path id="<%= prodId %>_LOGO_<%= instanceIndex %>_DOT1" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M16.918,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.722-10.57-10.57-10.57 S6.334,8.434,6.334,14.282S11.07,24.865,16.918,24.865"/>						<%-- in --%>						<path fill="<%= logoColor %>" d="M88.085,43.784H77.024c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.027,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.467c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.015V45.889v-0.025c0-1.124-0.885-2.033-2.01-2.08h-11.49c-1.09,0.047-1.949,0.907-1.986,1.996v46.828h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.511,25.512h1.151c14.031,0,25.511-11.48,25.511-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.159-17.948,18.031-17.948h6.366c9.871,0,17.948,8.076,18.042,17.948v28.89v4.62v28.873 c0.013,0.023,0.013,0.034,0.013,0.048c0,1.111,0.883,2.008,1.983,2.057h11.505c1.077-0.036,1.936-0.887,1.985-1.973v-27.966v-5.659 V74.966C119.267,57.815,105.234,43.784,88.085,43.784"/>						<%-- f (part) --%>						<path fill="<%= logoColor %>" d="M155.069,56.972v82.643c-0.072,0.992-0.886,1.78-1.903,1.818h-11.014 c-1.062-0.038-1.912-0.897-1.912-1.962c0-0.024,0-0.048-0.023-0.073V34.456c0.716-17.064,14.923-30.744,32.179-30.744h8.536 c0.025,0,0.038,0.011,0.06,0.011c1.053,0,1.915,0.849,1.974,1.901v11.037c-0.035,1.016-0.85,1.844-1.878,1.889h-8.692 c-9.509,0-17.327,7.75-17.327,17.268v6.301V56.972z"/>						<%-- f (part) --%>						<path fill="<%= logoColor %>" d="M151.99,59.104h28.873c0.023-0.012,0.034-0.012,0.047-0.012 c1.111,0,2.008-0.884,2.057-1.984V45.604c-0.036-1.078-0.887-1.938-1.973-1.986h-27.965"/>						<%-- o --%>						<path fill="<%= logoColor %>" d="M276.24,107.925h0.158V76.608c-0.37-18.164-15.248-32.825-33.494-32.825 h-16.756v0.022c-17.875,0.431-32.322,14.924-32.679,32.803h-0.026v31.316c0,18.213,14.601,33.064,32.705,33.496v0.012h16.589h0.021 h0.146C261.304,141.349,276.24,126.354,276.24,107.925 M208.93,107.925L208.93,107.925V77.289c0-9.914,8.096-18.02,18.021-18.02 h15.953c9.946,0,18.02,8.106,18.02,18.02v30.636h-0.167c0,9.949-8.074,18.021-17.999,18.021h-15.807 C217.026,125.946,208.93,117.874,208.93,107.925"/>						<%-- l --%>						<path fill="<%= logoColor %>" d="M312.844,139.376L312.844,139.376c0,1.064-0.798,1.938-1.829,2.045h-11.816 c-1.027-0.107-1.837-0.98-1.837-2.045h-0.013V5.769h0.013c0-1.135,0.908-2.033,2.031-2.057h11.432 c1.124,0.024,2.019,0.922,2.019,2.057V139.376z"/>						<%-- dot (second) --%>						<path id="<%= prodId %>_LOGO_<%= instanceIndex %>_DOT2" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M341.662,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.723-10.57-10.57-10.57 s-10.584,4.722-10.584,10.57S335.814,24.865,341.662,24.865"/>						<%-- in (second) --%>						<path fill="<%= logoColor %>" d="M412.829,43.784h-11.061c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.026,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.468c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.016V45.723v-0.025c0-1.123-0.885-2.033-2.01-2.08h-11.49c-1.091,0.047-1.949,0.908-1.986,1.996v46.994h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.512,25.512h1.15c14.031,0,25.512-11.48,25.512-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.158-17.948,18.029-17.948h6.367c9.871,0,17.947,8.076,18.041,17.948v28.89v4.62v28.873 c0.014,0.023,0.014,0.034,0.014,0.048c0,1.111,0.883,2.008,1.982,2.057h11.506c1.076-0.036,1.936-0.887,1.984-1.973v-27.966v-5.659 V74.966C444.01,57.815,429.979,43.784,412.829,43.784"/>						<%-- k --%>						<path fill="<%= logoColor %>" d="M480.277,139.376L480.277,139.376V91.735h0.146h9.255l40.656,48.766 c0.599,0.549,1.15,0.906,1.841,0.932h16.073c0.882-0.025,2.869-0.322,1.794-2.056l-0.013-0.024l-47.58-56.777l44.599-36.815 c0.015-0.049,0.015-0.049,0.036-0.073c1.066-1.734-0.886-2.032-1.78-2.069H527.08c-0.621,0.024-1.15,0.324-1.666,0.791 l-36.812,31.075h-8.325V5.769c0-1.135-0.896-2.033-2.02-2.057h-11.422c-1.124,0.024-2.033,0.922-2.033,2.057v133.607 c0,1.064,0.803,1.938,1.844,2.045h11.802C479.476,141.313,480.277,140.44,480.277,139.376"/>						<%-- s --%>						<path fill="<%= logoColor %>" d="M603.208,84.782H577.99c-6.91-0.114-12.508-5.785-12.508-12.783 c0-6.996,5.598-12.895,12.508-12.895h39.271c1.146,0,2.08-0.959,2.08-2.111v0.191V45.752v-0.037c0-1.164-0.935-2.097-2.08-2.097 H577.99c-15.451,0-28.008,12.73-28.008,28.381c0,15.651,12.557,28.381,28.008,28.27h24.252c6.911,0.111,12.508,5.812,12.508,12.795 c0,6.996-5.597,12.896-12.508,12.896H591.56l0.001-0.014h-28.874c-0.022,0.014-0.034,0.014-0.047,0.014 c-1.11,0-2.007,0.896-2.056,2.01v11.449c0.035,1.092,0.886,1.963,1.973,2.014h0.225h27.74h12.224 c15.209-0.279,27.491-12.9,27.491-28.369C630.236,97.737,618.191,85.202,603.208,84.782"/>					</g>					</svg>				<% } %>			</div><% } %>			<ul id="<%= prodId %>_LIST_<%= instanceIndex %>_<%= line %>" class="<%= baseCls %>" style="display:block; width:<%= instance.width - bh.logoWidth -30 %>px; height:<%= bh.tagHeight %>px; text-align:center; padding:0; margin:6px 0 0 0; font-size:0; overflow:hidden;"></ul>';
                return rt.utils.VeST(tpl, {
                    prodId: stit.prodId,
                    baseCls: st.baseClass,
                    st: st,
                    bh: bh,
                    themeColor: stit.themes.color[bh.theme],
                    instance: instance,
                    instanceIndex: instanceIndex,
                    oldIE: stit.oldIE,
                    oldFF: b.Firefox && b.getVersion(true) < 4,
                    skinPath: skinPath,
                    line: line,
                    withLogo: withLogo,
                    logoColor: bh.darkBg ? "#888888" : "#003366"
                })
            },
            getSkinPath: function() {
                var stit = this.settings;
                return ["http:/", this.$root.settings.hosts.resources, "static", "skins", stit.behavior.merged.skin, stit.prodName, stit.rv, ""].join("/")
            },
            hookMouseStateChange: function(event) {
                var el = event.element,
                    key;
                for (key in event.data) {
                    el.style[key] = event.data[key]
                }
            }
        }, {
            settings: {
                prodId: "IL_IN_TAG",
                tagCloud: "IL_TAG_CLOUD",
                relatedTags: "IL_RELATED_TAGS",
                prodCode: "t",
                prodName: "intag",
                rv: 1,
                instances: [],
                containerMinWidth: 200,
                sentences: {},
                oldIE: (function() {
                    var b = $root.browser;
                    return (b.IE && (document.compatMode == "BackCompat" || b.getVersion(true) < 9))
                }()),
                behavior: {
                    def: {
                        skin: "brand",
                        theme: "def",
                        fontFamily: "Arial,sans-serif",
                        fontWeight: "normal",
                        fontSize: 13,
                        underline: "single",
                        logoHeight: 11,
                        logoWidth: 48,
                        height: 60,
                        hookMargin: 15,
                        lines: 1,
                        darkBg: false
                    },
                    sanitizer: {
                        fontFamily: "str",
                        fontWeight: ["normal", "bold"],
                        fontSize: "int",
                        underline: ["double", "single", "dotted", "dashed", "none"],
                        logoHeight: "int",
                        logoWidth: "int",
                        height: "int",
                        hookMargin: "int",
                        lines: "int",
                        darkBg: "bool"
                    }
                },
                themes: {
                    color: {
                        def: "#003366",
                        lightBlue: "#1b8ede",
                        green: "#67b045",
                        orange: "#f3933b",
                        red: "#dd3c42",
                        pink: "#d84189",
                        purple: "#5939aa"
                    }
                }
            }
        }, true);
        intag.bind({
            event: "renderProduct",
            listener: {
                renderIntag: function() {
                    var rt = this.$root,
                        prod = this.settings.prodCode;
                    if (!rt.comm.settings.responses.impression.prs[prod]) {
                        rt.event.fire("productRenderStatus", {
                            prod: prod,
                            status: "none"
                        });
                        return
                    }
                    rt.event.fire("productRenderStatus", {
                        prod: prod,
                        status: "during"
                    });
                    rt.event.fire("initIntag")
                }
            }
        });
        intag.bind({
            event: "initIntag",
            listener: {
                init: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        bh = st.behavior,
                        stit = this.settings,
                        prod = stit.prodCode,
                        uto = rt.utils.object,
                        prodImp = rt.comm.settings.responses.impression.prs[prod],
                        bhr = stit.behavior,
                        i, leni;
                    var cbh = rt.helpers.getVar("related_tags") || {};
                    bhr.impression = rt.helpers.renameBehaviorProperties(prodImp.behavior || {});
                    bhr.merged = uto.extend({}, bh.def, bhr.def, bh.impression, bhr.impression, bh.customer, cbh);
                    bhr.merged.tagHeight = Math.max(Math.ceil(bhr.merged.fontSize * 1.3) + 2, 17);
                    rt.helpers.sanitize(bhr.merged, uto.extend({}, bh.sanitizer, bhr.sanitizer));
                    if (!stit.themes.color[bhr.merged.theme]) {
                        bhr.merged.theme = "def"
                    }
                    if (!rt.bubble.initialized) {
                        rt.event.fire("initBubble", stit.prodName)
                    }
                    var markers = this.locateMarkers([stit.prodId, stit.relatedTags], bhr.merged.lines);
                    if (markers.length) {
                        for (i = 0, leni = markers.length; i < leni; i++) {
                            var o = {
                                marker: markers[i],
                                container: markers[i].parentNode,
                                lines: parseInt(markers[i].value, 10) || 1,
                                hooksCount: 0
                            };
                            o.width = rt.utils.dom.element.getActualWidth(o.container);
                            if (o.width < stit.containerMinWidth) {
                                rt.logger.warn("Warning: In-Tag instance does not have minimum required width.", this.init);
                                continue
                            }
                            rt.utils.array.push(stit.instances, o)
                        }
                    }
                    rt.event.fire("createIntagUnits")
                }
            }
        });
        intag.bind({
            event: "createIntagUnits",
            listener: {
                createIntagUnits: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        stit = this.settings,
                        bh = stit.behavior.merged,
                        ut = rt.utils,
                        dm = ut.dom,
                        dmel = dm.element,
                        i, leni, k, lenk, instance, sentence, liNode, hook, baseCls = st.baseClass,
                        hookId, j, lenj, lines, currentLine, logo, adNode, ps, b = rt.browser;
                    var underline = dm.style.buildHookUnderlineCSS(bh.underline, bh.linkColor, true);
                    dm.style.addRule("." + stit.prodId + "_AD", [underline, "display:inline; color:", bh.linkColor, " !important; cursor:pointer !important; font-family:", bh.fontFamily, "; font-weight:", bh.fontWeight, "; font-size:", bh.fontSize, "px !important; white-space:nowrap !important; float:none !important;"].join(""));
                    var liStyle = {
                        display: "inline",
                        margin: 0,
                        padding: 0,
                        background: "none"
                    };
                    var currentSentenceIndex = 0,
                        imp = rt.comm.settings.responses.impression,
                        sentenceIndexes = imp.prs[stit.prodCode].sentences,
                        el, ul, computedWidth, availWidth, sentenceLoopCount, sentencesKeys = ut.object.keys(imp.sentences);
                    for (i = 0, leni = stit.instances.length; i < leni; i++) {
                        instance = stit.instances[i];
                        currentLine = 0;
                        el = instance.node = this.renderUnit(i);
                        ps = el.previousSibling;
                        while (ps) {
                            if (ps.nodeType == st.nodeTypes.ELEMENT && ps.tagName.toLowerCase() != "input") {
                                if (/left|right/.test(dmel.getStyle(ps, b.IE ? "styleFloat" : "cssFloat"))) {
                                    dmel.setStyle(el, {
                                        clear: "left"
                                    })
                                }
                                break
                            }
                            ps = ps.previousSibling
                        }
                        instance.pos = dmel.offset(el);
                        lines = [];
                        for (j = 0, lenj = instance.lines; j < lenj; j++) {
                            ul = dmel.$([stit.prodId, "LIST", i, j].join("_"));
                            if (ul) {
                                ut.array.push(lines, ul)
                            }
                        }
                        if (!lines.length) {
                            rt.logger.warn("Error: In-Tag UL element not found.", this.createIntagUnits);
                            rt.event.fire("productRenderStatus", {
                                prod: stit.prodCode,
                                status: "none"
                            });
                            return
                        }
                        logo = dmel.$([stit.prodId, "LOGO", i].join("_"));
                        if (logo) {
                            rt.event.dom.bind(logo, {
                                event: "click",
                                listener: function(event) {
                                    rt.utils.dom.event.stop(event.domEvent);
                                    if (st.homeUrl) {
                                        window.open(st.homeUrl, "_blank")
                                    }
                                }
                            })
                        }
                        computedWidth = 0;
                        availWidth = instance.width - bh.logoWidth - 30;
                        sentenceLoopCount = 0;
                        for (k = currentSentenceIndex, lenk = sentenceIndexes.length; k < lenk; k++) {
                            sentence = sentencesKeys[sentenceIndexes[k]];
                            hookId = ++st.hooksCount;
                            liNode = dm.createDOMFragment({
                                tag: "li",
                                parent: lines[currentLine],
                                cls: baseCls,
                                style: liStyle,
                                children: {
                                    tag: "span",
                                    cls: [baseCls, " ", stit.prodId, "_AD"].join(""),
                                    style: {
                                        padding: ["0 ", bh.hookMargin, "px"].join(""),
                                        fontWeight: "normal"
                                    },
                                    id: [stit.prodId, "_AD", hookId].join(""),
                                    innerHTML: ut.string.capitalize(sentence)
                                }
                            });
                            adNode = liNode.getElementsByTagName("span")[0];
                            rt.event.dom.bind(adNode, {
                                event: "mouseover",
                                data: {
                                    fontWeight: "bold",
                                    padding: ["0 ", bh.hookMargin - 2, "px"].join("")
                                },
                                listener: this.hookMouseStateChange
                            });
                            rt.event.dom.bind(adNode, {
                                event: "mouseout",
                                data: {
                                    fontWeight: "normal",
                                    padding: ["0 ", bh.hookMargin, "px"].join("")
                                },
                                listener: this.hookMouseStateChange
                            });
                            computedWidth += liNode.offsetWidth;
                            if ((computedWidth > availWidth) || (sentenceLoopCount >= 3 && currentLine >= lines.length - 1)) {
                                if (currentLine < lines.length - 1) {
                                    lines[++currentLine].appendChild(liNode);
                                    computedWidth = bh.hookMargin * 2 + liNode.offsetWidth
                                } else {
                                    lines[currentLine].removeChild(liNode);
                                    currentSentenceIndex = k;
                                    st.hooksCount--;
                                    break
                                }
                            }
                            instance.hooksCount++;
                            hook = rt.helpers.createHook(hookId, sentence, liNode.firstChild, bh.fontSize, this, stit.prodCode, stit.prodName, true, instance);
                            if (stit.autoPlacement) {
                                hook.pst = "auto"
                            }
                            dm.createDOMFragment({
                                isTextNode: true,
                                value: "\n",
                                parent: lines[currentLine]
                            });
                            if (k == lenk - 1) {
                                k = -1;
                                ++sentenceLoopCount
                            }
                        }
                    }
                    this.$root.event.fire("productRenderStatus", {
                        prod: stit.prodCode,
                        status: "after"
                    })
                }
            }
        });
        var insearch = products.$create("insearch", {
            renderUnit: function(hookId) {
                var rt = this.$root,
                    b = rt.browser,
                    ut = rt.utils,
                    dm = ut.dom,
                    dms = dm.style,
                    st = rt.settings,
                    stsr = this.settings,
                    data = rt.helpers.getHookData(hookId),
                    instance = stsr.instance,
                    hdrCls = "IL_SR_BG",
                    srPos = "",
                    srIEStyle = {},
                    hdrCss, btnCss, skinPath = this.getSkinPath(),
                    sentence, content, tpl, html, nodeStyle, so = window.orientation,
                    ibh = instance.behavior,
                    hook = st.hooksMap[hookId],
                    themeColor;
                var ad = data.ads[0];
                rt.helpers.setActualTemplate(ad);
                if (ad.template == "text") {
                    var textLength = (ad.thumbURL && ad.thumbURL != "no-image") ? 145 : 180;
                    var pos = ad.displayedURL.indexOf("/");
                    if (pos != -1) {
                        ad.displayedURL = ad.displayedURL.substr(0, pos)
                    }
                    ad.title = ut.string.truncateToChar(ad.title, 52, " ", "...");
                    ad.text = ut.string.truncateToChar(ad.text, textLength, " ", "...");
                    ad.thumbURL = (ad.thumbURL != "no-image") ? ad.thumbURL : false
                }
                if (ad.contentUrl) {
                    content = rt.bubble.templates.external(hook, 0)
                } else {
                    content = rt.helpers.parseTokens(hook)
                }
                if (b.IE && b.getVersion(true) < 8) {
                    hdrCss = skinPath + "hdr-btns.png";
                    btnCss = skinPath + "btn.png"
                } else {
                    hdrCss = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB+hJREFUeNrEV3tMm9cVP7Y/29gY/MBvg3klgFJGAnFeBUpok03NOhJeaVcSdVvGEu2fbdqmNm23bkmqRk1bbVm0PiKtTaVtSkLTh9SQlLY0CWSDpkugy8MmCY+AwRiwzbDBYJudc+FzP0e0+W+70pG/ex733Hvuub9zLPr9/gPAj/n5edDr9TA2NmbG6fJF9i3kuZEHIpEorvvbZ59hv7y9WCyGWCwGJpMJPB5PBrKykWJITp1O652Y8DE9fg0OEscGpIOl999fbjQaUEMEXq8Xbjid7ch/Guk8fPP4DtKBB8rLHXp9Gm5knjYRc7qcnyD/KaR/8YpCx3vWrllzZN26tRIJ7p4fmfYMKCkuLv380qXWf3Z0/AxZR77G6TMPlJftL161SiSMTFamXby6pGRz+8WLFZevXPkRsv4qdFyBix9ZuXKlZGYmzBh+v5+FXqvVsnlhYaE4Eo0cvnTpCydOW+5yWrdhw/oD+fkFEJqeWXJXDodDFolE/vLvq1ev08m55ORkkMvkLxcUFEimF40+bvkYOjo62HdJSQk8vOVh9p2fly/q6+v/QzAYvE+wpsRisbycnZUDZD/q8YA8SQ5qtYYJMdSQtDgvLPyWrH9g4EWplNtEMc2z2qyrZ2dnIRyewcTyQmdnJzz51K9h794nobu7G0ZGRpgsHA6D1WpdgTZFvFeZTFaabrPZF+Qz4Ha74bXXXofhYTc4nTfg6BtHYXJykskikTmyfxDNzFw0EimkU/Mhlkg42LZtKwSD00CbofuibOXlqmQV8Urws3vBsdQhtF+etxzm5ubg2Ftvo6MI7NjRwE7Ly1FX1NMTyOPkSUkKUiAn/DAYjeByuqC19VNYsWIFyOXyuBzvGRQKhSoeZwknj0SicTn9yBVJbJ6UlASRWJRFih9R1MWDiLg0ne5OIDAJKSkpCckQDE1BUVERONY4YCb8VcIEAgFIVipd/BxP0OsP+EEqk7I5hfps81loaHic8ABOHj8J1TXVkJK6sH4Aw45ZPinChy1veueUJzc3Vy10HJ5ZcIYRSdjQzVs3p6q3VlkMBsMUzZ0ul+n8hbaB3JxcGXM8NIQRM4AMo8ThtY16RhAOxOx1zKP89q2b7sYf78qg5Aqr1al/HB4exjBG4xSbj7GwCnkjuAjqvoo2U4K9eJRKxTEvno50bOnpIEaHc3MRmMbNa7Q6JC2TDQ4OEjK+RIgmordKBzt+sukTVC4lyFxqjI+PI6bGOhoe/34lTqd5/sxCZNRo34a5UKjRaJe0p2elUinP1lZXf5eumnfMEvZ085lXh9zuBsw3kVKpBAKgUCjEFjebTccf2bJlN12TcMFFx5Tp+rMftbzpGR19hGwVCiUCUAxfRwgTLRyzZ6Qf/fbmzT8nk7shk8K389H6ukNd3d31Pp+/gJho4EIYbDp34cLle+D0GNL36mtr1l3p6qqZnPxPLpaOWG5O1tXiVcXH29rbbgiVhSf+nw4x/J8Gt+/A8wn1eHEzhEz5FBF6MUhfUCbyNZfGc795NqEecxzHkIowBWkt0jJKIqRrSF20/DfV49qUlNRDaWm6bEoQGqHQNExMjPcj3u7F6d/vcZBdGo1mn1arsyoQvegcWFDI3jk1NfULlDcvVY9/l5WV9ZzRaEpYSaVKAaPRmInF4299fX1UHPYu4ZCO8edly5bv0el0CQJCRLPZnI848eGdOwO/QtYrwjveSk7NZgtrYYgI7sa8Y/E5bSg7O5u6iMeWcLwbkW8PYQCvfzfZbDaR3W4n8KhkJ0bAB6lU9qLVaouvcrG9HaFulBmkYQtTWlbG+LSx8fGJF/x+34nFfoqBT1qafr9eb2ATQkCZVMbsaAwhWimxehFkpqdniHw+30EspevoxEWIu3lSTA6iWawkg3cG4Qc/fAJ27twBHqzFM9Mh4OXYi2WhoYPfJKJVhclk1PPyZKUCmk+fhglEut7bt+H8ufNYSpOZTCaVgj5NT4mXyeHl5KtTU+PVRSvTwqOP1cMs1lRKDCpvKrwnXq7B2orO6K47aS6VSldiQsXlVpsNtm+vgxMnmjDTJdDYuCseGnbnWKX6B/qzOKwiHMd2I4sL1WotuFwuONN8BjZteghSMMF4oCFddBxXxrlEykkT7Cd8fqzTEpZz3rFxwNYIBPpMJraYzX2hUJAVeyHRm9y4cSOsdjiovYnzg6ir0aivfZW1KmdQYN/X18t6tp/sboR6PPmpd06xGs7LQxhF7GbHCDIlb751bKi0tNQkbEspuQgszBZzAsBgm+rbVlVl0Wo1rK3o7x/QII67N6xfr6B5b28vqFPVoEvTMbCg+sxhRKhGx6IxaP9H+217hj2XkiuKz+BgT08PKLDo84QlDFiVEfBoUa1Gc4hquODa/Cg7TLWWdKhVstms7DsJT5iTkwP2TDubX8fmz2K27KeejC8S4nffe78J25hqbEsS/qrwJ73cdYV67Q/qampqFqFQOOQnTjY149+XysLC+/BmE+0pch2fd0I0Gn0b8+GJu6sT99m5c/uwk/glprwMn8hCAR8dBe+odxb/kvzpwcpK+hsz+zVwqfyopeUlfyDQaDaZOYNBzxyOYAMwMT4xjfX8+fKyshf49y+ETEL4p+traw9fvXatyu0ezqONWSzmm5UVFe9/2trqvgdOh5B+ur2u7mD3l19WDQ25cygyGRnp1x+qrPzgQlvbmFD5vwIMAAZsT2nNzBrxAAAAAElFTkSuQmCC";
                    btnCss = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF0AAABICAYAAACUavnrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4JJREFUeNrsnL9u01AUxs+xbxOS1LQVBQkGJBgQMPUNGCshMiB1zgqoOwMViBfoxMYGqjqwMIBgYqC8AQsStAyVaAmllDZN4j+xL/fGdsgD9J4I8X1SFDvZfv70+dxzj60eP3119vXGx9V6rXLzdP2U0gSdtNh8umEct/ePXn7ebt9nutZ6dvHyhdZsUKcsA3JX8n2mvV/HtLN38ET5Qb1prgJ1+xHIuHS7sXuSZvagqcy5l//IIOMYOudB4ivSpG2seGDuVgZ4kd5a2TOtNSHO3d9MM51DHlYrWZYRjC5gdp3l0K3t7QWA0SWgF06nwumQ80inEvMwXlINn0soG3e6xl1UyO3j8QKnyzrdhvsgRaaLBfsoXuB0UXlAAOiADgE6oEOA/s9B94FBVL6p03mLmBfAQmqBpDcVZ/EKJ701s0CaAxHHseJxW081HilD/c1sw1vu9JMl4/qGbREAz8nzZtKdoF5Z/51kGyqhynxXBYtXrp+7MV2rKrQETl52U7obJtGX7fbPOI7e2UxfNb+3dvcO0YNxCt5uiOq75iBR7FEzihMKowRkBBxvZOde2GNDHmMvAtDNJ6XUloykAVy2aFTlFYDkpP6GPCSSLyV0DzN1MrlScFcMp8tSHzkd0OWYs4XOebxgWSRBvRjBGMaLgc6gLpQubOOFTbyYxRG2MwSMXk54FfGCWBdLlzxefEOcUTYKOt3Gi4/ei6jT82hntALkynRMA0xCgA7o/w90zL3Iylea9JapFxfQCnCr4WPq8cAebqo0Dh909neeK6XmCRvTTqn3++Gu1pWHitL47XHv6B771dvmn4Aw9+IoxvWhTsMXVJ35oGiqMR/MnLl19dL5xelaBe97cWJytm8ZiT993e12euF7uzhaNaBb334c5I/cgbob8Pk98445ipU5afbjhHphDDIC4M3SP597sQ0v7aMR4Bw62bkXKude0HsRlMYIhiTt4luVhTskFzFw+gSsnm9MI9FFrZ47Hb1GWadb8ogXWeqj7TpILl+KWUagkBRKxslA5+Gd1EOjSyDRxzLdQwUzieoFETOBTEf9Ig+dMEAqCr18/AXQ3cc5jznd57wBg4hxuiQa7fj7SmvaYs/OvaB8cQ3dzr2YsnFTZYNopXfwfc1An8OutFtFcdJmXbXve0nfVDlZPu4NlgxyvO/FjTyPdSeoVdbTRG/8EWAAta8y0OqpUAcAAAAASUVORK5CYII="
                }
                dms.addRule("." + hdrCls, ['background-image : url("', hdrCss, '")'].join(""));
                dms.addRule("#IL_SR_BTN", ['background-image : url("', btnCss, '")'].join(""));
                instance.height = ibh.heightClose;
                if (ad.template == "text") {
                    instance.fullWidth = 722
                } else {
                    instance.fullWidth = data.width > 0 ? data.width : 722;
                    ibh.heightOpen = (data.height > 0 ? data.height : 90) + 55
                }
                instance.left = Math.ceil((dm.viewport.getWidth() - instance.fullWidth) / 2);
                if (stsr.prodCode == "o") {
                    sentence = data.sentence
                } else {
                    sentence = st.impression.params.refq
                }
                sentence = ut.string.truncateToChar(sentence, 38, " ", "...").replace(/</g, "&lt;");
                if (stsr.oldIE) {
                    srPos = "absolute";
                    srIEStyle = {
                        top: (dm.viewport.getHeight() + dm.document.getScrollTop() - ibh.heightClose) + "px"
                    }
                } else {
                    srPos = "fixed"
                }
                themeColor = stsr.themes.color[ibh.theme];
                tpl = '<% if (oldIE || oldFF){ %>			<img src="<%= skinPath %>in-search-shadow.png" alt="" width="<%= instance.fullWidth+20 %>" height="<%= ibh.heightOpen+10 %>" style="position:absolute; top:-10px; left:-10px; width:<%= instance.fullWidth+20 %>px; height=<%= ibh.heightOpen+10 %>px; overflow:hidden;" />			<% } %>			<%-- Header --%>			<div class="<%= baseCls %>" style="position:absolute; top:0; left:0; width:<%= instance.fullWidth %>px; <%= titleBase %>; cursor: pointer;">				<% if (ibh.favicon){ %><div class="<%= baseCls %>" style="position:absolute; left:15px; width:16px; height:16px; top:12px; background:url(<%= ibh.favicon %>) no-repeat scroll 0 0 transparent;"></div><% } %>				<div class="<%= baseCls %>" style="position:absolute; width:<%= instance.fullWidth - 181 %>px; height:24px; left:<%= ibh.favicon ? 35 : 15 %>px; top:10px; color:<%= ibh.titlePrefixColor %>; font-family: Trebuchet MS,Arial,sans-serif; font-size:15pt; font-weight:normal; font-style:normal;"><%= titlePrefix %> <span class="<%= baseCls %>" style="color:<%= ibh.titleTermColor %>; font-weight: bold; font-size:15pt;"><%= sentence %></span>?</div>				<div id="IL_SR_LOGO" class="<%= baseCls %>" style="position:absolute; top:10px; right:47px; width:48px; height:11px; cursor:pointer; font-size:1px; <% if (oldIE || oldFF){ %>background:url(<%= skinPath %>logo11.png) no-repeat scroll 0 0 transparent;<% } %>">					<% if (!(oldIE || oldFF)){ %>						<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="11px" viewBox="0 0 636 144" enable-background="new 0 0 636 144" xml:space="preserve">						<g>							<%-- dot (first) --%>							<path id="IL_SR_LOGO_DOT1" fill="<%= ibh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M16.918,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.722-10.57-10.57-10.57 S6.334,8.434,6.334,14.282S11.07,24.865,16.918,24.865"/>							<%-- in --%>							<path fill="#003366" d="M88.085,43.784H77.024c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.027,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.467c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.015V45.889v-0.025c0-1.124-0.885-2.033-2.01-2.08h-11.49c-1.09,0.047-1.949,0.907-1.986,1.996v46.828h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.511,25.512h1.151c14.031,0,25.511-11.48,25.511-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.159-17.948,18.031-17.948h6.366c9.871,0,17.948,8.076,18.042,17.948v28.89v4.62v28.873 c0.013,0.023,0.013,0.034,0.013,0.048c0,1.111,0.883,2.008,1.983,2.057h11.505c1.077-0.036,1.936-0.887,1.985-1.973v-27.966v-5.659 V74.966C119.267,57.815,105.234,43.784,88.085,43.784"/>							<%-- f (part) --%>							<path fill="#003366" d="M155.069,56.972v82.643c-0.072,0.992-0.886,1.78-1.903,1.818h-11.014 c-1.062-0.038-1.912-0.897-1.912-1.962c0-0.024,0-0.048-0.023-0.073V34.456c0.716-17.064,14.923-30.744,32.179-30.744h8.536 c0.025,0,0.038,0.011,0.06,0.011c1.053,0,1.915,0.849,1.974,1.901v11.037c-0.035,1.016-0.85,1.844-1.878,1.889h-8.692 c-9.509,0-17.327,7.75-17.327,17.268v6.301V56.972z"/>							<%-- f (part) --%>							<path fill="#003366" d="M151.99,59.104h28.873c0.023-0.012,0.034-0.012,0.047-0.012 c1.111,0,2.008-0.884,2.057-1.984V45.604c-0.036-1.078-0.887-1.938-1.973-1.986h-27.965"/>							<%-- o --%>							<path fill="#003366" d="M276.24,107.925h0.158V76.608c-0.37-18.164-15.248-32.825-33.494-32.825 h-16.756v0.022c-17.875,0.431-32.322,14.924-32.679,32.803h-0.026v31.316c0,18.213,14.601,33.064,32.705,33.496v0.012h16.589h0.021 h0.146C261.304,141.349,276.24,126.354,276.24,107.925 M208.93,107.925L208.93,107.925V77.289c0-9.914,8.096-18.02,18.021-18.02 h15.953c9.946,0,18.02,8.106,18.02,18.02v30.636h-0.167c0,9.949-8.074,18.021-17.999,18.021h-15.807 C217.026,125.946,208.93,117.874,208.93,107.925"/>							<%-- l --%>							<path fill="#003366" d="M312.844,139.376L312.844,139.376c0,1.064-0.798,1.938-1.829,2.045h-11.816 c-1.027-0.107-1.837-0.98-1.837-2.045h-0.013V5.769h0.013c0-1.135,0.908-2.033,2.031-2.057h11.432 c1.124,0.024,2.019,0.922,2.019,2.057V139.376z"/>							<%-- dot (second) --%>							<path id="IL_SR_LOGO_DOT2" fill="<%= ibh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M341.662,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.723-10.57-10.57-10.57 s-10.584,4.722-10.584,10.57S335.814,24.865,341.662,24.865"/>							<%-- in (second) --%>							<path fill="#003366" d="M412.829,43.784h-11.061c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.026,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.468c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.016V45.723v-0.025c0-1.123-0.885-2.033-2.01-2.08h-11.49c-1.091,0.047-1.949,0.908-1.986,1.996v46.994h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.512,25.512h1.15c14.031,0,25.512-11.48,25.512-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.158-17.948,18.029-17.948h6.367c9.871,0,17.947,8.076,18.041,17.948v28.89v4.62v28.873 c0.014,0.023,0.014,0.034,0.014,0.048c0,1.111,0.883,2.008,1.982,2.057h11.506c1.076-0.036,1.936-0.887,1.984-1.973v-27.966v-5.659 V74.966C444.01,57.815,429.979,43.784,412.829,43.784"/>							<%-- k --%>							<path fill="#003366" d="M480.277,139.376L480.277,139.376V91.735h0.146h9.255l40.656,48.766 c0.599,0.549,1.15,0.906,1.841,0.932h16.073c0.882-0.025,2.869-0.322,1.794-2.056l-0.013-0.024l-47.58-56.777l44.599-36.815 c0.015-0.049,0.015-0.049,0.036-0.073c1.066-1.734-0.886-2.032-1.78-2.069H527.08c-0.621,0.024-1.15,0.324-1.666,0.791 l-36.812,31.075h-8.325V5.769c0-1.135-0.896-2.033-2.02-2.057h-11.422c-1.124,0.024-2.033,0.922-2.033,2.057v133.607 c0,1.064,0.803,1.938,1.844,2.045h11.802C479.476,141.313,480.277,140.44,480.277,139.376"/>							<%-- s --%>							<path fill="#003366" d="M603.208,84.782H577.99c-6.91-0.114-12.508-5.785-12.508-12.783 c0-6.996,5.598-12.895,12.508-12.895h39.271c1.146,0,2.08-0.959,2.08-2.111v0.191V45.752v-0.037c0-1.164-0.935-2.097-2.08-2.097 H577.99c-15.451,0-28.008,12.73-28.008,28.381c0,15.651,12.557,28.381,28.008,28.27h24.252c6.911,0.111,12.508,5.812,12.508,12.795 c0,6.996-5.597,12.896-12.508,12.896H591.56l0.001-0.014h-28.874c-0.022,0.014-0.034,0.014-0.047,0.014 c-1.11,0-2.007,0.896-2.056,2.01v11.449c0.035,1.092,0.886,1.963,1.973,2.014h0.225h27.74h12.224 c15.209-0.279,27.491-12.9,27.491-28.369C630.236,97.737,618.191,85.202,603.208,84.782"/>						</g>						</svg>					<% } %>				</div>				<div class="<%= baseCls %> <%= hdrCls %>" id="IL_SR_HELP" style="position:absolute; right:26px; top:9px; width:15px; height:15px; background-position:0 0; cursor:pointer; font-size:1px;"></div>				<div class="<%= baseCls %> <%= hdrCls %>" id="IL_SR_X" style="position:absolute; right:10px; top:9px; width:15px; height:15px; background-position:-15px 0; cursor:pointer; font-size:1px;"></div>			</div>			<%-- Body --%>			<div id="IL_SR_AD_AREA" class="<%= baseCls %>" style="position:absolute; top:55px; left:0; width:<%= instance.fullWidth %>px; height:<%= ad.template == \'text\' ? 125 : data.height %>px; background-color:#ffffff; cursor: pointer;">				<% if (ad.template == \'text\'){ %>					<% if (ibh.thumb && ad.thumbURL){ %>						<div class="<%= baseCls %>" style="margin-left:15px; float:left; width:110px; background-color:#e8e8e8; -moz-box-shadow:2px 2px 5px #888; -webkit-box-shadow:2px 2px 5px #888; box-shadow:2px 2px 5px #888;">							<img class="<%= baseCls %>" src="<%= ad.thumbURL %>" width="110" height="82">						</div>					<% } %>					<div class="<%= baseCls %>" style="width:<%= instance.fullWidth - (ibh.thumb && ad.thumbURL ? 307 : 182) %>px; float:left; margin-left:30px;">						<div class="<%= baseCls %>" style="color:#1122CC; font-family:Trebuchet MS,Arial,sans-serif; font-size:12pt; font-weight:normal; text-decoration:none;"><%= ad.title %></div>						<div class="<%= baseCls %>" style="color:#222222; font-family:Trebuchet MS,Arial,sans-serif; font-size:10pt; font-weight:normal; padding-top:4px;"><%= ad.text %></div>						<div class="<%= baseCls %>" style="color:#009933; font-family:Trebuchet MS,Arial,sans-serif; font-size:10pt; font-weight:normal; padding-top:4px; overflow:hidden;"><%= ad.displayedURL %></div>					</div>					<div id="IL_SR_BTN" class="<%= baseCls %>" style="position:absolute; right:24px; font-family:Trebuchet MS,Arial,sans-serif; font-size:10pt; font-weight:bold; cursor:pointer; text-align:center; width:93px; height:24px; top:59px; line-height:24px; color:#ffffff;"><%= btnText %></div>				<% } else { %>					<% if (ad.actualTemplate == "iframe"){ %>						<iframe name="IL_SR_FRAME" class="<%= baseCls %>" src="<%= st.blankURL %>" width="<%= data.width %>" height="<%= data.height %>" frameborder="0" scrolling="no"></iframe>						<%= rt.helpers.getEchoForm(content, "IL_SR_FRAME", "IL_SR_FORM") %>					<% } else { %>						<%= content %>					<% } %>				<% } %>			</div>';
                html = ut.VeST(tpl, {
                    rt: rt,
                    st: st,
                    baseCls: st.baseClass,
                    hdrCls: hdrCls,
                    ibh: ibh,
                    instance: instance,
                    data: data,
                    ad: ad,
                    content: content,
                    sentence: sentence,
                    skinPath: skinPath,
                    oldIE: stsr.oldIE,
                    oldFF: b.Firefox && b.getVersion(true) < 4,
                    themeColor: themeColor,
                    titleBase: stsr.themes.tb[ibh.tb],
                    titlePrefix: rt.helpers.translate(data.tp || ibh.tp),
                    btnText: rt.helpers.translate(data.bt || ibh.bt)
                });
                var boxShadow = "0 2px 6px 2px rgba(0, 0, 0, 0.5)";
                nodeStyle = ut.object.extend({
                    position: srPos,
                    bottom: 0,
                    zIndex: st.baseZIndex,
                    width: instance.fullWidth + "px",
                    height: instance.height + "px",
                    left: instance.left + "px",
                    borderTop: "2px solid " + themeColor,
                    borderLeft: "1px solid #a7a9ab",
                    borderRight: "1px solid #a7a9ab",
                    boxShadow: boxShadow,
                    MozBoxShadow: boxShadow,
                    WebkitBoxShadow: boxShadow,
                    oBoxShadow: boxShadow,
                    msBoxShadow: boxShadow
                }, (stsr.oldIE || (b.Firefox && b.getVersion(true) < 4)) ? {} : {
                    overflow: "hidden"
                }, srIEStyle);
                dm.element.setStyle(hook.node, nodeStyle);
                hook.node.innerHTML = html;
                if (ad.actualTemplate == "iframe") {
                    var form = dm.element.$("IL_SR_FORM");
                    if (form) {
                        form.submit()
                    }
                }
            },
            getSkinPath: function() {
                var stsr = this.settings;
                return ["http:/", this.$root.settings.hosts.resources, "static", "skins", stsr.skin, stsr.prodName, stsr.rv, ""].join("/")
            },
            setEventHandlers: function(hook) {
                var rt = this.$root,
                    b = rt.browser,
                    st = rt.settings,
                    ut = rt.utils,
                    node = hook.node,
                    stsr = this.settings,
                    dm = ut.dom,
                    dmel = dm.element,
                    evdm = rt.event.dom,
                    sr = this,
                    ns = "IL_SR_",
                    xBtn = dmel.$(ns + "X"),
                    helpBtn = dmel.$(ns + "HELP"),
                    clickBtn = dmel.$(ns + "BTN"),
                    srLogo = dmel.$(ns + "LOGO"),
                    adArea = dmel.$("AD_AREA"),
                    data = rt.helpers.getHookData(hook.id),
                    ad = data.ads[0];
                if (b.IE) {
                    stsr.initialBannerShowTime = 20
                }
                this.closeBanner(stsr.initialBannerShowTime);
                evdm.bind(window, {
                    event: "resize",
                    listener: function() {
                        var left = Math.ceil((dm.viewport.getWidth() / 2) - (parseInt(node.style.width) / 2));
                        stsr.instance.left = left;
                        node.style.left = left + "px"
                    }
                });
                if (stsr.oldIE) {
                    evdm.bind(window, {
                        event: "scroll",
                        listener: this.updateTopPosition
                    });
                    evdm.bind(window, {
                        event: "resize",
                        listener: this.updateTopPosition
                    })
                }
                evdm.bind(window, {
                    event: "scroll",
                    listener: this.scrollHandler
                });
                if (xBtn) {
                    evdm.bind(xBtn, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            rt.event.stop("SRAnimateUp");
                            rt.event.disable("SRAnimateUp");
                            rt.event.stop("SRAnimateDown");
                            rt.event.disable("SRAnimateDown");
                            rt.event.dom.unbind(window, "scroll", sr.scrollHandler);
                            node.parentNode.removeChild(node)
                        }
                    });
                    evdm.bind(xBtn, {
                        event: "mouseover",
                        data: {
                            el: xBtn,
                            pos: "-15px -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    evdm.bind(xBtn, {
                        event: "mouseout",
                        data: {
                            el: xBtn,
                            pos: "-15px 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                if (srLogo) {
                    evdm.bind(srLogo, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.homeUrl) {
                                window.open(st.homeUrl, "_blank")
                            }
                        }
                    })
                }
                if (clickBtn) {
                    evdm.bind(clickBtn, {
                        event: "mouseover",
                        data: {
                            el: clickBtn
                        },
                        listener: function(event) {
                            event.data.el.style.backgroundPosition = "0 -24px"
                        }
                    });
                    evdm.bind(clickBtn, {
                        event: "mouseout",
                        data: {
                            el: clickBtn
                        },
                        listener: function(event) {
                            event.data.el.style.backgroundPosition = "0 0"
                        }
                    })
                }
                if (helpBtn) {
                    evdm.bind(helpBtn, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.helpUrl) {
                                window.open(st.helpUrl, "_blank")
                            }
                        }
                    });
                    evdm.bind(helpBtn, {
                        event: "mouseover",
                        data: {
                            el: helpBtn,
                            pos: "0 -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    evdm.bind(helpBtn, {
                        event: "mouseout",
                        data: {
                            el: helpBtn,
                            pos: "0 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                evdm.bind(node, {
                    event: "click",
                    listener: function(event) {
                        if (ad.template != "text" && adArea && dmel.inHierarchy(event.element, adArea) && ad.content && ad.content.match(/<object |<embed /i) && ad.content.match(/clicktag/i)) {
                            return
                        }
                        if (ad.template == "external") {
                            return
                        }
                        rt.event.stop("SRAnimateUp");
                        rt.event.disable("SRAnimateUp");
                        rt.event.stop("SRAnimateDown");
                        rt.event.disable("SRAnimateDown");
                        rt.event.dom.unbind(window, "scroll", sr.scrollHandler);
                        var cx = event.domEvent.layerX || event.domEvent.offsetX;
                        var cy = event.domEvent.layerY || event.domEvent.offsetY;
                        var target = event.domEvent.target || event.domEvent.srcElement;
                        if (target != event.element) {
                            var offset = rt.utils.dom.element.offset(target, event.element);
                            cx += offset.left;
                            cy += offset.top
                        }
                        rt.event.fire("sendErrorReport", {
                            ua: rt.browser.getValue(),
                            rt: rt.comm.settings.responses.gsd.rs,
                            cx: cx,
                            cy: cy,
                            an: stsr.animating.up,
                            tm: rt.utils.timer.delta("inSearchAnimateUp"),
                            cbdata: {
                                evt: "insearchClick",
                                data: hook.id
                            }
                        });
                        var parent = node.parentNode;
                        parent.removeChild(node)
                    }
                });
                evdm.bind(node, {
                    event: "mouseenter",
                    listener: function() {
                        stsr.animating.mouseover = true;
                        stsr.animating.mouseout = false;
                        if (!stsr.animating.up) {
                            rt.event.repeat("SRAnimateUp", stsr.animationInterval)
                        }
                    }
                });
                evdm.bind(node, {
                    event: "mouseleave",
                    listener: function() {
                        stsr.animating.mouseover = false;
                        stsr.animating.mouseout = true;
                        sr.closeBanner(stsr.oldIE ? 5 : 2)
                    }
                })
            },
            setBackgroundPosition: function(event) {
                event.data.el.style.backgroundPosition = event.data.pos
            },
            updateTopPosition: function() {
                var rt = window[appNamespace],
                    dm = rt.utils.dom,
                    stsr = rt.products.insearch.settings,
                    node = stsr.instance.hook.node;
                var currentHeight = parseInt(rt.utils.dom.element.getStyle(node, "height"));
                node.style.top = (dm.viewport.getHeight() + dm.document.getScrollTop() - currentHeight) + "px"
            },
            scrollHandler: function() {
                var rt = this.$root,
                    dm = rt.utils.dom,
                    docHeight = dm.document.getHeight(),
                    currentScroll = dm.document.getScrollTop() + dm.viewport.getHeight(),
                    stsr = this.settings;
                if (currentScroll == 0) {
                    currentScroll = window.pageYOffset || (document.body.parentElement ? document.body.parentElement.scrollTop : 0)
                }
                if (docHeight <= currentScroll) {
                    if (stsr.state == "open") {
                        return
                    }
                    this.closeBanner(stsr.oldIE ? 5 : 4);
                    if (!stsr.animating.up) {
                        rt.event.repeat("SRAnimateUp", stsr.animationInterval)
                    }
                }
            },
            closeBanner: function(delay) {
                this.$root.event.repeat("SRAnimateDown", this.settings.animationInterval, null, delay * 1000)
            }
        }, {
            settings: {
                prodId: "IL_INSEARCH",
                prodCode: "s",
                prodName: "insearch",
                instance: null,
                sentences: {},
                oldIE: (function() {
                    var b = $root.browser;
                    return (b.IE && (document.compatMode == "BackCompat" || b.getVersion(true) < 9))
                }()),
                animationInterval: $root.browser.IE ? 7 : 10,
                initialBannerShowTime: 15,
                skin: "brand",
                theme: "def",
                rv: "1",
                bannerTimeoutClose: null,
                state: "closed",
                animating: {
                    down: false,
                    up: false,
                    mouseover: false,
                    mouseout: false
                },
                behavior: {
                    def: {
                        heightOpen: 155,
                        heightClose: 55,
                        tb: "white",
                        theme: "def",
                        tp: "searchingFor",
                        bt: "clickHere",
                        thumb: false,
                        favicon: false,
                        titlePrefixColor: "#4E4E4E",
                        titleTermColor: "#4E4E4E"
                    }
                },
                themes: {
                    color: {
                        def: "#003366",
                        lightBlue: "#1b8ede",
                        green: "#67b045",
                        orange: "#f3933b",
                        red: "#dd3c42",
                        pink: "#d84189",
                        purple: "#5939aa"
                    },
                    tb: {
                        gray: "height:55px; background-color:#F1F1F2;",
                        white: "height:55px; background-color:#FFFFFF;",
                        grayLine: "height:53px; border-bottom:2px solid #F1F1F2; background-color:#FFFFFF;"
                    }
                }
            }
        }, true);
        insearch.bind({
            event: "renderProduct",
            listener: {
                renderInsearch: function() {
                    var rt = this.$root,
                        imp = rt.comm.settings.responses.impression,
                        srst = this.settings,
                        prodCode;
                    if (imp.prs["s"]) {
                        delete imp.prs["o"];
                        delete rt.settings.productRenderStatus["o"];
                        prodCode = srst.prodCode
                    } else {
                        if (imp.prs["o"]) {
                            prodCode = srst.prodCode = "o";
                            delete rt.settings.productRenderStatus["s"]
                        }
                    }
                    var prod = imp.prs[prodCode];
                    if (!prod || !prod.sentences || !prod.sentences.length) {
                        rt.event.fire("productRenderStatus", {
                            prod: "s",
                            status: "none"
                        });
                        rt.event.fire("productRenderStatus", {
                            prod: "o",
                            status: "none"
                        });
                        return
                    }
                    rt.event.fire("productRenderStatus", {
                        prod: prodCode,
                        status: "during"
                    });
                    rt.event.fire("initInsearch")
                }
            }
        });
        insearch.bind({
            event: "initInsearch",
            listener: {
                init: function() {
                    var rt = this.$root,
                        ut = rt.utils,
                        stsr = this.settings,
                        instance, resImp = rt.comm.settings.responses.impression,
                        bh = rt.settings.behavior,
                        senteceIndex = resImp.prs[stsr.prodCode].sentences[0],
                        bhsr = stsr.behavior,
                        getadsDelay = 0;
                    bhsr.impression = rt.helpers.renameBehaviorProperties(resImp.prs[stsr.prodCode].behavior || {});
                    instance = stsr.instance = {
                        behavior: rt.helpers.sanitize(ut.object.extend({}, bh.def, bhsr.def, bh.impression, bhsr.impression, bh.customer), bh.sanitizer),
                        sentence: ut.object.keys(resImp.sentences)[senteceIndex],
                        node: ut.dom.createDOMFragment({
                            tag: "div",
                            id: stsr.prodId,
                            cls: rt.settings.baseClass,
                            parent: document.body
                        })
                    };
                    var hook = instance.hook = rt.helpers.createHook(stsr.prodId, instance.sentence, instance.node, 0, this, stsr.prodCode, stsr.prodName, false, instance);
                    rt.event.fire("getAds", {
                        hookId: hook.id,
                        callback: "getadsResponseInsearch"
                    }, getadsDelay)
                }
            }
        });
        insearch.bind({
            event: "getadsResponseInsearch",
            listener: {
                setAdData: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        data = event.data,
                        hookId = data.lid,
                        hook = st.hooksMap[hookId],
                        ad;
                    if (!hook) {
                        rt.logger.error("Error: Misssing hook.", this.setAdData);
                        return false
                    }
                    ad = data.ads[hook.currentAdIndex];
                    if (ad && ad.template == "external") {
                        data = rt.externalTags.setExternalTagData(hook, data)
                    }
                    if (data.ads.length) {
                        ad = data.ads[0];
                        rt.helpers.setAdThumbnail(ad);
                        if (ad.trackerURL) {
                            rt.helpers.hitTrackerURL(ad.trackerURL)
                        }
                    }
                    rt.helpers.setHookData(hookId, data);
                    if (hook.externalTag) {
                        rt.externalTags.updateViewedTags(hook.id)
                    }
                    rt.event.fire("createInsearchUnit", {
                        hookId: hookId
                    })
                }
            }
        });
        insearch.bind({
            event: "createInsearchUnit",
            listener: {
                createInsearchUnit: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        msg = "",
                        stsr = this.settings,
                        data = rt.helpers.getHookData(hookId);
                    if (!data.ads.length) {
                        msg = "received no ad."
                    }
                    if (msg) {
                        rt.event.fire("productRenderStatus", {
                            prod: stsr.prodCode,
                            status: "failed",
                            reason: msg
                        });
                        return
                    }
                    this.renderUnit(hookId);
                    this.setEventHandlers(hook);
                    rt.event.repeat("SRAnimateUp", stsr.animationInterval);
                    rt.event.fire("productRenderStatus", {
                        prod: stsr.prodCode,
                        status: "after"
                    })
                }
            }
        });
        insearch.bind({
            event: "insearchClick",
            listener: {
                insearchClick: function(event) {
                    var rt = this.$root,
                        hookId = event.data;
                    rt.utils.timer.stop("adView" + hookId);
                    var reuseWindow = rt.helpers.getHookBehavior(hookId).adsReuseWindow;
                    if (!reuseWindow) {
                        try {
                            rt.settings.adWin = window.open("", hookId)
                        } catch (ex) {
                            rt.settings.adWin = null;
                            rt.logger.error("insearch click: Unable to open new window", this.insearchClick)
                        }
                    }
                    rt.event.fire("productClick", {
                        hookId: hookId,
                        clickType: "onWin"
                    })
                }
            }
        });
        insearch.bind({
            event: "SRAnimateUp",
            listener: {
                animateUp: function() {
                    var rt = this.$root,
                        stsr = this.settings,
                        ut = rt.utils,
                        dmel = ut.dom.element,
                        hook = stsr.instance.hook,
                        node = hook.node,
                        anim = stsr.animating,
                        b = rt.browser;
                    var heightOpen = stsr.instance.behavior.heightOpen;
                    if (stsr.state == "open") {
                        rt.event.stop("SRAnimateUp");
                        return
                    }
                    var currentHeight = parseInt(dmel.getStyle(node, "height"));
                    if (currentHeight >= heightOpen) {
                        rt.event.stop("SRAnimateUp");
                        rt.utils.timer.stop("inSearchAnimateUp");
                        rt.utils.timer.start("adView" + hook.id);
                        stsr.state = "open";
                        anim.up = false;
                        rt.utils.cookie.remove("refc");
                        if (stsr.oldIE) {
                            this.updateTopPosition()
                        }
                        var data = rt.helpers.getHookData(hook.id);
                        rt.event.fire("sendAdView", {
                            hookId: hook.id,
                            params: {
                                bdc: hook.bdc,
                                prod_t: hook.prod,
                                emd: data.ads[hook.currentAdIndex].emd || ""
                            }
                        });
                        return
                    }
                    if (!anim.up) {
                        anim.up = true;
                        stsr.state = "animating";
                        rt.utils.timer.start("inSearchAnimateUp")
                    }
                    var newHeight, newTop, step, utd = ut.dom.document,
                        vpHeight = ut.dom.viewport.getHeight(),
                        docScroll = utd.getScrollTop();
                    newTop = vpHeight + docScroll - currentHeight;
                    if (b.IE && b.getVersion(true) > 6) {
                        step = 3;
                        if (b.getVersion() >= 9) {
                            newTop = false
                        }
                    } else {
                        if (stsr.oldIE) {
                            step = null;
                            newHeight = heightOpen;
                            newTop = vpHeight + docScroll - heightOpen
                        } else {
                            step = 2;
                            newTop = false
                        }
                    }
                    if (step) {
                        newHeight = Math.min(currentHeight + step, heightOpen)
                    }
                    if (newTop) {
                        dmel.setStyle(node, {
                            top: newTop + "px"
                        })
                    }
                    dmel.setStyle(node, {
                        height: newHeight + "px"
                    })
                }
            }
        });
        insearch.bind({
            event: "SRAnimateDown",
            listener: {
                animateDown: function() {
                    var rt = this.$root,
                        dmel = rt.utils.dom.element,
                        stsr = this.settings,
                        hook = stsr.instance.hook,
                        node = hook.node,
                        anim = stsr.animating,
                        b = rt.browser;
                    var heightClose = stsr.instance.behavior.heightClose;
                    if (stsr.state == "closed") {
                        rt.event.stop("SRAnimateDown");
                        return
                    }
                    var currentHeight = parseInt(dmel.getStyle(node, "height"));
                    if (currentHeight <= heightClose || anim.up || anim.mouseover) {
                        anim.down = false;
                        rt.event.stop("SRAnimateDown");
                        stsr.state = currentHeight <= heightClose ? "closed" : "animating";
                        rt.utils.timer.clear("adView" + hook.id);
                        return
                    }
                    if (!anim.down) {
                        anim.down = true;
                        stsr.state = "animating"
                    }
                    var dm = rt.utils.dom,
                        vpHeight = dm.viewport.getHeight(),
                        docScroll = dm.document.getScrollTop(),
                        newHeight, currentTop = parseInt(dmel.getStyle(node, "top")),
                        step = 1,
                        newTop;
                    if (!stsr.oldIE) {
                        newTop = false
                    } else {
                        if (b.IE && b.getVersion(true) > 6 && b.getVersion(true) < 9) {
                            step = 2;
                            newTop = currentTop + step
                        } else {
                            if (stsr.oldIE) {
                                step = false;
                                newHeight = heightClose;
                                newTop = vpHeight + docScroll - heightClose
                            }
                        }
                    }
                    if (step) {
                        newHeight = Math.max(currentHeight - step, heightClose)
                    }
                    dmel.setStyle(node, {
                        height: newHeight + "px"
                    });
                    if (newTop) {
                        dmel.setStyle(node, {
                            top: newTop + "px"
                        })
                    }
                }
            }
        });
        var inframe = products.$create("inframe", {
            getPageMargins: function() {
                var rt = this.$root,
                    stif = this.settings,
                    dm = rt.utils.dom,
                    wrapper = dm.findWidestNode(),
                    result = {
                        left: 0,
                        right: 0
                    };
                if (wrapper && wrapper.node != document.body) {
                    var offset = dm.element.offset(wrapper.node);
                    var width = dm.element.getActualWidth(wrapper.node);
                    var docWidth = dm.document.getWidth();
                    result = {
                        left: offset.left - stif.buffer,
                        right: docWidth - width - offset.left - 2 * stif.buffer
                    }
                }
                return result
            },
            buildImpPageMarginsParam: function() {
                var stif = this.settings,
                    stifw = stif.width,
                    margins = stif.margins = this.getPageMargins();
                return [margins.left > stifw.thin ? margins.left > stifw.wide ? "w" : "t" : "", margins.right > stifw.thin ? margins.right > stifw.wide ? "w" : "t" : ""].join("*").replace(/^\*$/, "")
            },
            buildGetadsPageMarginsParam: function(bs) {
                var uta = this.$root.utils.array,
                    stif = this.settings,
                    instance = stif.instance,
                    arr = [];
                if (/THIN|AUTO/.test(bs)) {
                    uta.push(arr, stif.width.thin, "*", stif.height)
                }
                if ((instance.left || instance.right).width >= stif.width.wide && /WIDE|AUTO/.test(bs)) {
                    uta.push(arr, arr.length ? "~" : "", stif.width.wide, "*", stif.height)
                }
                return arr.join("")
            },
            renderUnit: function(side) {
                var rt = this.$root,
                    ut = rt.utils,
                    dm = ut.dom,
                    dms = dm.style,
                    dmel = dm.element,
                    st = rt.settings,
                    stif = this.settings,
                    b = rt.browser,
                    instance = stif.instance,
                    html, bh = stif.behavior.merged,
                    skinPath = this.getSkinPath(),
                    bgCss, bgCls = "IL_IF_BG",
                    hook = instance[side].hook,
                    hookId = hook.id,
                    data = rt.helpers.getHookData(hookId),
                    ad, content, node = dmel.$("IL_IF_" + side.toUpperCase());
                ad = data.ads[hook.currentAdIndex];
                rt.helpers.setActualTemplate(ad);
                if (ad.contentUrl) {
                    content = rt.bubble.templates.external(hook, hook.currentAdIndex)
                } else {
                    content = rt.helpers.parseTokens(hook)
                }
                if (b.IE && b.getVersion(true) < 8) {
                    bgCss = skinPath + "hdr-btns.png"
                } else {
                    bgCss = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB+hJREFUeNrEV3tMm9cVP7Y/29gY/MBvg3klgFJGAnFeBUpok03NOhJeaVcSdVvGEu2fbdqmNm23bkmqRk1bbVm0PiKtTaVtSkLTh9SQlLY0CWSDpkugy8MmCY+AwRiwzbDBYJudc+FzP0e0+W+70pG/ex733Hvuub9zLPr9/gPAj/n5edDr9TA2NmbG6fJF9i3kuZEHIpEorvvbZ59hv7y9WCyGWCwGJpMJPB5PBrKykWJITp1O652Y8DE9fg0OEscGpIOl999fbjQaUEMEXq8Xbjid7ch/Guk8fPP4DtKBB8rLHXp9Gm5knjYRc7qcnyD/KaR/8YpCx3vWrllzZN26tRIJ7p4fmfYMKCkuLv380qXWf3Z0/AxZR77G6TMPlJftL161SiSMTFamXby6pGRz+8WLFZevXPkRsv4qdFyBix9ZuXKlZGYmzBh+v5+FXqvVsnlhYaE4Eo0cvnTpCydOW+5yWrdhw/oD+fkFEJqeWXJXDodDFolE/vLvq1ev08m55ORkkMvkLxcUFEimF40+bvkYOjo62HdJSQk8vOVh9p2fly/q6+v/QzAYvE+wpsRisbycnZUDZD/q8YA8SQ5qtYYJMdSQtDgvLPyWrH9g4EWplNtEMc2z2qyrZ2dnIRyewcTyQmdnJzz51K9h794nobu7G0ZGRpgsHA6D1WpdgTZFvFeZTFaabrPZF+Qz4Ha74bXXXofhYTc4nTfg6BtHYXJykskikTmyfxDNzFw0EimkU/Mhlkg42LZtKwSD00CbofuibOXlqmQV8Urws3vBsdQhtF+etxzm5ubg2Ftvo6MI7NjRwE7Ly1FX1NMTyOPkSUkKUiAn/DAYjeByuqC19VNYsWIFyOXyuBzvGRQKhSoeZwknj0SicTn9yBVJbJ6UlASRWJRFih9R1MWDiLg0ne5OIDAJKSkpCckQDE1BUVERONY4YCb8VcIEAgFIVipd/BxP0OsP+EEqk7I5hfps81loaHic8ABOHj8J1TXVkJK6sH4Aw45ZPinChy1veueUJzc3Vy10HJ5ZcIYRSdjQzVs3p6q3VlkMBsMUzZ0ul+n8hbaB3JxcGXM8NIQRM4AMo8ThtY16RhAOxOx1zKP89q2b7sYf78qg5Aqr1al/HB4exjBG4xSbj7GwCnkjuAjqvoo2U4K9eJRKxTEvno50bOnpIEaHc3MRmMbNa7Q6JC2TDQ4OEjK+RIgmordKBzt+sukTVC4lyFxqjI+PI6bGOhoe/34lTqd5/sxCZNRo34a5UKjRaJe0p2elUinP1lZXf5eumnfMEvZ085lXh9zuBsw3kVKpBAKgUCjEFjebTccf2bJlN12TcMFFx5Tp+rMftbzpGR19hGwVCiUCUAxfRwgTLRyzZ6Qf/fbmzT8nk7shk8K389H6ukNd3d31Pp+/gJho4EIYbDp34cLle+D0GNL36mtr1l3p6qqZnPxPLpaOWG5O1tXiVcXH29rbbgiVhSf+nw4x/J8Gt+/A8wn1eHEzhEz5FBF6MUhfUCbyNZfGc795NqEecxzHkIowBWkt0jJKIqRrSF20/DfV49qUlNRDaWm6bEoQGqHQNExMjPcj3u7F6d/vcZBdGo1mn1arsyoQvegcWFDI3jk1NfULlDcvVY9/l5WV9ZzRaEpYSaVKAaPRmInF4299fX1UHPYu4ZCO8edly5bv0el0CQJCRLPZnI848eGdOwO/QtYrwjveSk7NZgtrYYgI7sa8Y/E5bSg7O5u6iMeWcLwbkW8PYQCvfzfZbDaR3W4n8KhkJ0bAB6lU9qLVaouvcrG9HaFulBmkYQtTWlbG+LSx8fGJF/x+34nFfoqBT1qafr9eb2ATQkCZVMbsaAwhWimxehFkpqdniHw+30EspevoxEWIu3lSTA6iWawkg3cG4Qc/fAJ27twBHqzFM9Mh4OXYi2WhoYPfJKJVhclk1PPyZKUCmk+fhglEut7bt+H8ufNYSpOZTCaVgj5NT4mXyeHl5KtTU+PVRSvTwqOP1cMs1lRKDCpvKrwnXq7B2orO6K47aS6VSldiQsXlVpsNtm+vgxMnmjDTJdDYuCseGnbnWKX6B/qzOKwiHMd2I4sL1WotuFwuONN8BjZteghSMMF4oCFddBxXxrlEykkT7Cd8fqzTEpZz3rFxwNYIBPpMJraYzX2hUJAVeyHRm9y4cSOsdjiovYnzg6ir0aivfZW1KmdQYN/X18t6tp/sboR6PPmpd06xGs7LQxhF7GbHCDIlb751bKi0tNQkbEspuQgszBZzAsBgm+rbVlVl0Wo1rK3o7x/QII67N6xfr6B5b28vqFPVoEvTMbCg+sxhRKhGx6IxaP9H+217hj2XkiuKz+BgT08PKLDo84QlDFiVEfBoUa1Gc4hquODa/Cg7TLWWdKhVstms7DsJT5iTkwP2TDubX8fmz2K27KeejC8S4nffe78J25hqbEsS/qrwJ73cdYV67Q/qampqFqFQOOQnTjY149+XysLC+/BmE+0pch2fd0I0Gn0b8+GJu6sT99m5c/uwk/glprwMn8hCAR8dBe+odxb/kvzpwcpK+hsz+zVwqfyopeUlfyDQaDaZOYNBzxyOYAMwMT4xjfX8+fKyshf49y+ETEL4p+traw9fvXatyu0ezqONWSzmm5UVFe9/2trqvgdOh5B+ur2u7mD3l19WDQ25cygyGRnp1x+qrPzgQlvbmFD5vwIMAAZsT2nNzBrxAAAAAElFTkSuQmCC"
                }
                dms.addRule("." + bgCls, ['background-image : url("', bgCss, '")'].join(""));
                var otherSide = (side == "left") ? "right" : "left";
                var themeColor = stif.themes.color[bh.theme];
                var tpl = '<div 				 class="<%= baseCls %>" style="position:absolute; top:0; <%= otherSide %>: 0; width:<%= width %>; height:632px; border-bottom: 2px solid <%= themeColor %>;">				<%-- unit --%>				<div class="<%= baseCls %> IL_IF_AD_AREA" style="position:absolute; top:0; left:0; width:<%= width %>; height:600px; text-align:center;">					<% if (ad.actualTemplate == "iframe"){ %>						<iframe name="IL_IF_FRAME_<%= sideUpper %>" class="<%= baseCls %>" src="<%= st.blankURL %>" width="<%= width %>" height="<%= height %>" frameborder="0" scrolling="no"></iframe>						<%= rt.helpers.getEchoForm(content, "IL_IF_FRAME_" + sideUpper, "IL_IF_FORM_" + sideUpper) %>					<% } else { %>						<%= content %>					<% } %>				</div>				<%-- footer --%>				<div class="<%= baseCls %> IL_IF_FOOTER" style="position:absolute; bottom:0; left:0; width:<%= width %>; height:32px; cursor: pointer; background-color:#f1f1f2;">					<div id="IL_IF_LOGO_<%= sideUpper %>" class="<%= baseCls %>" style="position:absolute; width:53px; height:12px; top:9px; <%= side %>:10px; cursor:pointer; font-size:1px; <% if (oldIE || oldFF){ %>background:url(<%= skinPath %>logo.png) no-repeat scroll 0 0 transparent;<% } %>">						<% if (!oldIE && !oldFF){ %>							<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"								 width="53px" height="12px" viewBox="0 0 636 144" enable-background="new 0 0 636 144" xml:space="preserve">								<g>									<!-- dot (first) -->									<path id="IL_IF_LOGO_<%= sideUpper %>_LOGO_DOT_1" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M16.918,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.722-10.57-10.57-10.57 S6.334,8.434,6.334,14.282S11.07,24.865,16.918,24.865"/>									<!-- in -->									<path fill="#003366" d="M88.085,43.784H77.024c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.027,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.467c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.015V45.889v-0.025c0-1.124-0.885-2.033-2.01-2.08h-11.49c-1.09,0.047-1.949,0.907-1.986,1.996v46.828h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.511,25.512h1.151c14.031,0,25.511-11.48,25.511-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.159-17.948,18.031-17.948h6.366c9.871,0,17.948,8.076,18.042,17.948v28.89v4.62v28.873 c0.013,0.023,0.013,0.034,0.013,0.048c0,1.111,0.883,2.008,1.983,2.057h11.505c1.077-0.036,1.936-0.887,1.985-1.973v-27.966v-5.659 V74.966C119.267,57.815,105.234,43.784,88.085,43.784"/>									<!-- f (part) -->									<path fill="#003366" d="M155.069,56.972v82.643c-0.072,0.992-0.886,1.78-1.903,1.818h-11.014 c-1.062-0.038-1.912-0.897-1.912-1.962c0-0.024,0-0.048-0.023-0.073V34.456c0.716-17.064,14.923-30.744,32.179-30.744h8.536 c0.025,0,0.038,0.011,0.06,0.011c1.053,0,1.915,0.849,1.974,1.901v11.037c-0.035,1.016-0.85,1.844-1.878,1.889h-8.692 c-9.509,0-17.327,7.75-17.327,17.268v6.301V56.972z"/>									<!-- f (part) -->									<path fill="#003366" d="M151.99,59.104h28.873c0.023-0.012,0.034-0.012,0.047-0.012 c1.111,0,2.008-0.884,2.057-1.984V45.604c-0.036-1.078-0.887-1.938-1.973-1.986h-27.965"/>									<!-- o -->									<path fill="#003366" d="M276.24,107.925h0.158V76.608c-0.37-18.164-15.248-32.825-33.494-32.825 h-16.756v0.022c-17.875,0.431-32.322,14.924-32.679,32.803h-0.026v31.316c0,18.213,14.601,33.064,32.705,33.496v0.012h16.589h0.021 h0.146C261.304,141.349,276.24,126.354,276.24,107.925 M208.93,107.925L208.93,107.925V77.289c0-9.914,8.096-18.02,18.021-18.02 h15.953c9.946,0,18.02,8.106,18.02,18.02v30.636h-0.167c0,9.949-8.074,18.021-17.999,18.021h-15.807 C217.026,125.946,208.93,117.874,208.93,107.925"/>									<!-- l -->									<path fill="#003366" d="M312.844,139.376L312.844,139.376c0,1.064-0.798,1.938-1.829,2.045h-11.816 c-1.027-0.107-1.837-0.98-1.837-2.045h-0.013V5.769h0.013c0-1.135,0.908-2.033,2.031-2.057h11.432 c1.124,0.024,2.019,0.922,2.019,2.057V139.376z"/>									<!-- dot (second) -->									<path id="IL_IF_LOGO_<%= sideUpper %>_LOGO_DOT_2" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M341.662,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.723-10.57-10.57-10.57 s-10.584,4.722-10.584,10.57S335.814,24.865,341.662,24.865"/>									<!-- in (second) -->									<path fill="#003366" d="M412.829,43.784h-11.061c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.026,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.468c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.016V45.723v-0.025c0-1.123-0.885-2.033-2.01-2.08h-11.49c-1.091,0.047-1.949,0.908-1.986,1.996v46.994h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.512,25.512h1.15c14.031,0,25.512-11.48,25.512-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.158-17.948,18.029-17.948h6.367c9.871,0,17.947,8.076,18.041,17.948v28.89v4.62v28.873 c0.014,0.023,0.014,0.034,0.014,0.048c0,1.111,0.883,2.008,1.982,2.057h11.506c1.076-0.036,1.936-0.887,1.984-1.973v-27.966v-5.659 V74.966C444.01,57.815,429.979,43.784,412.829,43.784"/>									<!-- k -->									<path fill="#003366" d="M480.277,139.376L480.277,139.376V91.735h0.146h9.255l40.656,48.766 c0.599,0.549,1.15,0.906,1.841,0.932h16.073c0.882-0.025,2.869-0.322,1.794-2.056l-0.013-0.024l-47.58-56.777l44.599-36.815 c0.015-0.049,0.015-0.049,0.036-0.073c1.066-1.734-0.886-2.032-1.78-2.069H527.08c-0.621,0.024-1.15,0.324-1.666,0.791 l-36.812,31.075h-8.325V5.769c0-1.135-0.896-2.033-2.02-2.057h-11.422c-1.124,0.024-2.033,0.922-2.033,2.057v133.607 c0,1.064,0.803,1.938,1.844,2.045h11.802C479.476,141.313,480.277,140.44,480.277,139.376"/>									<!-- s -->									<path fill="#003366" d="M603.208,84.782H577.99c-6.91-0.114-12.508-5.785-12.508-12.783 c0-6.996,5.598-12.895,12.508-12.895h39.271c1.146,0,2.08-0.959,2.08-2.111v0.191V45.752v-0.037c0-1.164-0.935-2.097-2.08-2.097 H577.99c-15.451,0-28.008,12.73-28.008,28.381c0,15.651,12.557,28.381,28.008,28.27h24.252c6.911,0.111,12.508,5.812,12.508,12.795 c0,6.996-5.597,12.896-12.508,12.896H591.56l0.001-0.014h-28.874c-0.022,0.014-0.034,0.014-0.047,0.014 c-1.11,0-2.007,0.896-2.056,2.01v11.449c0.035,1.092,0.886,1.963,1.973,2.014h0.225h27.74h12.224 c15.209-0.279,27.491-12.9,27.491-28.369C630.236,97.737,618.191,85.202,603.208,84.782"/>								</g>							</svg>						<% } %>					</div>					<div id="IL_IF_HELP_<%= sideUpper %>" class="<%= baseCls %> <%= cls %>" style="width:15px; height:15px; position:absolute; top:9px; <%= otherSide %>:27px; background-position:0 0; cursor:pointer; font-size:1px;"></div>					<div id="IL_IF_X_<%= sideUpper %>" class="<%= baseCls %> <%= cls %>" style="width:15px; height:15px; position:absolute; top:9px; <%= otherSide %>:9px; background-position:-15px 0; cursor:pointer; font-size:1px;"></div>				</div>			</div>';
                html = ut.VeST(tpl, {
                    side: side,
                    sideUpper: side.toUpperCase(),
                    rt: rt,
                    st: st,
                    bh: bh,
                    baseCls: st.baseClass,
                    cls: bgCls,
                    otherSide: otherSide,
                    width: instance[side].width + "px",
                    height: stif.height,
                    ad: ad,
                    content: content,
                    themeColor: themeColor,
                    oldIE: stif.oldIE,
                    oldFF: b.Firefox && b.getVersion(true) < 4,
                    skinPath: skinPath
                });
                var nodeStyle = {
                    position: stif.oldIE ? "absolute" : "fixed",
                    top: stif.oldIE ? dm.document.getScrollTop() : 0,
                    width: 0,
                    height: stif.height + 34 + "px",
                    overflow: "hidden",
                    display: (stif.margins[side] < instance[side].width) ? "none" : "block",
                    cursor: "pointer"
                };
                nodeStyle[side] = 0;
                dmel.setStyle(node, nodeStyle);
                node.innerHTML = html;
                if (ad.actualTemplate == "iframe") {
                    var form = dm.element.$("IL_IF_FORM_" + side.toUpperCase());
                    if (form) {
                        form.submit()
                    }
                }
                this.setUnitEventHandlers(side)
            },
            getSkinPath: function() {
                var stif = this.settings;
                return ["http:/", this.$root.settings.hosts.resources, "static", "skins", stif.skin, stif.prodName, stif.rv, ""].join("/")
            },
            setGeneralEventHandlers: function() {
                var evdm = this.$root.event.dom;
                evdm.bind(window, {
                    event: "scroll",
                    listener: this.scrollHandler
                });
                evdm.bind(window, {
                    event: "resize",
                    listener: this.resizeHandler
                })
            },
            setUnitEventHandlers: function(side) {
                var rt = this.$root,
                    st = rt.settings,
                    ut = rt.utils,
                    stif = this.settings,
                    dm = ut.dom,
                    dmel = dm.element,
                    evdm = rt.event.dom,
                    node = stif.instance[side].hook.node;
                var xBtn = dmel.$(stif.prodId + "_X_" + side.toUpperCase());
                if (xBtn) {
                    evdm.bind(xBtn, {
                        event: "click",
                        data: {
                            side: side
                        },
                        listener: function(event) {
                            rt.event.repeat("effectSlideClose", stif.animationInterval, event.data)
                        }
                    });
                    evdm.bind(xBtn, {
                        event: "mouseover",
                        data: {
                            el: xBtn,
                            pos: "-15px -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    evdm.bind(xBtn, {
                        event: "mouseout",
                        data: {
                            el: xBtn,
                            pos: "-15px 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                var ifLogo = dmel.$(stif.prodId + "_LOGO_" + side.toUpperCase());
                if (ifLogo) {
                    evdm.bind(ifLogo, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.homeUrl) {
                                window.open(st.homeUrl, "_blank")
                            }
                        }
                    })
                }
                var helpBtn = dmel.$(stif.prodId + "_HELP_" + side.toUpperCase());
                if (helpBtn) {
                    evdm.bind(helpBtn, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.helpUrl) {
                                window.open(st.helpUrl, "_blank")
                            }
                        }
                    });
                    evdm.bind(helpBtn, {
                        event: "mouseover",
                        data: {
                            el: helpBtn,
                            pos: "0 -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    evdm.bind(helpBtn, {
                        event: "mouseout",
                        data: {
                            el: helpBtn,
                            pos: "0 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                var adArea = ut.dom.filterByClass("IL_IF_AD_AREA", null, node);
                evdm.bind(adArea.length ? adArea[0] : node, {
                    event: "click",
                    data: {
                        hookId: stif.instance[side].hook.id
                    },
                    listener: function(event) {
                        rt.event.stop("effectSlideOpen");
                        rt.event.disable("effectSlideOpen");
                        rt.event.stop("effectSlideClose");
                        rt.event.disable("effectSlideClose");
                        rt.event.dom.unbind(window, "scroll", this.scrollHandler);
                        rt.event.dom.unbind(window, "resize", this.resizeHandler);
                        var parent, side, node;
                        for (side in stif.instance) {
                            node = stif.instance[side].hook.node;
                            parent = node.parentNode;
                            parent.removeChild(node)
                        }
                        var hookId = event.data.hookId,
                            hook = st.hooksMap[hookId],
                            data = rt.helpers.getHookData(hookId),
                            ad = data.ads[hook.currentAdIndex];
                        if (ad.template != "text" && ad.content.match(/<object |<embed /i) && ad.content.match(/clicktag/i)) {
                            return
                        }
                        event.$root.products.inframe.bannerClick(hookId)
                    }
                })
            },
            scrollHandler: function() {
                var stif = this.settings,
                    dm = this.$root.utils.dom,
                    side, node;
                var viewport = dm.viewport.getHeight();
                var height = stif.height + 34;
                var scroll = dm.document.getScrollTop();
                for (side in stif.instance) {
                    node = stif.instance[side].hook.node;
                    if (viewport > height) {
                        if (stif.oldIE) {
                            node.style.position = "absolute";
                            node.style.top = scroll + "px"
                        } else {
                            node.style.position = "fixed";
                            node.style.top = 0
                        }
                    } else {
                        node.style.position = "absolute";
                        if (scroll == 0) {
                            node.style.top = "0"
                        } else {
                            if (scroll >= height - viewport) {
                                node.style.top = (scroll - height + viewport) + "px"
                            }
                        }
                    }
                }
            },
            resizeHandler: function() {
                var side, margins = this.getPageMargins(),
                    instance = this.settings.instance;
                for (side in instance) {
                    instance[side].hook.node.style.display = margins[side] > instance[side].width ? "block" : "none"
                }
            },
            setBackgroundPosition: function(event) {
                event.data.el.style.backgroundPosition = event.data.pos
            },
            bannerClick: function(hookId) {
                var rt = this.$root;
                rt.utils.timer.stop("adView" + hookId);
                var reuseWindow = rt.helpers.getHookBehavior(hookId).adsReuseWindow;
                if (!reuseWindow) {
                    try {
                        rt.settings.adWin = window.open("", hookId)
                    } catch (ex) {
                        rt.settings.adWin = null
                    }
                }
                rt.event.fire("productClick", {
                    hookId: hookId,
                    clickType: "onWin"
                })
            }
        }, {
            settings: {
                prodId: "IL_IF",
                prodCode: "f",
                prodName: "inframe",
                width: {
                    thin: 120,
                    wide: 160
                },
                height: 600,
                effect: "slide",
                buffer: 15,
                instance: {},
                behavior: {
                    def: {
                        ifp: "DOUBLE",
                        bs: "AUTO",
                        theme: "def"
                    }
                },
                themes: {
                    color: {
                        def: "#003366",
                        lightBlue: "#1b8ede",
                        green: "#67b045",
                        orange: "#f3933b",
                        red: "#dd3c42",
                        pink: "#d84189",
                        purple: "#5939aa"
                    }
                },
                sentences: {},
                oldIE: (function() {
                    var b = $root.browser;
                    return (b.IE && (document.compatMode == "BackCompat" || b.getVersion(true) < 9))
                }()),
                skin: "brand",
                rv: "1",
                animationInterval: $root.browser.IE ? 7 : 10,
                bidRequestTimeout: 750
            }
        }, true);
        inframe.bind({
            event: "renderProduct",
            listener: {
                renderInframe: function() {
                    var rt = this.$root,
                        st = rt.settings,
                        imp = rt.comm.settings.responses.impression,
                        stif = this.settings,
                        stifw = stif.width,
                        bh = stif.behavior,
                        instance = stif.instance,
                        prodCode = stif.prodCode,
                        prod = imp.prs[prodCode];
                    if (!prod || !prod.sentences || !prod.sentences.length) {
                        rt.event.fire("productRenderStatus", {
                            prod: prodCode,
                            status: "none"
                        });
                        return
                    }
                    var margins = stif.margins,
                        side, result = {
                            left: 0,
                            right: 0
                        },
                        bhm = bh.merged = rt.utils.object.extend({}, st.behavior.def, bh.def, st.behavior.impression, imp.prs[prodCode].behavior, st.behavior.customer, {
                            adsReuseWindow: true
                        });
                    for (side in result) {
                        if ((new RegExp(side.toUpperCase() + "|DOUBLE")).test(bhm.ifp)) {
                            result[side] = /WIDE|AUTO/.test(bhm.bs) && margins[side] >= stifw.wide ? stifw.wide : /THIN|AUTO/.test(bhm.bs) && margins[side] >= stifw.thin ? stifw.thin : 0
                        }
                    }
                    if (bhm.ifp == "SINGLE") {
                        var sizes = {
                            thin: 1,
                            wide: 1
                        },
                            size;
                        for (size in sizes) {
                            if ((new RegExp(size.toUpperCase() + "|AUTO")).test(bhm.bs)) {
                                side = margins.left >= stifw[size] && margins.right >= stifw[size] ? ["left", "right"][Math.floor(Math.random() * 2)] : margins.left > stifw[size] ? "left" : margins.right > stifw[size] ? "right" : null;
                                if (side) {
                                    result[side] = stifw[size]
                                }
                            }
                        }
                        if (result.left && result.right) {
                            if (result.left < result.right) {
                                result.left = 0
                            } else {
                                result.right = 0
                            }
                        }
                    }
                    if (Math.min(result.left, result.right) > 0 && result.left != result.right) {
                        result.left = result.right = Math.min(result.left, result.right)
                    }
                    for (side in result) {
                        if (result[side]) {
                            instance[side] = {
                                width: result[side]
                            }
                        }
                    }
                    if (!(instance.left || instance.right)) {
                        rt.event.fire("productRenderStatus", {
                            prod: prodCode,
                            status: "none"
                        })
                    } else {
                        rt.event.fire("productRenderStatus", {
                            prod: prodCode,
                            status: "during"
                        });
                        rt.event.fire("initInframe")
                    }
                }
            }
        });
        inframe.bind({
            event: "initInframe",
            listener: {
                init: function() {
                    var rt = this.$root,
                        ut = rt.utils,
                        stif = this.settings,
                        resImp = rt.comm.settings.responses.impression,
                        sentenceIndex = resImp.prs[stif.prodCode].sentences[0],
                        instance = stif.instance,
                        side, node, id;
                    stif.sentence = ut.object.keys(resImp.sentences)[sentenceIndex];
                    for (side in instance) {
                        id = [stif.prodId, side.toUpperCase()].join("_");
                        node = ut.dom.createDOMFragment({
                            tag: "div",
                            id: id,
                            cls: [rt.settings.baseClass, stif.prodId].join(" "),
                            parent: document.body
                        });
                        instance[side].hook = rt.helpers.createHook(id, stif.sentence, node, 0, this, stif.prodCode, stif.prodName, false, instance[side])
                    }
                    rt.event.fire("getAds", {
                        hookId: (instance.left || instance.right).hook.id,
                        params: {
                            as: this.buildGetadsPageMarginsParam(stif.behavior.merged.bs),
                            nm: (instance.left && instance.right) ? 2 : 1
                        },
                        bidRequestTimeout: stif.bidRequestTimeout,
                        callback: "getadsResponseInframe"
                    })
                }
            }
        });
        inframe.bind({
            event: "getadsResponseInframe",
            listener: {
                setAdData: function(event) {
                    var rt = this.$root,
                        response = event.data,
                        data = {},
                        hook, ad, stif = this.settings,
                        instance = stif.instance,
                        side, i, leni;
                    if (!response.ads.length) {
                        rt.event.fire("productRenderStatus", {
                            prod: stif.prodCode,
                            status: "failed",
                            reason: "received no ads."
                        });
                        return false
                    } else {
                        for (i = 0, leni = response.ads.length; i < leni; i++) {
                            ad = response.ads[i];
                            if (ad.trackerURL) {
                                rt.helpers.hitTrackerURL(ad.trackerURL)
                            }
                        }
                    }
                    if (instance.left && instance.right) {
                        if (response.ads.length == 1) {
                            var selected = Math.floor(Math.random() * 2),
                                sides = ["left", "right"];
                            delete instance[sides[selected ^ 1]];
                            data[sides[selected]] = response
                        } else {
                            instance.right.hook.bdc = instance.left.hook.bdc;
                            instance.left.hook.midx = 0;
                            instance.right.hook.midx = 1;
                            if (instance.left.hook.externalTag) {
                                instance.right.hook.externalTag = instance.left.hook.externalTag
                            }
                            data.left = response;
                            data.right = rt.utils.object.clone(response, true);
                            data.left.ads = [data.left.ads[0]];
                            data.right.ads = [data.right.ads[1]]
                        }
                    } else {
                        for (side in instance) {
                            data[side] = response
                        }
                    }
                    for (side in instance) {
                        hook = instance[side].hook;
                        ad = data[side].ads[hook.currentAdIndex];
                        if (ad && ad.template == "external") {
                            data[side] = rt.externalTags.setExternalTagData(hook, data[side])
                        }
                        rt.helpers.setHookData(hook.id, data[side]);
                        if (hook.externalTag) {
                            rt.externalTags.updateViewedTags(hook.id)
                        }
                    }
                    rt.event.fire("createInframe")
                }
            }
        });
        inframe.bind({
            event: "createInframe",
            listener: {
                createInframe: function() {
                    var rt = this.$root,
                        stif = this.settings,
                        side;
                    for (side in stif.instance) {
                        this.renderUnit(side)
                    }
                    this.setGeneralEventHandlers();
                    rt.event.repeat("effectSlideOpen", stif.animationInterval);
                    rt.event.fire("productRenderStatus", {
                        prod: stif.prodCode,
                        status: "after"
                    })
                }
            }
        });
        inframe.bind({
            event: "effectSlideOpen",
            listener: {
                effectSlideOpen: function() {
                    var rt = this.$root,
                        stif = this.settings,
                        ut = rt.utils,
                        dmel = ut.dom.element,
                        b = rt.browser,
                        instance = stif.instance,
                        newWidth, side, hook;
                    var currentWidth = parseInt(dmel.getStyle((instance.left || instance.right).hook.node, "width"));
                    var endWidth = (instance.left || instance.right).width;
                    if (currentWidth >= endWidth) {
                        rt.event.stop("effectSlideOpen");
                        for (side in instance) {
                            hook = instance[side].hook;
                            rt.utils.timer.start("adView" + hook.id);
                            var data = rt.helpers.getHookData(hook.id);
                            rt.event.fire("sendAdView", {
                                hookId: hook.id,
                                params: {
                                    bdc: hook.bdc,
                                    midx: hook.midx || 0,
                                    prod_t: hook.prod,
                                    emd: data.ads[hook.currentAdIndex].emd || ""
                                }
                            })
                        }
                        return
                    }
                    newWidth = b.IE && b.getVersion(true) < 7 ? endWidth : Math.min(currentWidth + 2, endWidth);
                    for (side in instance) {
                        dmel.setStyle(instance[side].hook.node, {
                            width: newWidth + "px"
                        })
                    }
                }
            }
        });
        inframe.bind({
            event: "effectSlideClose",
            listener: {
                effectSlideClose: function(event) {
                    var rt = this.$root,
                        stif = this.settings,
                        dmel = rt.utils.dom.element,
                        b = rt.browser,
                        side = event.data.side,
                        node = stif.instance[side].hook.node;
                    var current = parseInt(dmel.getStyle(node, "width"));
                    if (current <= 0) {
                        rt.event.stop("effectSlideClose");
                        node.parentNode.removeChild(node);
                        delete stif.instance[side];
                        return
                    }
                    var width = b.IE && b.getVersion(true) < 7 ? 0 : Math.max(current - 2, 0);
                    dmel.setStyle(node, {
                        width: width + "px"
                    })
                }
            }
        });
        var externalTags = $root.$create("externalTags", {
            init: function() {
                var rt = this.$root,
                    imp = rt.comm.settings.responses.impression,
                    i, leni, ut = rt.utils,
                    uta = ut.array,
                    uto = ut.object,
                    ad, etst = this.settings;
                if (!imp.messages) {
                    return
                }
                if (rt.browser.isMobile()) {
                    delete imp.messages;
                    return
                }
                etst.bidCallbackVar = (rt.settings.white_label || "infolinks") + "_etag";
                etst.oldAPI = uta.indexOf(uta.map(uto.values(imp.prs), function(item) {
                    return !!item.messages
                }), true) > -1;
                for (i = 0, leni = imp.messages.length; i < leni; i++) {
                    ad = imp.messages[i].ads[0];
                    ad.prs = uta.toObject(ad.prs ? ad.prs.split(",") : uta.discard(uta.discard(uto.keys(imp.prs), "s"), "o"), {}, true);
                    imp.messages[i].msg = i;
                    if (ad.emd) {
                        etst.tags[ad.emd] = imp.messages[i]
                    }
                }
            },
            getProductAdSizes: function(prod, hook) {
                switch (prod) {
                case "i":
                    return [{
                        w: 300,
                        h: 250
                    }];
                case "r":
                    return [{
                        w: 300,
                        h: 250
                    }];
                case "t":
                    return [{
                        w: 300,
                        h: 250
                    }];
                case "s":
                    return [{
                        w: 728,
                        h: 90
                    }];
                case "o":
                    return [{
                        w: 728,
                        h: 90
                    }];
                case "f":
                    return [{
                        w: hook.instance.width || 160,
                        h: 600
                    }]
                }
            },
            setExternalTagData: function(hook, data) {
                var uto = this.$root.utils.object,
                    ad = data.ads[0];
                if (ad.content) {
                    ad.content = this.$root.utils.base64.decodeBase64(ad.content);
                    hook.externalTag = true
                } else {
                    if (ad.url || ad.contentUrl) {
                        if (ad.url) {
                            ad.contentUrl = ad.url
                        }
                        hook.externalTag = true
                    } else {
                        var bidInvocation = hook.externalTag,
                            etst = this.settings,
                            emd = data.ads[0].emd,
                            tag = etst.tags[emd],
                            i, leni, responses = etst.bidResponses[bidInvocation];
                        for (i = 0, leni = responses.length; i < leni; i++) {
                            if (responses[i].emd == emd) {
                                data.width = responses[i].size.w;
                                data.height = responses[i].size.h;
                                data.ads[0].contentUrl = responses[i].result[tag.ads[0].jat];
                                uto.extend(data.ads[0], tag.ads[0])
                            }
                        }
                    }
                }
                data.cacheOverride = true;
                return data
            },
            getBidData: function(bidInvocation) {
                var rt = this.$root,
                    etst = this.settings;
                if (rt.what(bidInvocation) != "number") {
                    return {}
                }
                var bids = etst.bidResponses[bidInvocation];
                var emd = rt.utils.array.map(bids, function(bid) {
                    return bid.emd || ""
                });
                var nj = rt.utils.array.map(bids, function(bid) {
                    var p = bid.result[etst.tags[bid.emd].ads[0].jpt];
                    return rt.utils.base64.encodeBase64((rt.what(p) == "number" ? p : -1).toString()).split("").reverse().join("") || ""
                });
                var jsd = rt.utils.array.map(bids, function(bid) {
                    return [bid.size.w, bid.size.h].join("*") || ""
                });
                return {
                    emd: emd.join("~"),
                    nj: nj.join("~"),
                    jsd: jsd.join("~")
                }
            },
            updateViewedTags: function(hookId) {
                var rt = this.$root,
                    hook = rt.settings.hooksMap[hookId],
                    data = rt.helpers.getHookData(hookId);
                var emd = data.ads[hook.currentAdIndex].emd,
                    etst = rt.externalTags.settings;
                if (emd) {
                    if (!etst.uemd[emd]) {
                        etst.uemd[emd] = {}
                    }
                    if (!etst.uemd[emd][hook.prod]) {
                        etst.uemd[emd][hook.prod] = 0
                    }
                    etst.uemd[emd][hook.prod]++
                }
            },
            getViewedTagsParam: function() {
                var rt = this.$root,
                    etst = this.settings,
                    uto = rt.utils.object,
                    emd, val = [],
                    prod;
                if (!uto.keys(etst.uemd).length) {
                    return {}
                }
                for (emd in etst.uemd) {
                    for (prod in etst.uemd[emd]) {
                        rt.utils.array.push(val, [emd, prod, etst.uemd[emd][prod]].join("!"))
                    }
                }
                return {
                    uemd: val.join("~")
                }
            }
        }, {
            settings: {
                bidInvocation: 0,
                bidResponses: {},
                bidCount: 0,
                tags: {},
                bidRequestTimeout: 300,
                uemd: {}
            }
        }, true);
        externalTags.bind({
            event: "sendBids",
            listener: {
                sendBids: function(event) {
                    var rt = this.$root,
                        etst = this.settings,
                        emd, tag, ad, jsonUrl, i, leni, hook = rt.settings.hooksMap[event.data.hookId],
                        sizes = this.getProductAdSizes(hook.prod, hook);
                    rt.utils.timer.start("externalBid" + (++etst.bidInvocation));
                    etst.bidResponses[etst.bidInvocation] = [];
                    etst.bidResponses[etst.bidInvocation].bids = 0;
                    etst.bidResponses[etst.bidInvocation].responses = 0;
                    for (emd in etst.tags) {
                        tag = etst.tags[emd];
                        ad = tag.ads[0];
                        if (ad.prs && !ad.prs[hook.prod]) {
                            continue
                        }
                        if (!ad.jsonUrl) {
                            continue
                        }
                        if (!ad.jat) {
                            ad.jat = "ad"
                        }
                        if (!ad.jat) {
                            ad.jpt = "cpm"
                        }
                        for (i = 0, leni = sizes.length; i < leni; i++) {
                            jsonUrl = ad.jsonUrl.replace(/\{WIDTH\}/g, sizes[i].w).replace(/\{HEIGHT\}/g, sizes[i].h);
                            etst.bidCount++;
                            etst.bidResponses[etst.bidInvocation].bids++;
                            rt.comm.loadScript([jsonUrl, "&callback=", etst.bidCallbackVar, etst.bidCount].join(""), null, "setExternalBidResponse", rt.utils.object.extend({
                                emd: emd,
                                bidInvocation: etst.bidInvocation,
                                bidCount: etst.bidCount,
                                hookId: hook.id,
                                size: sizes[i]
                            }, event.data))
                        }
                    }
                }
            }
        });
        externalTags.bind({
            event: "setExternalBidResponse",
            listener: {
                setExternalBidResponse: function(event) {
                    var rt = this.$root,
                        etst = this.settings,
                        bidCount = event.data.bidCount,
                        bidInvocation = event.data.bidInvocation,
                        tag = etst.tags[event.data.emd],
                        ad = tag.ads[0],
                        jct, response = window[etst.bidCallbackVar + bidCount],
                        hook = rt.settings.hooksMap[event.data.hookId],
                        bidResponses = etst.bidResponses[bidInvocation];
                    response.emd = event.data.emd;
                    response.size = event.data.size;
                    if (ad.jct) {
                        jct = new RegExp(ad.jct.replace(/([\[\]])/g, "\\$1"), "g");
                        response.result[ad.jat] = response.result[ad.jat].replace(jct, "@encode@@start@@end@@encode@")
                    }
                    rt.utils.array.push(bidResponses, response);
                    bidResponses.responses++;
                    if (bidResponses.responses >= bidResponses.bids) {
                        if (hook.killBids) {
                            delete hook.killBids
                        } else {
                            hook.externalTag = bidInvocation;
                            rt.event.fire("sendGetAds", event.data)
                        }
                    }
                }
            }
        });
        var updater = $root.$create("updater", {
            handleUpdaterImpression: function(event) {
                var rt = this.$root,
                    response, ust = this.settings,
                    instance = ust.instances[ust.instances.length - 1];
                instance.complete = true;
                response = rt.helpers.processImpressionResponse(event.data);
                if (rt.what(response) != "object") {
                    rt.logger.error("Bad Impression response.", true);
                    return
                }
                instance.impression = response;
                if (!instance.impression.prs[rt.products.intext.settings.prodCode]) {
                    return
                }
                rt.event.fire("initIntext", {
                    updater: instance
                })
            }
        }, {
            settings: {
                def: {
                    interval: 10,
                    container: null,
                    tag: null
                },
                counter: 0,
                instances: []
            }
        }, true);
        updater.bind({
            event: "initUpdater",
            listener: {
                init: function() {
                    var rt = this.$root,
                        ust = this.settings,
                        hp = rt.helpers,
                        cont = hp.getVar("updater_container");
                    ust.interval = hp.getVar("updater_interval") || ust.def.interval;
                    ust.container = cont ? rt.utils.dom.element.$(cont) : ust.def.container;
                    ust.tag = hp.getVar("updater_tag") || ust.def.tag;
                    rt.event.repeat("updaterContentChange", ust.interval * 1000)
                }
            }
        });
        updater.bind({
            event: "updaterContentChange",
            listener: {
                updaterContentChange: function() {
                    var rt = this.$root,
                        ut = rt.utils,
                        ust = this.settings,
                        harvested, instance, i, leni, text = [],
                        nodes = [];
                    if (ust.instances.length && !ust.instances[ust.counter - 1].complete) {
                        return
                    }
                    var containers = rt.utils.dom.filterByClass(ust.className, ust.tag, ust.container);
                    for (i = 0, leni = containers.length; i < leni; i++) {
                        if (containers[i].getAttribute("iceupdated") == "true") {
                            continue
                        }
                        rt.harvest.settings.enabled = true;
                        harvested = rt.harvest.getHarvestedText(containers[i]);
                        if (harvested.text.length > 0) {
                            containers[i].setAttribute("iceupdated", "true");
                            ut.array.push(text, harvested.text);
                            nodes = ut.array.concat(nodes, harvested.nodes)
                        }
                    }
                    if (!text.length) {
                        return
                    }
                    instance = ust.instances[ust.counter++] = {
                        nodes: nodes,
                        text: text.join("P"),
                        complete: false
                    };
                    rt.event.unbind("afterImpression");
                    rt.event.bind({
                        event: "afterImpression",
                        listener: this.handleUpdaterImpression
                    });
                    rt.event.fire("beforeImpression", {
                        ptxt: instance.text,
                        updater: ust.counter
                    })
                }
            }
        });
        var demo = $root.$create("demo", {
            isDemo: function() {
                var rt = this.$root,
                    hp = rt.helpers,
                    std = this.settings;
                std.demo = hp.getVar("demo");
                std.custom = hp.getVar("custom");
                return (std.demo || std.custom)
            },
            convertCustom: function(custom) {
                var rt = this.$root,
                    uto = rt.utils.object,
                    prods = ["intext", "tagcloud"],
                    prod, i, leni, prs = {},
                    prodCode;
                if (custom.related) {
                    if (!custom.tagcloud) {
                        custom.tagcloud = custom.related
                    }
                    delete custom.related
                }
                for (i = 0, leni = prods.length; i < leni; i++) {
                    prod = prods[i];
                    if (custom[prod]) {
                        prodCode = prod.charAt(0);
                        if (custom[prod] === true) {
                            prs[prodCode] = {
                                behavior: {},
                                sentences: ["ALL"]
                            }
                        } else {
                            if ((custom[prod].sentences && custom[prod].sentences.length) || custom[prod].marker) {
                                prs[prodCode] = uto.extend({}, custom[prod])
                            }
                        }
                    }
                }
                var data = {
                    containers: custom.hooks && custom.hooks.containers ? custom.hooks.containers : null,
                    responses: {
                        gsd: uto.extend(custom.verification ? custom.verification.response : {}, {
                            prs: uto.keys(prs).join(",")
                        }),
                        impression: {
                            rauth: {
                                rsd: "1",
                                rsk: "1",
                                rcs: "1"
                            },
                            sentences: custom.hooks && custom.hooks.sentences ? rt.utils.array.toObject(custom.hooks.sentences, {}, "1") : null,
                            prs: prs
                        },
                        getads: {
                            catchall: rt.what(custom.hover.response) == "array" ? custom.hover.response[0] : custom.hover.response[rt.utils.object.keys(custom.hover.response)[0]]
                        }
                    }
                };
                rt.event.fire("setDemoData", data)
            },
            reRouteEvents: function() {
                var rt = this.$root,
                    ev = rt.event;
                ev.unbind("beforeGSD");
                ev.bind({
                    event: "beforeGSD",
                    listener: this.beforeGSD
                });
                ev.unbind("afterGSD");
                ev.bind({
                    event: "afterGSD",
                    listener: this.afterGSD
                });
                ev.unbind("beforeImpression");
                ev.bind({
                    event: "beforeImpression",
                    listener: this.beforeImpression
                });
                ev.unbind("afterImpression");
                ev.unbind("getAds");
                ev.bind({
                    event: "getAds",
                    listener: this.getAds
                });
                ev.unbind("sendAdView");
                ev.unbind("sendImpressionLog");
                ev.unbind("startClick");
                ev.bind({
                    event: "startClick",
                    listener: rt.comm.doRedirect
                })
            },
            beforeGSD: function() {
                this.$root.event.fire("afterGSD")
            },
            afterGSD: function() {
                var rt = this.$root;
                if (/i|r|t/.test(rt.comm.settings.responses.gsd.prs)) {
                    rt.event.fire("beforeHarvest")
                } else {
                    rt.event.fire("beforeImpression")
                }
            },
            beforeImpression: function() {
                var rt = this.$root,
                    prs = rt.utils.array.toObject(rt.comm.settings.responses.gsd.prs.split(","), {}, true);
                if (rt.helpers.getVar("inframe_disable") === true) {
                    delete prs["f"]
                }
                if (prs["f"]) {
                    var gpmp = rt.products.inframe.buildImpPageMarginsParam();
                    if (!gpmp) {
                        delete prs["f"]
                    }
                }
                rt.event.fire("preRenderProducts")
            },
            getAds: function(event) {
                var rt = this.$root,
                    hookId = event.data.hookId,
                    st = rt.settings,
                    hook = st.hooksMap[hookId],
                    getads = rt.comm.settings.responses.getads,
                    s2cm = this.settings.sentences2ContainersMap,
                    i, j, ad, cb;
                var data = rt.helpers.getHookData(hookId);
                if (!data) {
                    if (getads.sentences && getads.sentences[hook.sentence]) {
                        data = getads.sentences[hook.sentence]
                    } else {
                        if (getads.containers && getads.containers[s2cm[hook.sentence]]) {
                            data = getads.containers[s2cm[hook.sentence]]
                        } else {
                            if (getads.catchall) {
                                data = getads.catchall
                            }
                        }
                    }
                }
                data = data ? rt.utils.object.clone(data, true) : "pending";
                data.lid = hook.id;
                data.sentence = hook.sentence;
                var props = ["redirectUrl", "title", "text"];
                for (i = 0; i < data.ads.length; i++) {
                    ad = data.ads[0];
                    for (j = 0; j < props.length; j++) {
                        if (ad[props[j]]) {
                            ad[props[j]] = ad[props[j]].replace("@sentence@", hook.sentence)
                        }
                    }
                }
                hook.bdc = ++st.bdc;
                switch (hook.prod) {
                case "s":
                    cb = "getadsResponseInsearch";
                    break;
                case "f":
                    cb = "getadsResponseInframe";
                    break;
                default:
                    cb = "getadsResponse"
                }
                rt.event.fire(cb, data)
            }
        }, {
            settings: {
                custom: false,
                demo: false,
                sentences2ContainersMap: {}
            }
        }, true);
        demo.bind({
            event: "demo",
            listener: {
                init: function() {
                    var rt = this.$root,
                        std = this.settings;
                    this.reRouteEvents();
                    if (std.custom) {
                        this.convertCustom(std.custom)
                    } else {
                        if (std.demo) {
                            rt.comm.loadScript(std.demo)
                        }
                    }
                }
            }
        });
        demo.bind({
            event: "setDemoData",
            listener: {
                setDemoData: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        data = event.data,
                        imp, i, leni, dmel = rt.utils.dom.element,
                        el, sentence, dst = this.settings,
                        hp = rt.helpers;
                    rt.helpers.getCustomerId();
                    dst.data = data;
                    imp = st.impression = {
                        params: {}
                    };
                    if (data.ref) {
                        st.ref = imp.params.ref = data.ref
                    }
                    if (data.refq) {
                        st.refq = imp.params.refq = data.refq
                    }
                    hp.setDefaultWebsiteDirectives(data.responses.gsd);
                    if (!data.responses.impression.sentences) {
                        data.responses.impression.sentences = {}
                    }
                    if (data.containers) {
                        for (i = 0, leni = data.containers.length; i < leni; i++) {
                            el = dmel.$(data.containers[i]);
                            if (!el || !el.firstChild || el.firstChild.nodeType != st.nodeTypes.TEXT) {
                                continue
                            }
                            sentence = rt.utils.string.trim(el.firstChild.nodeValue.toLowerCase().replace(/\s+/g, ""));
                            data.responses.impression.sentences[sentence] = "1";
                            dst.sentences2ContainersMap[sentence] = data.containers[i]
                        }
                    }
                    hp.normalizeSentenceLists(data.responses.impression);
                    rt.comm.settings.responses = data.responses;
                    rt.event.fire("loadPlugins")
                }
            }
        });
        var bubble = $root.$create("bubble", {
            hookDblClick: function(event) {
                this.$root.utils.dom.event.stop(event.domEvent)
            },
            hookClick: function(event) {
                var rt = this.$root,
                    st = rt.settings,
                    domEvt = event.domEvent,
                    sender = domEvt.target || domEvt.srcElement,
                    ut = rt.utils,
                    hookId = event.data.hookId,
                    hook = st.hooksMap[hookId],
                    bst = this.settings,
                    ad;
                ut.dom.event.stop(domEvt);
                if (st.clickStatus == "complete") {
                    return
                }
                if (hook.externalTag) {
                    st.clickStatus = "complete";
                    return
                }
                hook.clickType = (sender.className.indexOf(bst.cls + "_simlink") != -1 || ut.dom.element.inHierarchy(sender, hook.node)) ? hook.bubble.status == "open" ? "onLinkAfterWinOpen" : "onLink" : "onWin";
                st.clickStatus = "pending";
                ut.timer.stop("adView" + hookId);
                var reuseWindow = rt.helpers.getHookBehavior(hookId).adsReuseWindow;
                var data = rt.helpers.getHookData(hookId);
                if (hook.bubble.status != "open" && (bst.dcbbs || (data && data.dcbbs))) {
                    st.clickStatus = "none";
                    delete hook.clickType;
                    return
                }
                if (rt.what(data) == "object") {
                    ad = data.ads[hook.currentAdIndex];
                    if (hook.clickType == "onWin" && ad.template == "html" && ad.content.match(/<object |<embed /i) && ad.content.match(/clicktag/i)) {
                        st.clickStatus = "complete";
                        return
                    }
                    if ((hook.clickType == "onLink" || hook.clickType == "onLinkAfterWinOpen") && ad.redirectURL == "") {
                        st.clickStatus = "none";
                        delete hook.clickType
                    } else {
                        if (hook.bubble.status == "open" || hook.clickType == "onWin" || !data.dcbbs) {
                            if (!reuseWindow) {
                                st.adWin = window.open("", hook.node.id)
                            }
                            rt.event.fire("productClick", {
                                hookId: hookId
                            })
                        }
                    }
                } else {
                    if (!reuseWindow) {
                        st.adWin = window.open("", hook.node.id)
                    }
                }
            },
            getSkinPath: function(skin) {
                var rt = this.$root,
                    sk = this.skins,
                    rv = skin && sk[skin] && sk[skin].settings.rv ? sk[skin].settings.rv + "/" : "";
                return ["http://", rt.settings.hosts.resources, "/static/skins/", skin ? skin + "/intext/" : "", rv].join("")
            },
            preloadImages: function(path, images) {
                var loaderPath = this.getSkinPath(false);
                var loaderImages = ["loader.gif", "loader-bg.png"];
                for (i = 0, leni = loaderImages.length; i < leni; i++) {
                    img = new Image();
                    img.src = loaderPath + loaderImages[i]
                }
                if (!images) {
                    return
                }
                var rt = this.$root,
                    b = rt.browser,
                    img, i, leni;
                images = rt.utils.string.qw(images);
                for (i = 0, leni = images.length; i < leni; i++) {
                    img = new Image();
                    img.src = [path, images[i], ".png"].join("")
                }
            },
            adjustBubblePosition: function(hook, dimensions) {
                var rt = this.$root,
                    st = rt.settings,
                    ut = rt.utils,
                    dm = ut.dom,
                    dmel = dm.element,
                    b = rt.browser,
                    pos = hook.pos;
                var node = hook.node;
                var nodeHeight = node.offsetHeight;
                hook.isMultiline = (hook.fontSize * 2 < nodeHeight);
                var right, left, top, bottom, scrollTop = dm.document.getScrollTop(),
                    scrollLeft = dm.document.getScrollLeft();
                var width = dimensions.width,
                    height = dimensions.height;
                var bbldir = rt.helpers.getHookBehavior(hook.id).bubbleDirection;
                if (hook.isMultiline) {
                    var linesCount = Math.floor(nodeHeight / (parseInt(dmel.getStyle(node, "lineHeight"), 10) || hook.fontSize + 2));
                    if (linesCount < 2) {
                        linesCount = 2
                    }
                    var lineHeight = Math.floor(nodeHeight / linesCount);
                    var mouseX = hook.domEvent.pageX || hook.domEvent.clientX + scrollLeft;
                    var mouseY = hook.domEvent.pageY || hook.domEvent.clientY + scrollTop;
                    right = mouseX > (pos.left + pos.left + node.offsetWidth) / 2 ? pos.left + node.offsetWidth - 20 : pos.left;
                    left = right + 20 - width;
                    top = pos.top - height;
                    if (mouseY - pos.top > lineHeight) {
                        top += lineHeight
                    }
                    bottom = top + lineHeight + height
                } else {
                    right = pos.left;
                    left = pos.left - width + ((!b.IE || !node.offsetWidth) ? 20 : node.offsetWidth);
                    top = pos.top - height;
                    bottom = pos.top + (node.offsetHeight || 18)
                }
                var allpos = {
                    TR: {
                        rect: [right, top, right + width, top + height],
                        clear: true,
                        inBounds: true
                    },
                    TL: {
                        rect: [left, top, left + width, top + height],
                        clear: true,
                        inBounds: true
                    },
                    BR: {
                        rect: [right, bottom, right + width, bottom + height],
                        clear: true,
                        inBounds: true
                    },
                    BL: {
                        rect: [left, bottom, left + width, bottom + height],
                        clear: true,
                        inBounds: true
                    }
                };
                if ((right + width > dm.document.getWidth() + scrollLeft) || (bbldir && bbldir.indexOf("L") != -1)) {
                    allpos.TR.inBounds = allpos.BR.inBounds = false
                }
                if (left < 0 || (bbldir && bbldir.indexOf("R") != -1)) {
                    allpos.TL.inBounds = allpos.BL.inBounds = false
                }
                if ((bottom + height > dm.document.getHeight() + scrollTop) || (bbldir && bbldir.indexOf("T") != -1)) {
                    allpos.BR.inBounds = allpos.BL.inBounds = false
                }
                if (top < scrollTop || (bbldir && bbldir.indexOf("B") != -1)) {
                    allpos.TR.inBounds = allpos.TL.inBounds = false
                }
                if (st.unhoverableAreas) {
                    for (var key in allpos) {
                        if (!allpos[key].inBounds) {
                            continue
                        }
                        for (var i = 0, leni = st.unhoverableAreas.length; i < leni; i++) {
                            if (ut.doRectsOverlap(allpos[key].rect, st.unhoverableAreas[i])) {
                                allpos[key].clear = false;
                                break
                            }
                        }
                    }
                }
                for (key in allpos) {
                    if (!allpos[key].inBounds) {
                        continue
                    }
                    if (allpos[key].clear) {
                        hook.orientationY = key.charAt(0);
                        hook.orientationX = key.charAt(1);
                        return {
                            left: allpos[key].rect[0],
                            top: allpos[key].rect[1]
                        }
                    }
                }
                for (key in allpos) {
                    if (allpos[key].inBounds) {
                        hook.orientationY = key.charAt(0);
                        hook.orientationX = key.charAt(1);
                        return {
                            left: allpos[key].rect[0],
                            top: allpos[key].rect[1]
                        }
                    }
                }
                hook.orientationY = "T";
                hook.orientationX = "R";
                if (bbldir) {
                    if (bbldir.length == 2) {
                        hook.orientationY = bbldir.charAt(0);
                        hook.orientationX = bbldir.charAt(1)
                    } else {
                        if (bbldir == "T" || bbldir == "B") {
                            hook.orientationY = bbldir
                        }
                        if (bbldir == "R" || bbldir == "L") {
                            hook.orientationX = bbldir
                        }
                    }
                }
                return {
                    left: allpos[hook.orientationY + hook.orientationX].rect[0],
                    top: allpos[hook.orientationY + hook.orientationX].rect[1]
                }
            },
            getPreloaderPosition: function(hook, dimensions) {
                var pos = this.adjustBubblePosition(hook, dimensions);
                if (hook.orientationY == "T") {
                    pos.top = pos.top + dimensions.height - 31
                }
                if (hook.orientationX == "L") {
                    pos.left = pos.left + dimensions.width - 31
                }
                return pos
            },
            renderAdsContent: function(hook, data) {
                var rt = this.$root,
                    adsHTML = "",
                    ad;
                for (var i = 0, leni = data.ads.length; i < leni; i++) {
                    ad = data.ads[i];
                    rt.helpers.setActualTemplate(ad);
                    adsHTML += this.templates[ad.actualTemplate](hook, i)
                }
                return adsHTML
            },
            afterBubbleRendered: function(container, data, hook) {
                var rt = this.$root,
                    i, leni, form;
                for (i = 0, leni = data.ads.length; i < leni; i++) {
                    if (data.ads[i].actualTemplate == "iframe") {
                        form = container.getElementsByTagName("form");
                        if (form.length && form[0].className.indexOf(this.settings.cls + "_ad_form") != -1) {
                            form[0].submit()
                        }
                    }
                }
                var anchors = container.getElementsByTagName("a"),
                    href;
                for (i = 0, leni = anchors.length; i < leni; i++) {
                    if (anchors[i].href) {
                        href = anchors[i].href;
                        anchors[i].removeAttribute("href");
                        rt.event.dom.bind(anchors[i], {
                            event: "click",
                            listener: (function() {
                                return function(domEvt) {
                                    rt.utils.dom.event.stop(domEvt.domEvent);
                                    rt.event.fire("productClick", {
                                        hookId: hook.id,
                                        url: href,
                                        clickType: "onWin"
                                    })
                                }
                            })()
                        })
                    }
                }
                var objects = container.getElementsByTagName("object");
                for (i = 0; i < objects.length; i++) {
                    rt.utils.dom.event.disableEventBubbling("click", objects[i])
                }
                var embeds = container.getElementsByTagName("embed");
                for (i = 0; i < embeds.length; i++) {
                    rt.utils.dom.event.disableEventBubbling("click", embeds[i])
                }
            }
        }, {
            settings: {
                initialized: false,
                activeHook: null,
                base: {
                    status: "closed",
                    node: null,
                    pos: null
                },
                def: {
                    width: 316,
                    height: 176
                },
                cls: "ice_it",
                oldIE: (function() {
                    var b = $root.browser;
                    return b.IE && b.getVersion(true) < 9
                })(),
                oldFF: (function() {
                    var b = $root.browser;
                    return b.Firefox && b.getVersion(true) < 4
                })()
            }
        }, true);
        bubble.bind({
            event: "initBubble",
            listener: {
                initBubble: function(event) {
                    var rt = this.$root,
                        hp = rt.helpers,
                        bst = rt.bubble.settings;
                    bst.initialized = true;
                    bst.dcbbs = hp.getVar("deny_click_before_bubble_show") || false;
                    this.skins[rt.products[event.data].settings.behavior.merged.skin].init()
                }
            }
        });
        bubble.bind({
            event: "hookMouseover",
            listener: {
                hookMouseover: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        bh = rt.helpers.getHookBehavior(hookId),
                        hook = st.hooksMap[hookId],
                        hrd = bh.hoverRequestDelay;
                    delete hook.killHoverStart;
                    if (st.clickStatus != "none") {
                        return
                    }
                    if (hook.bubble.status.indexOf("open") == 0) {
                        hrd = 0
                    }
                    var de = event.data.domEvent || event.domEvent;
                    hook.domEvent = {
                        pageX: de.pageX,
                        pageY: de.pageY,
                        clientX: de.clientX,
                        clientY: de.clientY
                    };
                    rt.event.fire(hook.type + "HookMouseover", {
                        hookId: hookId
                    });
                    rt.event.fire("hookHoverStart", {
                        hookId: hookId
                    }, hrd)
                }
            }
        });
        bubble.bind({
            event: "hookMouseout",
            listener: {
                hookMouseout: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId];
                    hook.killHoverStart = true;
                    rt.event.fire(hook.type + "HookMouseout", {
                        hookId: hook.id
                    });
                    rt.event.fire("hideBubble", {
                        hookId: hook.id
                    })
                }
            }
        });
        bubble.bind({
            event: "hookHoverStart",
            listener: {
                hookHoverStart: function(event) {
                    var rt = this.$root,
                        bst = this.settings,
                        hookId = event.data.hookId,
                        hook = rt.settings.hooksMap[hookId],
                        activeHook;
                    if (hook.killHoverStart) {
                        delete hook.killHoverStart;
                        return
                    }
                    hook.hovered = true;
                    if (bst.activeHook && bst.activeHook != hookId) {
                        activeHook = bst.activeHook;
                        bst.activeHook = null;
                        rt.event.fire("closeBubble", {
                            hookId: activeHook
                        })
                    }
                    bst.activeHook = hookId;
                    if (hook.bubble.status.indexOf("open") != -1) {
                        return
                    }
                    hook.bubble.status = "opening";
                    var bubbleShowDelay = rt.helpers.getHookBehavior(hookId).bubbleShowDelay;
                    var data = rt.helpers.getHookData(hookId);
                    if (!data) {
                        rt.event.fire("getAds", event.data)
                    }
                    rt.event.fire("showBubble", event.data, bubbleShowDelay)
                }
            }
        });
        bubble.bind({
            event: "getadsResponse",
            listener: {
                setAdData: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        data = event.data,
                        hookId = data.lid,
                        bst = this.settings,
                        i, leni, ad, hook = st.hooksMap[hookId];
                    if (!hook) {
                        rt.logger.error("Error: Misssing hook.", this.setAdData);
                        return false
                    }
                    if (bst.activeHook == hookId && hook.bubble.status == "open") {
                        return
                    }
                    data.sentence = decodeURIComponent(data.sentence);
                    ad = data.ads[hook.currentAdIndex];
                    if (ad.template == "external") {
                        data = rt.externalTags.setExternalTagData(hook, data)
                    } else {
                        if (hook.externalTag) {
                            delete hook.externalTag
                        }
                        if (!data.width || data.width < 200) {
                            data.width = bst.def.width
                        }
                        if (!data.height || data.height < 60) {
                            data.height = bst.def.height
                        }
                        if (bst.dcbbs) {
                            data.dcbbs = bst.dcbbs
                        }
                        if (data.dcbbs && !rt.helpers.getHookBehavior(hookId).adsReuseWindow) {
                            data.dcbbs = false
                        }
                        if (data.dcbbs && st.clickStatus == "pending") {
                            st.clickStatus = "none";
                            st.hookClicked = null
                        }
                    }
                    rt.helpers.setHookData(hookId, data);
                    for (i = 0, leni = data.ads.length; i < leni; i++) {
                        ad = data.ads[i];
                        rt.helpers.setAdThumbnail(ad);
                        if (ad.trackerURL) {
                            rt.helpers.hitTrackerURL(ad.trackerURL)
                        }
                    }
                    if (bst.activeHook != hookId) {
                        rt.event.fire("closeBubble", {
                            hookId: hookId
                        });
                        return
                    }
                    rt.event.fire("showBubble", {
                        hookId: hookId
                    })
                }
            }
        });
        bubble.bind({
            event: "showBubble",
            listener: {
                showBubble: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        dm = rt.utils.dom,
                        rtb = rt.bubble,
                        bst = rtb.settings;
                    if (hook.bubble.status == "open") {
                        return
                    }
                    var data = rt.helpers.getHookData(hookId);
                    hook.pos = dm.element.offset(hook.node);
                    var preloader = hook.bubble.preloader;
                    if (data && data != "pending") {
                        if (preloader) {
                            preloader.style.display = "none"
                        }
                        var skin = data.ads[hook.currentAdIndex].skin || rt.helpers.getHookBehavior(hookId).skin;
                        rtb.skins[skin].showBubble(hookId)
                    } else {
                        if (data == "pending") {
                            var pos = rtb.getPreloaderPosition(hook, {
                                width: bst.def.width,
                                height: bst.def.height
                            });
                            if (!preloader) {
                                var path = rtb.getSkinPath();
                                preloader = hook.bubble.preloader = dm.createDOMFragment({
                                    tag: "div",
                                    cls: st.baseClass,
                                    parent: document.body,
                                    style: {
                                        position: "absolute",
                                        display: "none",
                                        width: "30px",
                                        height: "30px",
                                        top: "0px",
                                        left: "0px",
                                        zIndex: st.baseZIndex + 101,
                                        background: ['transparent url("', path, 'loader-bg.png") no-repeat scroll 0 0'].join("")
                                    },
                                    children: {
                                        tag: "img",
                                        cls: st.baseClass,
                                        attributes: {
                                            width: 30,
                                            height: 30,
                                            alt: "",
                                            src: path + "loader.gif"
                                        }
                                    }
                                })
                            }
                            dm.element.setStyle(preloader, {
                                top: pos.top + "px",
                                left: pos.left + "px",
                                display: "block"
                            })
                        }
                    }
                }
            }
        });
        bubble.bind({
            event: "bubbleShowing",
            listener: {
                bubbleShowing: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        bh = rt.helpers.getHookBehavior(hookId),
                        time = bh.bubbleHideDelay,
                        data = rt.helpers.getHookData(hookId);
                    hook.bubble.status = "open";
                    if (hook.externalTag) {
                        rt.externalTags.updateViewedTags(hookId)
                    }
                    var params = {
                        bdc: hook.bdc,
                        midx: hook.currentAdIndex,
                        prod_t: hook.prod,
                        emd: data.ads[hook.currentAdIndex].emd || ""
                    };
                    rt.event.fire("sendAdView", {
                        hookId: hookId,
                        params: params
                    });
                    if (st.clickStatus == "pending") {
                        rt.event.fire("productClick", {
                            hookId: hookId
                        }, time);
                        return
                    }
                    rt.utils.timer.start("adView" + hookId);
                    if (!hook.hovered) {
                        rt.event.fire("hideBubble", {
                            hookId: hookId
                        })
                    }
                }
            }
        });
        bubble.bind({
            event: "hideBubble",
            listener: {
                hideBubble: function(event) {
                    var rt = this.$root,
                        hookId = event.data.hookId,
                        hook = rt.settings.hooksMap[hookId],
                        viewTime = null;
                    hook.hovered = false;
                    if (hook.bubble.status == "closed") {
                        return
                    }
                    var data = rt.helpers.getHookData(hookId);
                    if (hook.externalTag && data) {
                        viewTime = data.ads[hook.currentAdIndex].vt
                    }
                    var delay = parseInt(event.data.xBtn ? 0 : (viewTime || rt.helpers.getHookBehavior(hookId).bubbleHideDelay));
                    rt.event.fire("closeBubble", event.data, delay)
                }
            }
        });
        bubble.bind({
            event: "closeBubble",
            listener: {
                closeBubble: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        bst = this.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        data = rt.helpers.getHookData(hookId);
                    if (bst.activeHook == hookId) {
                        bst.activeHook = null
                    }
                    if (hook.hovered) {
                        return
                    }
                    if (hook.bubble.node) {
                        hook.bubble.node.style.display = "none"
                    }
                    if (hook.bubble.preloader) {
                        hook.bubble.preloader.style.display = "none"
                    }
                    if (st.clickStatus != "pending") {
                        if (data && data.cacheOverride) {
                            rt.helpers.clearHookData(hookId);
                            if (hook.externalTag) {
                                delete hook.externalTag
                            }
                        }
                    }
                    if (st.clickStatus == "none") {
                        rt.utils.timer.clear("adView" + hookId)
                    }
                    hook.bubble.status = "closed";
                    if (data && data != "pending" && data.ads[0].template == "html") {
                        rt.event.fire("clearBubbleDOM", {
                            hookId: hookId
                        }, 1000)
                    }
                }
            }
        });
        bubble.bind({
            event: "clearBubbleDOM",
            listener: {
                clearBubbleDOM: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        el;
                    if (hook.bubble.status == "open") {
                        return
                    }
                    el = rt.utils.dom.filterByClass(this.settings.cls + "_bodyMain", null, hook.bubble.node);
                    if (el.length) {
                        el[0].innerHTML = ""
                    }
                }
            }
        });
        bubble.bind({
            event: "bubbleMouseover",
            listener: {
                bubbleMouseover: function(event) {
                    var rt = this.$root,
                        hookId = event.data.hookId,
                        hook = rt.settings.hooksMap[hookId],
                        data = rt.helpers.getHookData(hook.id);
                    hook.hovered = true;
                    rt.event.fire((data.ads[hook.currentAdIndex].skin || rt.helpers.getHookBehavior(hookId).skin) + "BubbleMouseover", event.data)
                }
            }
        });
        bubble.bind({
            event: "bubbleMouseout",
            listener: {
                bubbleMouseout: function(event) {
                    var rt = this.$root,
                        st = rt.settings,
                        hookId = event.data.hookId,
                        hook = st.hooksMap[hookId],
                        data = rt.helpers.getHookData(hook.id);
                    hook.hovered = false;
                    rt.event.fire((data.ads[hook.currentAdIndex].skin || rt.helpers.getHookBehavior(hookId).skin) + "BubbleMouseout", event.data);
                    if (st.clickStatus == "pending") {
                        return
                    }
                    rt.event.fire("hideBubble", event.data)
                }
            }
        });
        bubble.$create("templates", {
            text: function(hook, adIndex) {
                var rt = this.$root,
                    pr = this.$parent,
                    st = rt.settings,
                    b = rt.browser,
                    data = rt.helpers.getHookData(hook.id),
                    ad = data.ads[hook.currentAdIndex],
                    thumbURL = "",
                    hasThumb = false,
                    bst = pr.settings;
                var skinPath = pr.getSkinPath(data.skin || rt.helpers.getHookBehavior(hook.id).skin);
                if (ad.thumbURL != "no-image") {
                    thumbURL = ad.thumbURL;
                    hasThumb = true
                }
                var html = '<div 			class="<%= cls %>" style="color:#003366; font-family: Arial,sans-serif; font-size:11pt; font-weight:bold; line-height:11pt; margin-left:15px; margin-top:10px; margin-bottom:10px; margin-right:5px; max-height:22pt; overflow:hidden;"><%= ad.title %></div>			<div class="<%= cls %>" style="position:absolute; height:88px; width:<%= data.width %>px;">				<%if (hasThumb){ %>					<img class="<%= cls %>" width="110" height="82" style="position:absolute; top:0; left:15px; width:110px; height:82px; background-color:#e8e8e8; box-shadow:2px 2px 5px #888; -moz-box-shadow:2px 2px 5px #888; -webkit-box-shadow:2px 2px 5px #888;" src="<%= thumbURL %>">				<% } %>				<div class="<%= cls %>" style="position:absolute; top:0; left:<%= hasThumb ? 140 : 15 %>px; width:168px; height:51px; overflow:hidden; color:#666666; font-family: Arial,sans-serif; font-size:10pt; font-weight:normal; line-height:17px;"><%= ad.text %></div>				<div id="<%= intextCls %>_btn_<%= hookId %>" class="<%= cls %> <%= intextCls %>_btn" style="position:absolute; display:block; bottom:0px; right:13px; width:93px; height:24px; font-family:Arial,sans-serif; font-size:9pt; font-weight:bold; cursor:pointer; text-align:center; line-height:24px; color:#ffffff;"><%= rt.helpers.translate("clickHere") %></div>			</div>			<div class="<%= cls %>" style="position:absolute; bottom:12px; left:15px; width:280px; height:15px; color:#003366; font-family: Arial,sans-serif; font-size:9pt; font-weight:normal; text-decoration:underline; overflow:hidden;"><%= ad.displayedURL %></div>';
                return rt.utils.VeST(html, {
                    rt: rt,
                    intextCls: bst.cls,
                    cls: st.baseClass,
                    btnCls: [st.baseClass, " ", bst.cls, "_bg ", bst.cls, "_btn"].join(""),
                    hookId: hook.id,
                    data: data,
                    ad: ad,
                    thumbURL: thumbURL,
                    hasThumb: hasThumb,
                    display: adIndex != hook.currentAdIndex ? "none" : "block",
                    skinPath: skinPath
                })
            },
            html: function(hook, adIndex) {
                var rt = this.$root,
                    st = rt.settings;
                return rt.utils.VeST('<div 			class="<%= cls %>" style="height:<%= data.height %>px; position:relative; display:<%= display %>;"><%= content %></div>', {
                    cls: st.baseClass,
                    adIndex: adIndex,
                    data: rt.helpers.getHookData(hook.id),
                    display: adIndex != hook.currentAdIndex ? "none" : "block",
                    content: rt.helpers.parseTokens(hook)
                })
            },
            iframe: function(hook, adIndex) {
                var rt = this.$root,
                    st = rt.settings,
                    bst = this.$parent.settings;
                var html = '<div 			class="<%= cls %>" style="display:<%= display %>;"><div cls="<%= cls %>" style="width:<%= data.width %>px; height:<%= data.height %>px;">	<iframe name="<%= iframeName %>" src="<%= st.blankURL %>" width="<%= data.width %>" height="<%= data.height %>" frameborder="0" scrolling="no"></iframe></div><%= rt.helpers.getEchoForm(content, iframeName, null, formCls) %></div>';
                return rt.utils.VeST(html, {
                    rt: rt,
                    version: rt.version,
                    cls: st.baseClass,
                    adIndex: adIndex,
                    data: rt.helpers.getHookData(hook.id),
                    display: adIndex != hook.currentAdIndex ? "none" : "block",
                    content: rt.helpers.parseTokens(hook),
                    iframeName: bst.cls + "_ad_frame" + adIndex,
                    formCls: bst.cls + "_ad_form",
                    st: st
                })
            },
            external: function(hook, adIndex) {
                var rt = this.$root,
                    st = rt.settings,
                    data = rt.helpers.getHookData(hook.id);
                var html = '<div 			class="<%= cls %>" style="display:<%= display %>; width:<%= data.width %>px; height:<%= data.height %>px;">	<iframe src="<%= contentUrl %>" width="<%= data.width %>" height="<%= data.height %>" frameborder="0" scrolling="no"	allowtransparency="true" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></iframe></div>';
                return rt.utils.VeST(html, {
                    cls: st.baseClass,
                    data: data,
                    display: adIndex != hook.currentAdIndex ? "none" : "block",
                    contentUrl: rt.helpers.parseTokens(hook, data.ads[adIndex].contentUrl)
                })
            }
        }, null, false);
        var skins = bubble.$create("skins", {}, null, false);
        skins.$create("brand", {
            init: function() {
                var rt = this.$root,
                    dms = rt.utils.dom.style,
                    bbl = rt.bubble,
                    bst = bbl.settings,
                    intextCls = bst.cls,
                    skinPath = bbl.getSkinPath(this.$id),
                    images = "";
                if (rt.browser.IE || bst.oldFF) {
                    dms.addRule("." + intextCls + "_btn", ["background:url(", skinPath, "btn.png) no-repeat scroll 0 0 !important;"].join(""));
                    dms.addRule("." + intextCls + "_bg", ["background:url(", skinPath, "hdr-btns.png) no-repeat scroll 0 0;"].join(""));
                    images = "btn.png hdr-btns.png loading.gif"
                } else {
                    dms.addRule("." + intextCls + "_btn", ["background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF0AAABICAYAAACUavnrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4JJREFUeNrsnL9u01AUxs+xbxOS1LQVBQkGJBgQMPUNGCshMiB1zgqoOwMViBfoxMYGqjqwMIBgYqC8AQsStAyVaAmllDZN4j+xL/fGdsgD9J4I8X1SFDvZfv70+dxzj60eP3119vXGx9V6rXLzdP2U0gSdtNh8umEct/ePXn7ebt9nutZ6dvHyhdZsUKcsA3JX8n2mvV/HtLN38ET5Qb1prgJ1+xHIuHS7sXuSZvagqcy5l//IIOMYOudB4ivSpG2seGDuVgZ4kd5a2TOtNSHO3d9MM51DHlYrWZYRjC5gdp3l0K3t7QWA0SWgF06nwumQ80inEvMwXlINn0soG3e6xl1UyO3j8QKnyzrdhvsgRaaLBfsoXuB0UXlAAOiADgE6oEOA/s9B94FBVL6p03mLmBfAQmqBpDcVZ/EKJ701s0CaAxHHseJxW081HilD/c1sw1vu9JMl4/qGbREAz8nzZtKdoF5Z/51kGyqhynxXBYtXrp+7MV2rKrQETl52U7obJtGX7fbPOI7e2UxfNb+3dvcO0YNxCt5uiOq75iBR7FEzihMKowRkBBxvZOde2GNDHmMvAtDNJ6XUloykAVy2aFTlFYDkpP6GPCSSLyV0DzN1MrlScFcMp8tSHzkd0OWYs4XOebxgWSRBvRjBGMaLgc6gLpQubOOFTbyYxRG2MwSMXk54FfGCWBdLlzxefEOcUTYKOt3Gi4/ei6jT82hntALkynRMA0xCgA7o/w90zL3Iylea9JapFxfQCnCr4WPq8cAebqo0Dh909neeK6XmCRvTTqn3++Gu1pWHitL47XHv6B771dvmn4Aw9+IoxvWhTsMXVJ35oGiqMR/MnLl19dL5xelaBe97cWJytm8ZiT993e12euF7uzhaNaBb334c5I/cgbob8Pk98445ipU5afbjhHphDDIC4M3SP597sQ0v7aMR4Bw62bkXKude0HsRlMYIhiTt4luVhTskFzFw+gSsnm9MI9FFrZ47Hb1GWadb8ogXWeqj7TpILl+KWUagkBRKxslA5+Gd1EOjSyDRxzLdQwUzieoFETOBTEf9Ig+dMEAqCr18/AXQ3cc5jznd57wBg4hxuiQa7fj7SmvaYs/OvaB8cQ3dzr2YsnFTZYNopXfwfc1An8OutFtFcdJmXbXve0nfVDlZPu4NlgxyvO/FjTyPdSeoVdbTRG/8EWAAta8y0OqpUAcAAAAASUVORK5CYII=) no-repeat scroll 0 0 !important;"].join(""));
                    dms.addRule("." + intextCls + "_bg", ["background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB+hJREFUeNrEV3tMm9cVP7Y/29gY/MBvg3klgFJGAnFeBUpok03NOhJeaVcSdVvGEu2fbdqmNm23bkmqRk1bbVm0PiKtTaVtSkLTh9SQlLY0CWSDpkugy8MmCY+AwRiwzbDBYJudc+FzP0e0+W+70pG/ex733Hvuub9zLPr9/gPAj/n5edDr9TA2NmbG6fJF9i3kuZEHIpEorvvbZ59hv7y9WCyGWCwGJpMJPB5PBrKykWJITp1O652Y8DE9fg0OEscGpIOl999fbjQaUEMEXq8Xbjid7ch/Guk8fPP4DtKBB8rLHXp9Gm5knjYRc7qcnyD/KaR/8YpCx3vWrllzZN26tRIJ7p4fmfYMKCkuLv380qXWf3Z0/AxZR77G6TMPlJftL161SiSMTFamXby6pGRz+8WLFZevXPkRsv4qdFyBix9ZuXKlZGYmzBh+v5+FXqvVsnlhYaE4Eo0cvnTpCydOW+5yWrdhw/oD+fkFEJqeWXJXDodDFolE/vLvq1ev08m55ORkkMvkLxcUFEimF40+bvkYOjo62HdJSQk8vOVh9p2fly/q6+v/QzAYvE+wpsRisbycnZUDZD/q8YA8SQ5qtYYJMdSQtDgvLPyWrH9g4EWplNtEMc2z2qyrZ2dnIRyewcTyQmdnJzz51K9h794nobu7G0ZGRpgsHA6D1WpdgTZFvFeZTFaabrPZF+Qz4Ha74bXXXofhYTc4nTfg6BtHYXJykskikTmyfxDNzFw0EimkU/Mhlkg42LZtKwSD00CbofuibOXlqmQV8Urws3vBsdQhtF+etxzm5ubg2Ftvo6MI7NjRwE7Ly1FX1NMTyOPkSUkKUiAn/DAYjeByuqC19VNYsWIFyOXyuBzvGRQKhSoeZwknj0SicTn9yBVJbJ6UlASRWJRFih9R1MWDiLg0ne5OIDAJKSkpCckQDE1BUVERONY4YCb8VcIEAgFIVipd/BxP0OsP+EEqk7I5hfps81loaHic8ABOHj8J1TXVkJK6sH4Aw45ZPinChy1veueUJzc3Vy10HJ5ZcIYRSdjQzVs3p6q3VlkMBsMUzZ0ul+n8hbaB3JxcGXM8NIQRM4AMo8ThtY16RhAOxOx1zKP89q2b7sYf78qg5Aqr1al/HB4exjBG4xSbj7GwCnkjuAjqvoo2U4K9eJRKxTEvno50bOnpIEaHc3MRmMbNa7Q6JC2TDQ4OEjK+RIgmordKBzt+sukTVC4lyFxqjI+PI6bGOhoe/34lTqd5/sxCZNRo34a5UKjRaJe0p2elUinP1lZXf5eumnfMEvZ085lXh9zuBsw3kVKpBAKgUCjEFjebTccf2bJlN12TcMFFx5Tp+rMftbzpGR19hGwVCiUCUAxfRwgTLRyzZ6Qf/fbmzT8nk7shk8K389H6ukNd3d31Pp+/gJho4EIYbDp34cLle+D0GNL36mtr1l3p6qqZnPxPLpaOWG5O1tXiVcXH29rbbgiVhSf+nw4x/J8Gt+/A8wn1eHEzhEz5FBF6MUhfUCbyNZfGc795NqEecxzHkIowBWkt0jJKIqRrSF20/DfV49qUlNRDaWm6bEoQGqHQNExMjPcj3u7F6d/vcZBdGo1mn1arsyoQvegcWFDI3jk1NfULlDcvVY9/l5WV9ZzRaEpYSaVKAaPRmInF4299fX1UHPYu4ZCO8edly5bv0el0CQJCRLPZnI848eGdOwO/QtYrwjveSk7NZgtrYYgI7sa8Y/E5bSg7O5u6iMeWcLwbkW8PYQCvfzfZbDaR3W4n8KhkJ0bAB6lU9qLVaouvcrG9HaFulBmkYQtTWlbG+LSx8fGJF/x+34nFfoqBT1qafr9eb2ATQkCZVMbsaAwhWimxehFkpqdniHw+30EspevoxEWIu3lSTA6iWawkg3cG4Qc/fAJ27twBHqzFM9Mh4OXYi2WhoYPfJKJVhclk1PPyZKUCmk+fhglEut7bt+H8ufNYSpOZTCaVgj5NT4mXyeHl5KtTU+PVRSvTwqOP1cMs1lRKDCpvKrwnXq7B2orO6K47aS6VSldiQsXlVpsNtm+vgxMnmjDTJdDYuCseGnbnWKX6B/qzOKwiHMd2I4sL1WotuFwuONN8BjZteghSMMF4oCFddBxXxrlEykkT7Cd8fqzTEpZz3rFxwNYIBPpMJraYzX2hUJAVeyHRm9y4cSOsdjiovYnzg6ir0aivfZW1KmdQYN/X18t6tp/sboR6PPmpd06xGs7LQxhF7GbHCDIlb751bKi0tNQkbEspuQgszBZzAsBgm+rbVlVl0Wo1rK3o7x/QII67N6xfr6B5b28vqFPVoEvTMbCg+sxhRKhGx6IxaP9H+217hj2XkiuKz+BgT08PKLDo84QlDFiVEfBoUa1Gc4hquODa/Cg7TLWWdKhVstms7DsJT5iTkwP2TDubX8fmz2K27KeejC8S4nffe78J25hqbEsS/qrwJ73cdYV67Q/qampqFqFQOOQnTjY149+XysLC+/BmE+0pch2fd0I0Gn0b8+GJu6sT99m5c/uwk/glprwMn8hCAR8dBe+odxb/kvzpwcpK+hsz+zVwqfyopeUlfyDQaDaZOYNBzxyOYAMwMT4xjfX8+fKyshf49y+ETEL4p+traw9fvXatyu0ezqONWSzmm5UVFe9/2trqvgdOh5B+ur2u7mD3l19WDQ25cygyGRnp1x+qrPzgQlvbmFD5vwIMAAZsT2nNzBrxAAAAAElFTkSuQmCC) no-repeat scroll 0 0;"].join(""))
                }
                dms.addRule("." + intextCls + "_btn_over", "background-position:0 -24px !important;");
                bbl.preloadImages(skinPath, images)
            },
            showBubble: function(hookId) {
                var rt = this.$root,
                    st = rt.settings,
                    hook = st.hooksMap[hookId],
                    hp = rt.helpers,
                    ed = rt.event.dom,
                    ut = rt.utils,
                    dmel = ut.dom.element,
                    node, rtb = rt.bubble,
                    cls = rtb.settings.cls,
                    b = rt.browser;
                var data = hp.getHookData(hookId);
                var pos = hook.bubble.pos = rt.bubble.adjustBubblePosition(hook, {
                    width: data.width + 2,
                    height: data.height + 41
                });
                if (hook.externalTag) {
                    pos.top += hook.orientationY == "T" ? 80 : -80;
                    var hookWidth = dmel.getActualWidth(hook.node);
                    pos.left += hook.orientationX == "L" ? hookWidth + 20 : -20
                } else {
                    pos.top += hook.orientationY == "T" ? -5 : 5;
                    pos.left += hook.orientationX == "L" ? 30 : 0
                }
                if (hook.bubble.node && hook.bubble.node.parentNode) {
                    var parent = hook.bubble.node.parentNode;
                    parent.removeChild(hook.bubble.node)
                }
                node = hook.bubble.node = ut.dom.createDOMFragment({
                    tag: "div",
                    cls: st.baseClass,
                    parent: document.body,
                    style: {
                        display: "none"
                    },
                    innerHTML: this.renderBubble(data.width, data.height, hook)
                });
                var contentNode = dmel.$([cls, "content", hookId].join("_"));
                if (contentNode) {
                    ed.bind(contentNode, {
                        event: "mouseenter",
                        data: {
                            hookId: hookId
                        },
                        listener: function(event) {
                            rt.event.fire("bubbleMouseover", {
                                hookId: hookId,
                                sender: event.domEvent.currentTarget || event.domEvent.srcElement
                            })
                        }
                    });
                    ed.bind(contentNode, {
                        event: "mouseleave",
                        data: {
                            hookId: hookId
                        },
                        listener: function(event) {
                            rt.event.fire("bubbleMouseout", {
                                hookId: hookId,
                                sender: event.domEvent.currentTarget || event.domEvent.srcElement
                            })
                        }
                    })
                }
                var bodyMain = dmel.$([cls, "body", hookId].join("_"));
                if (bodyMain) {
                    ed.bind(bodyMain, {
                        event: "click",
                        data: {
                            hookId: hookId
                        },
                        listener: rtb.hookClick
                    })
                }
                var logoNode = dmel.$([cls, "logo", hookId].join("_"));
                if (logoNode) {
                    ed.bind(logoNode, {
                        event: "click",
                        data: {
                            hookId: hookId
                        },
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.homeUrl) {
                                window.open(st.homeUrl, "_blank")
                            }
                        }
                    })
                }
                var xBtn = dmel.$([cls, "x", hookId].join("_"));
                if (xBtn) {
                    ed.bind(xBtn, {
                        event: "click",
                        data: {
                            hookId: hookId
                        },
                        listener: function() {
                            rt.event.fire("hideBubble", {
                                hookId: hookId,
                                xBtn: true
                            })
                        }
                    });
                    ed.bind(xBtn, {
                        event: "mouseover",
                        data: {
                            el: xBtn,
                            pos: "-15px -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    ed.bind(xBtn, {
                        event: "mouseout",
                        data: {
                            el: xBtn,
                            pos: "-15px 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                var helpBtn = dmel.$([cls, "help", hookId].join("_"));
                if (helpBtn) {
                    ed.bind(helpBtn, {
                        event: "click",
                        listener: function(event) {
                            rt.utils.dom.event.stop(event.domEvent);
                            if (st.helpUrl) {
                                window.open(st.helpUrl, "_blank")
                            }
                        }
                    });
                    ed.bind(helpBtn, {
                        event: "mouseover",
                        data: {
                            el: helpBtn,
                            pos: "0 -15px"
                        },
                        listener: this.setBackgroundPosition
                    });
                    ed.bind(helpBtn, {
                        event: "mouseout",
                        data: {
                            el: helpBtn,
                            pos: "0 0"
                        },
                        listener: this.setBackgroundPosition
                    })
                }
                var btnNode = dmel.$([cls, "btn", hookId].join("_"));
                if (btnNode) {
                    ed.bind(btnNode, {
                        event: "mouseover",
                        listener: function(event) {
                            event.element.className = [st.baseClass, " ", cls, "_btn ", cls, "_btn_over"].join("")
                        }
                    });
                    ed.bind(btnNode, {
                        event: "mouseout",
                        listener: function(event) {
                            event.element.className = [st.baseClass, " ", cls, "_btn "].join("")
                        }
                    })
                }
                rt.bubble.afterBubbleRendered(bodyMain, data, hook);
                hook.bubble.node.style.display = "block";
                rt.event.fire("bubbleShowing", {
                    hookId: hookId
                })
            },
            renderBubble: function(width, height, hook) {
                var rt = this.$root,
                    hookId = hook.id,
                    st = rt.settings,
                    bh = rt.helpers.getHookBehavior(hookId),
                    data = rt.helpers.getHookData(hookId),
                    bst = rt.bubble.settings,
                    skst = this.settings;
                var logo = {
                    url: bh.bubbleLogoUrl || false,
                    width: Math.min(bh.bubbleLogoWidth || 53, 120),
                    height: Math.min(bh.bubbleLogoHeight || 12, 25)
                };
                var html = '<div 	id="<%= intextCls %>_<%= hookId %>" class="<%= cls %>" style="position:absolute; top:<%= hook.bubble.pos.top %>px; left:<%= hook.bubble.pos.left %>px; width:<%= width+2 %>px; height:<%= height+41 %>px; z-index:<%= zIndex+3 %>;">	<%-- Box --%>	<div id="<%= intextCls %>_content_<%= hookId %>" class="<%= cls %>" style="position:absolute; top:<%= oY == \'T\' ? 0 : 8 %>px; left:0; width:<%= width+2 %>px; height:<%= height+33 %>px; box-shadow:0 0 8px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow:0 0 8px 0 rgba(0, 0, 0, 0.25); -webkit-box-shadow:0 0 8px 0 rgba(0, 0, 0, 0.25);">		<%-- Header --%>		<div class="<%= cls %>" style="position:absolute; width:<%= width %>px; height:33px; left:0; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:0; z-index:1; background-color:#f1f1f2; border-<%= oY == \'T\' ? \'bottom\' : \'top\' %>:2px solid <%= themeColor %>; border-left:1px solid #a7a9ab; border-right:1px solid #a7a9ab;">			<% if (bh.favicon){ %><div class="<%= cls %>" style="position:absolute; width:16px; height:16px; left:14px; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:8px; background:url(<%= bh.favicon %>) no-repeat scroll 0 0 transparent;"></div><% } %>			<% if (bh.bubbleLogoUrl){ %>				<div id="<%= intextCls %>_logo_<%= hookId %>" class="<%= cls %>" style="position:absolute; width:<%= bh.bubbleLogoWidth %>px; height:<%= bh.bubbleLogoHeight %>px; right:56px; top:<%= parseInt((33 - bh.bubbleLogoHeight) / 2) %>px; cursor:pointer; font-size:1px; background-image:url(<%= bh.bubbleLogoUrl %>)"></div>			<% } else { %>				<div id="<%= intextCls %>_logo_<%= hookId %>" class="<%= cls %>" style="position:absolute; width:53px; height:12px; right:56px; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:9px; cursor:pointer; font-size:1px; <% if (b.IE || bst.oldFF){ %>background:url(<%= skinPath %>logo.png) no-repeat scroll 0 0 transparent;<% } %>">					<% if (!b.IE && !bst.oldFF){ %>						<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"								 width="53px" height="12px" viewBox="0 0 636 144" enable-background="new 0 0 636 144" xml:space="preserve">							<g>								<!-- dot (first) -->								<path id="<%= intextCls %>_logo_dot_<%= hookId %>_1" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M16.918,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.722-10.57-10.57-10.57 S6.334,8.434,6.334,14.282S11.07,24.865,16.918,24.865"/>								<!-- in -->								<path fill="#003366" d="M88.085,43.784H77.024c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.027,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.467c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.015V45.889v-0.025c0-1.124-0.885-2.033-2.01-2.08h-11.49c-1.09,0.047-1.949,0.907-1.986,1.996v46.828h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.511,25.512h1.151c14.031,0,25.511-11.48,25.511-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.159-17.948,18.031-17.948h6.366c9.871,0,17.948,8.076,18.042,17.948v28.89v4.62v28.873 c0.013,0.023,0.013,0.034,0.013,0.048c0,1.111,0.883,2.008,1.983,2.057h11.505c1.077-0.036,1.936-0.887,1.985-1.973v-27.966v-5.659 V74.966C119.267,57.815,105.234,43.784,88.085,43.784"/>								<!-- f (part) -->								<path fill="#003366" d="M155.069,56.972v82.643c-0.072,0.992-0.886,1.78-1.903,1.818h-11.014 c-1.062-0.038-1.912-0.897-1.912-1.962c0-0.024,0-0.048-0.023-0.073V34.456c0.716-17.064,14.923-30.744,32.179-30.744h8.536 c0.025,0,0.038,0.011,0.06,0.011c1.053,0,1.915,0.849,1.974,1.901v11.037c-0.035,1.016-0.85,1.844-1.878,1.889h-8.692 c-9.509,0-17.327,7.75-17.327,17.268v6.301V56.972z"/>								<!-- f (part) -->								<path fill="#003366" d="M151.99,59.104h28.873c0.023-0.012,0.034-0.012,0.047-0.012 c1.111,0,2.008-0.884,2.057-1.984V45.604c-0.036-1.078-0.887-1.938-1.973-1.986h-27.965"/>								<!-- o -->								<path fill="#003366" d="M276.24,107.925h0.158V76.608c-0.37-18.164-15.248-32.825-33.494-32.825 h-16.756v0.022c-17.875,0.431-32.322,14.924-32.679,32.803h-0.026v31.316c0,18.213,14.601,33.064,32.705,33.496v0.012h16.589h0.021 h0.146C261.304,141.349,276.24,126.354,276.24,107.925 M208.93,107.925L208.93,107.925V77.289c0-9.914,8.096-18.02,18.021-18.02 h15.953c9.946,0,18.02,8.106,18.02,18.02v30.636h-0.167c0,9.949-8.074,18.021-17.999,18.021h-15.807 C217.026,125.946,208.93,117.874,208.93,107.925"/>								<!-- l -->								<path fill="#003366" d="M312.844,139.376L312.844,139.376c0,1.064-0.798,1.938-1.829,2.045h-11.816 c-1.027-0.107-1.837-0.98-1.837-2.045h-0.013V5.769h0.013c0-1.135,0.908-2.033,2.031-2.057h11.432 c1.124,0.024,2.019,0.922,2.019,2.057V139.376z"/>								<!-- dot (second) -->								<path id="<%= intextCls %>_logo_dot_<%= hookId %>_2" fill="<%= bh.theme == \'def\' ? \'#208CE5\' : themeColor %>" d="M341.662,24.865c5.848,0,10.57-4.735,10.57-10.583s-4.723-10.57-10.57-10.57 s-10.584,4.722-10.584,10.57S335.814,24.865,341.662,24.865"/>								<!-- in (second) -->								<path fill="#003366" d="M412.829,43.784h-11.061c-17.149,0-31.181,14.031-31.181,31.182v34.796 c0,0.218,0.016,0.415,0.026,0.618v5.185c0,5.71-4.672,10.382-10.382,10.382h-0.468c-5.71,0-10.382-4.672-10.382-10.382V92.608 h0.016V45.723v-0.025c0-1.123-0.885-2.033-2.01-2.08h-11.49c-1.091,0.047-1.949,0.908-1.986,1.996v46.994h0.04 c-0.015,0.355-0.04,0.707-0.04,1.066v22.246c0,14.031,11.479,25.512,25.512,25.512h1.15c14.031,0,25.512-11.48,25.512-25.512 v-5.466v-4.62v-28.89c0.082-9.872,8.158-17.948,18.029-17.948h6.367c9.871,0,17.947,8.076,18.041,17.948v28.89v4.62v28.873 c0.014,0.023,0.014,0.034,0.014,0.048c0,1.111,0.883,2.008,1.982,2.057h11.506c1.076-0.036,1.936-0.887,1.984-1.973v-27.966v-5.659 V74.966C444.01,57.815,429.979,43.784,412.829,43.784"/>								<!-- k -->								<path fill="#003366" d="M480.277,139.376L480.277,139.376V91.735h0.146h9.255l40.656,48.766 c0.599,0.549,1.15,0.906,1.841,0.932h16.073c0.882-0.025,2.869-0.322,1.794-2.056l-0.013-0.024l-47.58-56.777l44.599-36.815 c0.015-0.049,0.015-0.049,0.036-0.073c1.066-1.734-0.886-2.032-1.78-2.069H527.08c-0.621,0.024-1.15,0.324-1.666,0.791 l-36.812,31.075h-8.325V5.769c0-1.135-0.896-2.033-2.02-2.057h-11.422c-1.124,0.024-2.033,0.922-2.033,2.057v133.607 c0,1.064,0.803,1.938,1.844,2.045h11.802C479.476,141.313,480.277,140.44,480.277,139.376"/>								<!-- s -->								<path fill="#003366" d="M603.208,84.782H577.99c-6.91-0.114-12.508-5.785-12.508-12.783 c0-6.996,5.598-12.895,12.508-12.895h39.271c1.146,0,2.08-0.959,2.08-2.111v0.191V45.752v-0.037c0-1.164-0.935-2.097-2.08-2.097 H577.99c-15.451,0-28.008,12.73-28.008,28.381c0,15.651,12.557,28.381,28.008,28.27h24.252c6.911,0.111,12.508,5.812,12.508,12.795 c0,6.996-5.597,12.896-12.508,12.896H591.56l0.001-0.014h-28.874c-0.022,0.014-0.034,0.014-0.047,0.014 c-1.11,0-2.007,0.896-2.056,2.01v11.449c0.035,1.092,0.886,1.963,1.973,2.014h0.225h27.74h12.224 c15.209-0.279,27.491-12.9,27.491-28.369C630.236,97.737,618.191,85.202,603.208,84.782"/>							</g>						</svg>					<% } %>				</div>			<% } %>			<div class="<%= cls %> <%= intextCls %>_bg" id="<%= intextCls %>_help_<%= hookId %>" style="position:absolute; width:15px; height:15px; right:29px; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:7px; display:block; background-position:0 0; cursor:pointer; font-size:1px;"></div>			<div class="<%= cls %> <%= intextCls %>_bg" id="<%= intextCls %>_x_<%= hookId %>" style="position:absolute; width:15px; height:15px; right:13px; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:7px; background-position:-15px 0; cursor:pointer; font-size:1px;"></div>		</div>		<%-- Body --%>		<div id="<%= intextCls %>_body_<%= hookId %>" class="<%= cls %> <%= intextCls %>_bodyMain" style="position:absolute; <%= oY == \'T\' ? \'top\' : \'bottom\' %>:0px; left:0; width:<%= width %>px; height:<%= height %>px; z-index:2; background-color:#ffffff; cursor: pointer; border-<%= oY == \'T\' ? \'top\' : \'bottom\' %>:1px solid #a7a9ab; border-left:1px solid #a7a9ab; border-right:1px solid #a7a9ab;">			<%= rt.bubble.renderAdsContent(hook, data) %>		</div>	</div>	<% if (!hook.externalTag){ %>		<%-- Tail --%>		<div class="<%= cls %>" style="position:absolute; <%= oY == \'T\' ? \'bottom\' : \'top\' %>:0; <%= oX == \'L\' ? \'right\' : \'left\' %>:15px; width:15px; height:8px; font-size:1px; <% if (b.IE || bst.oldFF){ %>background:url(<%= skinPath %>tail.png) no-repeat scroll <%= tailBgLeft %>px <%= tailBgTop %>px transparent;<% } %>">			<% if (!b.IE && !bst.oldFF){ %>				<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="15px" height="8px" viewBox="0 0 30 16" preserveAspectRatio="xMidYMid meet" style="position:absolute; font-size:1px;">					<g transform="translate(0,16) scale(0.1,-0.1)" fill="<%= themeColor %>" stroke="none">						<% if (oY == \'T\'){ %>							<path d="M37 138 c11 -13 30 -42 42 -65 22 -44 54 -73 81 -73 20 0 52 34 75 80 10 19 27 45 38 57 l20 23 -138 0 -138 0 20 -22z"/>						<% } else { %>							<path d="M109 143 c-9 -10 -31 -43 -49 -73 -18 -30 -38 -58 -44 -62 -6 -4 51 -8 126 -8 l137 0 -22 36 c-73 118 -114 147 -148 107z"/>						<% } %>					</g>				</svg>			<% } %>		</div>	<% } %></div>';
                return rt.utils.VeST(html, {
                    rt: rt,
                    st: st,
                    bh: bh,
                    b: rt.browser,
                    hookId: hookId,
                    hook: hook,
                    data: data,
                    intextCls: bst.cls,
                    cls: st.baseClass,
                    bst: bst,
                    width: width,
                    height: height,
                    oX: hook.orientationX,
                    oY: hook.orientationY,
                    zIndex: st.baseZIndex + 100,
                    logo: logo,
                    themeColor: rt.products[hook.type].settings.themes.color[bh.theme],
                    skinPath: rt.bubble.getSkinPath(this.$id),
                    tailBgLeft: skst.tailMap[bh.theme],
                    tailBgTop: hook.orientationY == "T" ? -8 : 0
                }, hookId + "brand", true)
            },
            setBackgroundPosition: function(event) {
                event.data.el.style.backgroundPosition = event.data.pos
            }
        }, {
            settings: {
                rv: 1,
                tailMap: {
                    def: 0,
                    lightBlue: -15,
                    green: -30,
                    orange: -45,
                    red: -60,
                    pink: -75,
                    purple: -90
                }
            }
        }, true);
        skins.brand.bind({
            event: "brandBubbleMouseover",
            listener: {
                bubleMouseover: function(event) {
                    var boxShadow = this.$root.utils.dom.style.supports("boxShadow");
                    if (boxShadow) {
                        event.data.sender.style[boxShadow] = "0 0 8px 0 rgba(0, 0, 0, 0.5)"
                    }
                }
            }
        });
        skins.brand.bind({
            event: "brandBubbleMouseout",
            listener: {
                bubleMouseout: function(event) {
                    var boxShadow = this.$root.utils.dom.style.supports("boxShadow");
                    if (boxShadow) {
                        event.data.sender.style[boxShadow] = "0 0 8px 0 rgba(0, 0, 0, 0.25)"
                    }
                }
            }
        });
        skins.$create("less", {
            init: function() {
                var rtb = this.$root.bubble,
                    skinPath = rtb.getSkinPath(this.$id);
                rtb.preloadImages(skinPath, "x")
            },
            showBubble: function(hookId) {
                var rt = this.$root,
                    ut = rt.utils,
                    dmel = ut.dom.element,
                    st = rt.settings,
                    hook = st.hooksMap[hookId],
                    data = rt.helpers.getHookData(hookId),
                    cls = rt.bubble.settings.cls,
                    ed = rt.event.dom;
                var pos = hook.bubble.pos = rt.bubble.adjustBubblePosition(hook, {
                    width: data.width + 11,
                    height: data.height + 22
                });
                if (hook.externalTag) {
                    pos.top += hook.orientationY == "T" ? 60 : -60;
                    var hookWidth = dmel.getActualWidth(hook.node);
                    pos.left += hook.orientationX == "L" ? hookWidth + 20 : -20
                }
                if (hook.bubble.node && hook.bubble.node.parentNode) {
                    var parent = hook.bubble.node.parentNode;
                    parent.removeChild(hook.bubble.node)
                }
                hook.bubble.node = ut.dom.createDOMFragment({
                    tag: "div",
                    cls: st.baseClass,
                    parent: document.body,
                    style: {
                        display: "none"
                    },
                    innerHTML: this.renderBubble(data.width, data.height, hook)
                });
                var bubbleNode = ut.dom.element.$([cls, "content", hookId].join("_"));
                if (bubbleNode) {
                    ed.bind(bubbleNode, {
                        event: "mouseenter",
                        data: {
                            hookId: hookId
                        },
                        listener: function(event) {
                            rt.event.fire("bubbleMouseover", {
                                hookId: hookId,
                                sender: event.domEvent.currentTarget || event.domEvent.srcElement
                            })
                        }
                    });
                    ed.bind(bubbleNode, {
                        event: "mouseleave",
                        data: {
                            hookId: hookId
                        },
                        listener: function(event) {
                            rt.event.fire("bubbleMouseout", {
                                hookId: hookId,
                                sender: event.domEvent.currentTarget || event.domEvent.srcElement
                            })
                        }
                    })
                }
                var bodyMain = ut.dom.element.$([cls, "body", hookId].join("_"));
                if (bodyMain) {
                    ed.bind(bodyMain, {
                        event: "click",
                        data: {
                            hookId: hookId
                        },
                        listener: rt.bubble.hookClick
                    })
                }
                var xNode = ut.dom.element.$([cls, "x", hookId].join("_"));
                if (xNode) {
                    ed.bind(xNode, {
                        event: "click",
                        data: {
                            hookId: hookId
                        },
                        listener: function() {
                            rt.event.fire("hideBubble", {
                                hookId: hookId,
                                xBtn: true
                            })
                        }
                    })
                }
                rt.bubble.afterBubbleRendered(bodyMain, data, hook);
                hook.bubble.node.style.display = "block";
                rt.event.fire("bubbleShowing", {
                    hookId: hookId
                })
            },
            renderBubble: function(width, height, hook) {
                var rt = this.$root,
                    st = rt.settings,
                    bst = rt.bubble.settings,
                    cls = st.baseClass,
                    hookId = hook.id,
                    b = rt.browser,
                    skinPath = rt.bubble.getSkinPath(this.$id),
                    data = rt.helpers.getHookData(hookId);
                var html = '<div 			id="<%= intextCls %>_<%= hookId %>" class="<%= cls %>" style="<%= abs %> width:<%= width+11 %>px; height:<%= height+22 %>px; top:<%= hook.bubble.pos.top %>px; left:<%= hook.bubble.pos.left %>px; z-index:<%= zIndex+3 %>;">				<% if (!hook.externalTag){ %>				<div class="<%= cls %> <%= intextCls %>_head" style="width:100%; height:22px; <%= abs %> left:0; z-index:<%= zIndex+4 %>; <%= (oY == \'T\') ? \'bottom:0;\' : \'top:0;\' %>" >					<div id="<%= intextCls %>_x_<%= hookId %>" class="<%= cls %> <%= intextCls %>_x" style="<%= abs %> width:22px; height:22px; background:transparent url(<%= skinPath %>x.png) no-repeat scroll 0 0; cursor:pointer; top:<%= (oY == \'T\') ? \'2px\' : 0 %>; <%= (oX == \'L\') ? \'right:0\' : \'left:0\' %>;"></div>				</div>				<% } %>				<div id="<%= intextCls %>_content_<%= hookId %>" class="<%= cls %> <%= intextCls %>_body" style="<%= abs%> width:<%= width %>px; height:<%= height %>px; zindex:<%= zIndex+3 %>; top:<%= (oY == \'T\') ? 0 : \'22px\' %>; <%= (oX == \'L\') ?  \'left:0\' : \'left:11px;\' %>; ">					<div id="<%= intextCls %>_body_<%= hookId %>" class="<%= cls %> <%= intextCls %>_bodyMain" style="<%= abs %> top:0; left:0; width:<%= width %>px; height:<%= height %>px; cursor:pointer; color:#000000;">						<%= rt.bubble.renderAdsContent(hook, data) %>					</div>				</div>			</div>';
                return rt.utils.VeST(html, {
                    rt: rt,
                    hookId: hookId,
                    hook: hook,
                    data: data,
                    intextCls: bst.cls,
                    cls: st.baseClass,
                    width: width,
                    height: height,
                    oX: hook.orientationX,
                    oY: hook.orientationY,
                    abs: "position:absolute;",
                    zIndex: st.baseZIndex + 100,
                    skinPath: skinPath
                }, hookId + "less", true)
            }
        }, {
            settings: {}
        }, true);
        event.fire("main")
    } catch (ex) {
        if (typeof $root == "object" && $root.logger && $root.logger.error) {
            $root.logger.error("CatchAll. Exception: " + ex.message, window)
        }
    }
})()

#2 JavaScript::Eval (size: 1597, repeated: 1)

(function() {
    var T = navigator.userAgent,
        P = function(a) {
            for (var b = 0, Z = a.length; b < Z; b++) {
                if (T.indexOf(a[b]) != -1) {
                    return true
                }
            }
            return false
        },
        C = P(["iPhone", "iPad", "Android", "Windows Phone OS", "Opera Mini", "UCWEB"]) ? "mobile" : "",
        O = "ice" + C + ".js",
        E = window["infolinks_white_label"];

    function J(Z) {
        return window[E + "_" + Z] || window["infolinks_" + Z] || window["infolink_" + Z] || null
    }
    var W = window["$iceboot"] = {};
    window["INFOLINKS"] = {
        _boot: W
    };
    var L = W.versions = {
        "311.0.9": 50,
        "310.3.1e": 50
    };
    var A = W.siteVersions = {};
    var B = 0,
        K, F, M, N = location.hostname;
    K = location.search.match(/[\?&]il\.sv=([^&]+)/);
    if (K) {
        W.version = K[1]
    } else {
        for (F in L) {
            M = L[F];
            L[F] = {
                weight: M,
                from: B,
                to: B + M
            };
            B += M
        }
        W.rand = Math.ceil((Math.random() * B));
        for (F in L) {
            if (W.rand > L[F].from && W.rand <= L[F].to) {
                W.version = F;
                break
            }
        }
    }
    for (F in A) {
        for (S = 0, D = A[F].length; S < D; S++) {
            if (N.indexOf(A[F][S]) > -1) {
                W.version = F;
                break
            }
        }
    }
    var Y = ["/", W.version, "/", O].join("");
    var U = J("resources");
    K = location.search.match(/[\?&]il\.su=([^&]+)/);
    if (K) {
        W.url = K[1] + Y
    } else {
        if (U) {
            if (!/^http:\/\//.test(U)) {
                U = "http://" + U
            }
            W.url = U + Y
        } else {
            var Q = document.getElementsByTagName("script"),
                G, S, D;
            var R = /\/infolinks_main\.js$/;
            for (S = 0, D = Q.length; S < D; S++) {
                G = Q[S].src;
                if (G && G.match(R) != null) {
                    W.url = G.replace(R, Y);
                    break
                }
            }
        }
    }
    W.tmr_scr = new Date().getTime();
    if (W.url) {
        var V = J("ddw"),
            I = J("async");
        if (V || I) {
            var X = document.createElement("script");
            X.type = "text/javascript";
            X.charset = "UTF-8";
            X.src = W.url;
            if (I) {
                X.async = "async";
                X.defer = "defer"
            }
            var H = document.getElementsByTagName("head");
            if (H && H.length) {
                H[0].appendChild(X)
            }
        } else {
            document.write(['<script type="text/javascript" src="', W.url, '"><\/script>'].join(""))
        }
    }
})()

#3 JavaScript::Eval (size: 128, repeated: 1)

({
    "color": "rgb(0, 0, 0)",
    "backgroundColor": "rgb(255, 255, 255)",
    "unvisitedLinkColor": "rgb(202, 85, 24)",
    "fontFamily": "Verdana"
})

#4 JavaScript::Eval (size: 221, repeated: 1)

({
    '0': [0, -29, 9, 14],
    '1': [-11, -29, 6, 14],
    '2': [-20, -29, 9, 14],
    '3': [-30, -29, 9, 14],
    '4': [-40, -29, 10, 14],
    '5': [-50, -29, 8, 14],
    '6': [-60, -29, 9, 14],
    '7': [-70, -29, 9, 14],
    '8': [-80, -29, 9, 14],
    '9': [-90, -29, 9, 14],
    ',': [-102, -29, 4, 17]
})

#5 JavaScript::Eval (size: 218, repeated: 1)

({
    '0': [0, -43, 7, 11],
    '1': [-8, -43, 4, 11],
    '2': [-14, -43, 7, 11],
    '3': [-21, -43, 7, 11],
    '4': [-28, -43, 7, 11],
    '5': [-35, -43, 6, 11],
    '6': [-42, -43, 7, 11],
    '7': [-49, -43, 7, 11],
    '8': [-56, -43, 7, 11],
    '9': [-63, -43, 7, 11],
    ',': [-71, -43, 4, 14]
})

#6 JavaScript::Eval (size: 11, repeated: 6)

+new Date()

#7 JavaScript::Eval (size: 31, repeated: 3)

/([\s{};()]|[-+]{2}|default)+/g

#8 JavaScript::Eval (size: 17, repeated: 1)

/*@cc_on!@*/
false

#9 JavaScript::Eval (size: 17, repeated: 1)

/.*GMT[+-][\d]+ /

#10 JavaScript::Eval (size: 19, repeated: 4)

0, (function() {})

#11 JavaScript::Eval (size: 84, repeated: 2)

0, (function(a) {
    var b = C(a),
        c = b.K.apply(b.self, b.z);
    s(a, b.L, c);
})

#12 JavaScript::Eval (size: 422, repeated: 2)

0, (function(a) {
    var b = C(a),
        c = b.z,
        d = b.self,
        e = b.K,
        g = "";
    switch (c.length) {
    case 0:
        g = new(d[e]);
        break;
    case 1:
        g = new(d[e])(c[0]);
        break;
    case 2:
        g = new(d[e])(c[0], c[1]);
        break;
    case 3:
        g = new(d[e])(c[0], c[1], c[2]);
        break;
    default:
        u(a, a.u);
        return;
    }
    s(a, b.L, g);
})

#13 JavaScript::Eval (size: 227, repeated: 2)

0, (function(a) {
    var b = a.G.pop();
    if (b) {
        for (var c = x(a); 0 < c; c--) {
            var d = x(a);
            b[d] = a.c[d];
        }
        a.c = b;
    } else {
        s(a, a.b, a.d.length);
    }
})

#14 JavaScript::Eval (size: 134, repeated: 2)

0, (function(a) {
    var b = a.a(x(a)),
        c = a.a(x(a)),
        d = a.a(x(a)),
        e = a.a(x(a));
    b.addEventListener(c, D(a, d, e), false);
})

#15 JavaScript::Eval (size: 91, repeated: 2)

0, (function(a) {
    var b = a.a(x(a)),
        c = a.a(x(a));
    a = a.a(x(a));
    b[c] = a;
})

#16 JavaScript::Eval (size: 106, repeated: 2)

0, (function(a) {
    var b = a.a(x(a));
    a.G.push(a.c.slice());
    a.c[a.b] = f;
    s(a, a.b, b);
})

#17 JavaScript::Eval (size: 93, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = a.a(x(a)),
        d = a.a(x(a));
    s(a, b, D(a, c, d));
})

#18 JavaScript::Eval (size: 79, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        b = a.a(b);
    s(a, c, p(b));
})

#19 JavaScript::Eval (size: 238, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = a.a(b),
        b = y(a, b),
        e = y(a, c);
    e == a.g || e == a.l ? (d = "" + d) : 0 < b && (1 == b ? (d &= 255) : 2 == b ? (d &= 65535) : 4 == b && (d &= 4294967295));
    s(a, c, d);
})

#20 JavaScript::Eval (size: 667, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = a.a(b);
    y(a, b) == a.g && (d = r(d));
    b = d;
    for (d = 0; 12 > d; d++) {
        b.push(0);
    }
    for (var e = 2654435769, g = 2654435769, h = 314159265, d = 0; d < b.length - 11; d += 12) {
        e += z(b, d), g += z(b, d + 4), h += z(b, d + 8), e -= g, e -= h, e ^= h >>> 13, g -= h, g -= e, g ^= e << 8, h -= e, h -= g, h ^= g >>> 13, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 12, g -= h, g -= e, g ^= e << 16, h -= e, h -= g, h ^= g >>> 5, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 3, g -= h, g -= e, g ^= e << 10, h -= e, h -= g, h ^= g >>> 15;
    }
    s(a, c, h);
})

#21 JavaScript::Eval (size: 101, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a),
        b = a.a(b),
        c = a.a(c);
    s(a, d, b[c]);
})

#22 JavaScript::Eval (size: 103, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    a.a(b) == a.a(c) && s(a, d, a.a(d) + 1);
})

#23 JavaScript::Eval (size: 102, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    a.a(b) > a.a(c) && s(a, d, a.a(d) + 1);
})

#24 JavaScript::Eval (size: 95, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, (a.a(b) in a.a(c)) + 0);
})

#25 JavaScript::Eval (size: 84, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) << c);
})

#26 JavaScript::Eval (size: 84, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) >> c);
})

#27 JavaScript::Eval (size: 88, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) | a.a(c));
})

#28 JavaScript::Eval (size: 89, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) || a.a(c));
})

#29 JavaScript::Eval (size: 348, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = y(a, b),
        e = y(a, c);
    d == a.g && e == a.g ? (a.c[c] == f && s(a, c, ""), s(a, c, a.a(c) + a.a(b))) : e == a.l && (0 > d ? (b = a.a(b), d == a.g && (b = r("" + b)), (c == a.f || c == a.h || c == a.m) && A(a, c, B(b.length, 2)), A(a, c, b)) : 0 < d && (b = a.a(b), A(a, c, B(b, d))));
})

#30 JavaScript::Eval (size: 86, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    0 != a.a(b) && s(a, a.b, a.a(c));
})

#31 JavaScript::Eval (size: 78, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) % a.a(b));
})

#32 JavaScript::Eval (size: 78, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) * a.a(b));
})

#33 JavaScript::Eval (size: 78, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) + a.a(b));
})

#34 JavaScript::Eval (size: 78, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) - a.a(b));
})

#35 JavaScript::Eval (size: 75, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, eval(a.a(b)));
})

#36 JavaScript::Eval (size: 1371, repeated: 2)

0, (function(a) {
    var b = x(a),
        c = y(a, b);
    if (0 < c) {
        for (var d = 0, e = 0; e < c; e++) {
            d = d << 8 | x(a);
        }
        s(a, b, d);
    } else if (c != a.r) {
        d = x(a) << 8 | x(a);
        if (c == a.g) {
            if (c = "", a.c[a.s] != f) {
                for (var g = a.a(a.s), e = 0; e < d; e++) {
                    var h = g[x(a) << 8 | x(a)],
                        c = c + h;
                }
            } else {
                c = Array(d);
                for (e = 0; e < d; e++) {
                    c[e] = x(a);
                }
                e = c;
                d = [];
                for (g = c = 0; c < e.length;) {
                    if (h = e[c++], 128 > h) {
                        d[g++] = String.fromCharCode(h);
                    } else if (191 < h && 224 > h) {
                        var m = e[c++];
                        d[g++] = String.fromCharCode((h & 31) << 6 | m & 63);
                    } else {
                        var m = e[c++],
                            l = e[c++];
                        d[g++] = String.fromCharCode((h & 15) << 12 | (m & 63) << 6 | l & 63);
                    }
                }
                c = d.join("");
            }
        } else {
            c = Array(d);
            for (e = 0; e < d; e++) {
                c[e] = x(a);
            }
        }
        s(a, b, c);
    }
})

#37 JavaScript::Eval (size: 30, repeated: 2)

0, (function(a) {
    x(a);
})

#38 JavaScript::Eval (size: 1, repeated: 1)

B

#39 JavaScript::Eval (size: 1, repeated: 3)

C

#40 JavaScript::Eval (size: 1, repeated: 3)

D

#41 JavaScript::Eval (size: 1, repeated: 2)

E

#42 JavaScript::Eval (size: 5627, repeated: 1)

["NCHLyPBOkFEEioV2dxd1iKTjXBsLhEp/ohkQb4/CrNIL85VmD72CxyYtoqonfsUoYbN25oqomvvY8FN4Lwfmxrk7EDWLDDMfJbtxyDeYjKYLtn/LKgGxatVwBut58DQH/qnCN4TX8qxczghtLY5bFCEf8nFmPjpj0j4uDmkJBt5Y+cx/5Z4ZI1ETuy1dqJbq/Ah6J63dnG+Pp5Y9XDpcW9eYnQhribMWNyFpWyWFmC2Pdm3eYXbUjSp9dZHMLHyCkdXoMpOQso9FA1ZfX+N4olkFM9bgI2g7GoqXHIFYECwGsMKklxLF9aARovPz1yvnbN05+A2D1uluj/YjXA9GS/9uE/Zh37gyhO6h5bvOf4GhGyxcyR97Yvw1oofqrUxJBZnkKp2NgMvHwKNDUi4GWLX67cn5uv0iGpqZ9Vz1VjSO0Z299AzQCgEYFXB24F7T1xY6sh81vM/glFYy3b74Bsudm6fD4IuoneuRNw2wnCoB+pIvBxKnpesLJb/IBuRJYelel9CjFHkEcuJIYXZr6hd5WgdIYS0QqzpL6Swef1IfKopY9Bd/Srj6qNfEbPd/Aoaq9eWh95NF2r/ciPOahJF8Bv6Wz/AaXqMGvRpYTbitYEjjDIJj6rNaOOlQQGdKfKVhcYLqsHm1A2q7gEAJkRCGjDBLqIl+M+xB/hUBs59jUck7iJv0FoKF9F+m/dK2zN5xFmww+AtPzpEuiXLJncKsmMM5R5loYqJ66ti0oMOJMMrWUptDjVFaDiMUBgXbbOS+ggqzvawBohkTYG2NooHSMdTZ7s+EmA2QaI23Hw216BtppxcsZk6A1Hny/zv3my9RE2IswHH+WgAAyJvmnj6ol7MmIHDrybWidLzjB2ysAGrGVPBduYQUvjVNZCOBG4gaxlyXi1Q+nv3WtRVNW3pDjdkZ5pacNqGac7or9fcRc+RPTlJZOAk4GykSTzy6ihvB7e8JIT0bWa1YgD/zjezEByY+dr5AeYWRU1rXEkUIVCYAKhfWA+2U5UHUXo1WQBxCAzxs33jX6+L6ICTJ509iieANgUttCoDIDIm1dZHiKpTSJKNp8lPaCMLpdfnYpAPVSTwl7IBUbPhFkavLzJ3ceR7FCW5CGilky01s/iV8QRwuu0bCx2S6uSkRzE9l3XnDhuntWXwzsDimxQJqph7f7Pp2fTjemkLUT5QflapzDiPCzECJPYmRbKC3lMUKVNyaQfIfz/7axuiEkhMO76dYDtyALmBuIlMQ6QZkCctDzy/PSPwQBlnFC+OP+inTSMvr/9aZzhTCE+7fd67PFxGxT3t7LjfbcdmyWpN2K3HMa0pCGDADfYZrKw5jzYd0TSzQQLb2koyNTp1Sj3MSdHFgeGHF2Cno/66/lRRGAXzaw41stgpfJNA1ZnnK4Pl4H4w39XLBItPEt2mVk1XwhPn3cra5KqwbWoCmASu08/q9ku+Tw5ARKREm95kJC8/bMwdrl8fmfUk9SmkN3UKeCwcAkJSB70w5NYyQ5vK3CO8yYFuL02DnuqK3vnuFU6/vha7AyF0Unz1g2LKGqZSNn7I8/pExv4wEvyhmRPfiR7zvd34tPcwIyJOOZ3yEaGD79B7bZvx9mS/mpZd5fMkZ4HrD7yBjdygmV/Sm3yk5ssC+t9jcdCfun4GvQO7YpY31NwLmTzhR9IMHjXH/xpbULtlhyVtfMM5TBgZzOZ4wZt7+bJjCwm470vrT16pzt5TTLUNpTCui19Q5Fqb7eKpHAqlUNGVTM7xuFBl2gwzr+zrF7hhk3PIDcB9mIUdWN+C2qof22wO19z8mcSfHJjlJoN33mrzpmhydqjKOXIm9sg6yufWRB6UjdMApWXNt68X6Fn34irH47LQ7CAYrofQ7L3VczzeeDzJZN+Hty3BBRYgBM4E0lOkOEbT0mGCPRSgzFdmId4EhnUPDnrx7E7xRZw1nuFaLXvy3sIvqPcOoG7uygs6k8ImebFYGe9/RjGKK90i6YARsRr6rbvKpIlY4DYDP4nxLXg7bWFsZEIAsO0rihhFRD//55hzyurzoc1euUe959xDXuR+N1aaXZKzu05aLpTrtDWFV35zV5LTCwflz9cNLn05pHL/8pqDMeAu/dh+aL5vobIlytq5BQrLSuU3VwAk2QoGbJLaPom71jGTUdIzNUKUkwn1+/mP9GbRgkakz7Yio8Gyd4rcDMwD+W/yro6yKCutnDsLpkCHwahfcwy98LIXvlGOQ24gICVGr6JpvGgM14X7+28MOdLHbz+x7gYJ7e53sTO7pOgBAaPB1GXEL6QXO5+xS3erTh0N7OaXGJywo8HGBAccFD7EPmWZavqGDdsrN1AhJxTykBH00JfG3pqU9VaWPW0mbYInQQCpyede9BwFT9IHsRYlukgXNEMEzncpNPea5rAyVdap+s9tBZ66QtHuzgJ3mKgSAmjRYrD2faZGy6FDz86rRmzPv6ovHgPRfbS8qQiu+H50j/ZYr1beAjFQz1tQmBPmLlMsaOMc/L+mTXLrn2/EYU+x33GVTkTQgL3twn2bsvMjJMWyx53D5c3BkbIb/oZe+gkmmFHfms32AdeLr4HXgFoY9jyw3nF+z68gr+m8/efCLPdNqgJlFFqczQ89HBo19ofyISKHCgupaXqh6+488bDTGPEjNNUkukjui3HXoPk5mraSH9hQxNoz/L8ua0zWReaNSwjOqN/qQ1XbEWM4Irheunkd6wqYHeitEB+l4VwDeBNopaPAEaMdxUx1GwGenR0jE1lXEhbuq4AcUwEBkfG+XzNzCuY53Wn+AFcKLzDg/gNHLFels9ZTlkA5yWR2PR6xlU2vgXKpQGW2LyGbSmkrtVrPqz87jPMeD/44Tf3cYNgNthL+WUrkQ70dSrIrjlguHIB5tUaMy4dBbLdhOmlTGkmrmzTR6V1ER2frzVKeIErzZnOGv/gQBizlIdpo3DiwFK5HC97GsbjByYwl+6ScctPIMEOuZst5wC+zjiRBztcXL6LvuLO2eLn1DUcN62sDssrbz8AqEGzCW6qSX/zUXbpeuIrxZkG28NJfIZZG6N63ilEbkkNxQqb9K45aqpS4abiHHoCwD5WvWlETIq/sz2Y6joTSCPUVs1hvCWlEHy/TYALC7NjN/pRj7zdjeSpEFu1OSimL1nwlWv9lSCqPKjFCjDW5Q1UCWqHi1WqI8ATUyrwbo2njDR/LIDIzHqybohtXg4OZ9qk4s5iV8b0oSblZb6gzq/7YelYpJnCnpvKjA9pIrnZ43M3rJV+f3WQbs1jhwNuAjvAeuabu1VyVtFKayrisS97vif1w7RslKKVxn9phJFujHiAmxwMhI3OTLEg18Eo0dZ3vUrne9VUj0UpfU+mj1yFdkazM/ETlfwhcKPAsU2a0wJ0+lrD6EHb5kO+6Dhg9Maa39XtBwPK79Okkcc6EZO9FgnHLtABV9u/lj+yynW4UWZyNrw5QNH2L/oxFd3l/wYcqTQqjLt87yhrBCOBT7uai5GGYYRn2l769ZL2UR/o6g4DwyYDs7q6tlgkahPzB8Q/LSLmDwGlnGaO4CUSNSQI+zKnNUSTykuT1zjCQsBeQIhDpXVPDFfak7bf+/JaTPFiwyMQ47RXDYCjdUyv4LdBCVfp6J5f18ZFVeYbrM1NvKVVKd8RUuN8cVJsFTtMdgKHMF0f3/OQigyeWgqoD8PzimsWijL3tBL32fSjbHbm9bRF7+p1OsJv9aDsHvZOzXzrR7gqs3K4FFNTB8jtBZLJ1k/mg1t/SBtiN2T04stQsfMnNZoeFoO2Dd6vjOzdI4Q+sRdOKmEhq3YoAoTXyAlQQbiSOVjD0sRCd3N0j17UqBL+TIE/CeSSyTQNwMC4D6Qwe2NSC+HGlttZO/GEQlKxISotxDWLdmYZNeJpPHgVzshHbQBwabCLOLoovSYdjE4lK1/+XKMSyNcBOmFZn4wWH4AvR/p5sriZKdaLyfuK6+acd7gQQf2f0Q6kLAN5bXEiDSUezuQZuxizX4S3xZMgVkJPTgKZFV5aVTVQhRQ5I3EM+NFgzphi8lrvAHKMMCXUZa8QCkhvO05wceTo9MOvSewz84lMxOhqJcNFMagjL/sfxId68vBVjPd7rT/Nix2eQdZBrjrUCZpdg2YvMnRrFytob6xYdYcUFXW0/ZVLcRbt4IV9RwozJukjxw3kLmH/bC8ixfHOCLCUvA5iSgPKzVOvNKAkm4140N4/8sX/tlxJt2AjdS3+TyBMDn7RSOKwomw5QROspYqh++OGit7fPHpiFyRpHN9saN07J9XuF5vMkdeMoxfyCtvNXoQKYdXC6Ef5wdQNC6unjreHqy2YpD+QAjIWZCF3OAjUUwiKf7WUg7RUB6i3vWwWNcgXlzT04Dh1WekQufGAECv2NUKAZQrStQynLOojvgYvC+kDTX+JVBN78Xlyo8dUt/MrHR/FDBsWVKO5MuAWEb5sZ5l2ThBGykOeiXaJIvW+BQo+1iII5+vL0ALoJqpZwea2QkgbSPnZrEMkC/zRiEps8wnAyKORObsvsExiotcTWlsUcx83vRYbimL56AlSTEbYOlL+PlrCQ/c+RL71+7fTafRX73tJoP/BzaY1fkWwftB4QkMATQR/7NMnihbWDHnnBtgsMpmC5pkTrQTCDWG7X/DHCOfeZEoLQrl1aNUq6HqSeK1sZ/I7tDw3bgyYyF8P+0Wx4Db4K2MMMDeR8AG/IzduHypDDbP6gUVzLvXuTnGMiXCY/tnBpFk1esus9fmlHXEIK7PgLCEN0RtcE0YaESvyVgDF4/VkAm1snZ/rvZHJS9cyQic26xJaAZWytGaxF6nTHNxKJJFeHYNpP+GSKmbDCd2fDj8ZXsELytgyac5XKQ3pYEpzMJu+DrQo1KB6gWniuoOBc+th4H9uxvo+UWVAuKPipatn31cDdZPvz8IcMrCqZ5hRIQLTNJJhslGN1ch2SS2uhVr19Tuj4tUVk7XOlAS+quU3Z90iyd2I6NgJwjUS93+u6YkS3TKK4LqrV92Ey72tg7AIE98MMUDp2n9jG7BPrlYcaY4k6VA/QYtrgbSbw105LN9YGjtdOVtWNMBTt3Y4as4RDTp6HgamWio+1X9vQM0Ke0mcUJt/JI3izT9PURk4qVeB6si3gMlpJTY4j5iBgfp+Uh866Kc3p3F56EVYG55++Z7q+unD3G50nLG0fmLVxSpufpJ+dfkkiWn+sqal/pSMgqjU2nkg3XOEHK4XSmekdyD8zRStaH2PoevJ56TQ3SlKBjTCRlZGY5zMeLOSLIJ4J1lZc8P/wo7EFveRGRUI6D6FvpFNK4kEPrGJJVUtFXMQ1faRIyqlk1inhIvdmqx6UmdNdcv2AizFUN6rIMVT4bePn11/XF5dtLzQZEK0WZAWTxx20tECatZ5H/2VgXAJ2V4Dec4RS2meTtaGvc8/ypWIJAkMy6+j2RR8YZ8tsZ4WLSEyO7ZB3EBcn0QSWNzIu+XMy/vlhL43EBBz3GP0bejad3oHZNLCTVkg/+gOoY1luOgncirk3nekKIYy4YR06zEDwzUW8UVomoArLQirAE2lbKPmy7jqxHnx136Hdz8WMs9oujQ084wehBntqHcxl+rFDA8q4PXBie7vuT4g\u003d\u003d"]

#43 JavaScript::Eval (size: 2, repeated: 2)

[]

#44 JavaScript::Eval (size: 29, repeated: 2)

document.createElement('img')

#45 JavaScript::Eval (size: 35, repeated: 2)

document.createEvent('MouseEvents')

#46 JavaScript::Eval (size: 1, repeated: 1)

q

#47 JavaScript::Eval (size: 1, repeated: 3)

r

#48 JavaScript::Eval (size: 1, repeated: 2)

s

#49 JavaScript::Eval (size: 1, repeated: 1)

t

#50 JavaScript::Eval (size: 1, repeated: 2)

u

#51 JavaScript::Eval (size: 1, repeated: 1)

v

#52 JavaScript::Eval (size: 8332, repeated: 1)

var f = void 0,
    i, j = this,
    m = function(a, b) {
        var c = a.split("."),
            d = j;
        !(c[0] in d) && d.execScript && d.execScript("var " + c[0]);
        for (var e; c.length && (e = c.shift());)!c.length && b !== f ? d[e] = b : d = d[e] ? d[e] : d[e] = {}
    },
    n = function(a) {
        var b = typeof a;
        if ("object" == b) if (a) {
            if (a instanceof Array) return "array";
            if (a instanceof Object) return b;
            var c = Object.prototype.toString.call(a);
            if ("[object Window]" == c) return "object";
            if ("[object Array]" == c || "number" == typeof a.length && "undefined" != typeof a.splice && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("splice")) return "array";
            if ("[object Function]" == c || "undefined" != typeof a.call && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("call")) return "function"
        } else return "null";
        else if ("function" == b && "undefined" == typeof a.call) return "object";
        return b
    },
    p = Date.now ||
function() {
    return +new Date
};
new function() {
    p()
};
var q = function(a) {
        a = a.replace(/\r\n/g, "\n");
        for (var b = [], c = 0, d = 0; d < a.length; d++) {
            var e = a.charCodeAt(d);
            128 > e ? b[c++] = e : (2048 > e ? b[c++] = e >> 6 | 192 : (b[c++] = e >> 12 | 224, b[c++] = e >> 6 & 63 | 128), b[c++] = e & 63 | 128)
        }
        return b
    };
var v = function(a) {
        try {
            if (this.c = [], r(this, this.b, 0), r(this, this.j, 0), r(this, this.n, 0), r(this, this.i, []), r(this, this.f, []), r(this, this.D, {}), r(this, this.C, "object" == typeof window ? window : j), r(this, this.F, this), r(this, this.p, 0), r(this, this.A, 0), r(this, this.B, 0), r(this, this.h, [s(), s(), s(), s()]), r(this, this.m, []), r(this, this.k, {}), a && "!" == a[0]) this.e = a;
            else {
                var b;
                if (window.atob) {
                    var c = window.atob(a);
                    a = [];
                    for (var d = 0, e = 0; e < c.length; e++) {
                        for (var g = c.charCodeAt(e); 255 < g;) a[d++] = g & 255, g >>= 8;
                        a[d++] = g
                    }
                    b = a
                } else b = null;
                this.d = b;
                !this.d || !this.d.length ? t(this, this.O) : this.o()
            }
        } catch (h) {
            u(this, h)
        }
    };
i = v.prototype;
i.N = [function() {}, function(a) {
    var b = w(a),
        c = w(a),
        d = a.a(b),
        b = x(a, b),
        e = x(a, c);
    e == a.g || e == a.l ? d = "" + d : 0 < b && (1 == b ? d &= 255 : 2 == b ? d &= 65535 : 4 == b && (d &= 4294967295));
    r(a, c, d)
}, function(a) {
    var b = w(a),
        c = x(a, b);
    if (0 < c) {
        for (var d = 0, e = 0; e < c; e++) d = d << 8 | w(a);
        r(a, b, d)
    } else if (c != a.r) {
        d = w(a) << 8 | w(a);
        if (c == a.g) if (c = "", a.c[a.s] != f) for (var g = a.a(a.s), e = 0; e < d; e++) var h = g[w(a) << 8 | w(a)],
            c = c + h;
        else {
            c = Array(d);
            for (e = 0; e < d; e++) c[e] = w(a);
            e = c;
            d = [];
            for (g = c = 0; c < e.length;) if (h = e[c++], 128 > h) d[g++] = String.fromCharCode(h);
            else if (191 < h && 224 > h) {
                var l = e[c++];
                d[g++] = String.fromCharCode((h & 31) << 6 | l & 63)
            } else {
                var l = e[c++],
                    k = e[c++];
                d[g++] = String.fromCharCode((h & 15) << 12 | (l & 63) << 6 | k & 63)
            }
            c = d.join("")
        } else {
            c = Array(d);
            for (e = 0; e < d; e++) c[e] = w(a)
        }
        r(a, b, c)
    }
}, function(a) {
    w(a)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a),
        b = a.a(b),
        c = a.a(c);
    r(a, d, b[c])
}, function(a) {
    var b = w(a),
        c = w(a),
        b = a.a(b);
    r(a, c, n(b))
}, function(a) {
    var b = w(a),
        c = w(a),
        d = a.a(b);
    x(a, b) == a.g && (d = q(d));
    b = d;
    for (d = 0; 12 > d; d++) b.push(0);
    for (var e = 2654435769, g = 2654435769, h = 314159265, d = 0; d < b.length - 11; d += 12) e += y(b, d), g += y(b, d + 4), h += y(b, d + 8), e -= g, e -= h, e ^= h >>> 13, g -= h, g -= e, g ^= e << 8, h -= e, h -= g, h ^= g >>> 13, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 12, g -= h, g -= e, g ^= e << 16, h -= e, h -= g, h ^= g >>> 5, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 3, g -= h, g -= e, g ^= e << 10, h -= e, h -= g, h ^= g >>> 15;
    r(a, c, h)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = x(a, b),
        e = x(a, c);
    d == a.g && e == a.g ? (a.c[c] == f && r(a, c, ""), r(a, c, a.a(c) + a.a(b))) : e == a.l && (0 > d ? (b = a.a(b), d == a.g && (b = q("" + b)), (c == a.f || c == a.h || c == a.m) && z(a, c, A(b.length, 2)), z(a, c, b)) : 0 < d && (b = a.a(b), z(a, c, A(b, d))))
}, function(a) {
    var b = w(a),
        c = w(a);
    r(a, c, eval(a.a(b)))
}, function(a) {
    var b = w(a),
        c = w(a);
    r(a, c, a.a(c) - a.a(b))
}, function(a) {
    var b = B(a),
        c = b.K.apply(b.self, b.z);
    r(a, b.L, c)
}, function(a) {
    var b = w(a),
        c = w(a);
    r(a, c, a.a(c) % a.a(b))
}, function(a) {
    var b = a.a(w(a)),
        c = a.a(w(a)),
        d = a.a(w(a)),
        e = a.a(w(a));
    b.addEventListener(c, C(a, d, e), false)
}, function(a) {
    var b = a.a(w(a)),
        c = a.a(w(a));
    a = a.a(w(a));
    b[c] = a
}, function() {}, function(a) {
    var b = w(a),
        c = w(a);
    r(a, c, a.a(c) + a.a(b))
}, function(a) {
    var b = w(a),
        c = w(a);
    0 != a.a(b) && r(a, a.b, a.a(c))
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    a.a(b) == a.a(c) && r(a, d, a.a(d) + 1)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    a.a(b) > a.a(c) && r(a, d, a.a(d) + 1)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    r(a, d, a.a(b) << c)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    r(a, d, a.a(b) | a.a(c))
}, function(a) {
    var b = a.a(w(a));
    a.G.push(a.c.slice());
    a.c[a.b] = f;
    r(a, a.b, b)
}, function(a) {
    var b = a.G.pop();
    if (b) {
        for (var c = w(a); 0 < c; c--) {
            var d = w(a);
            b[d] = a.c[d]
        }
        a.c = b
    } else r(a, a.b, a.d.length)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    r(a, d, (a.a(b) in a.a(c)) + 0)
}, function(a) {
    var b = w(a),
        c = a.a(w(a)),
        d = a.a(w(a));
    r(a, b, C(a, c, d))
}, function(a) {
    var b = w(a),
        c = w(a);
    r(a, c, a.a(c) * a.a(b))
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    r(a, d, a.a(b) >> c)
}, function(a) {
    var b = w(a),
        c = w(a),
        d = w(a);
    r(a, d, a.a(b) || a.a(c))
}, function(a) {
    var b = B(a),
        c = b.z,
        d = b.self,
        e = b.K,
        g = "";
    switch (c.length) {
    case 0:
        g = new d[e];
        break;
    case 1:
        g = new d[e](c[0]);
        break;
    case 2:
        g = new d[e](c[0], c[1]);
        break;
    case 3:
        g = new d[e](c[0], c[1], c[2]);
        break;
    default:
        t(a, a.u);
        return
    }
    r(a, b.L, g)
}];
i.b = 0;
i.n = 1;
i.i = 2;
i.j = 3;
i.f = 4;
i.s = 5;
i.J = 6;
i.D = 7;
i.H = 8;
i.C = 9;
i.F = 10;
i.p = 11;
i.A = 12;
i.B = 13;
i.h = 14;
i.m = 15;
i.k = 16;
i.Y = 17;
i.P = 15;
i.W = 12;
i.Q = 10;
i.R = 42;
i.aa = 0;
i.Z = 1;
i.$ = 2;
i.ba = 3;
i.da = 5;
i.ca = 6;
i.g = -1;
i.l = -2;
i.r = -3;
i.O = 17;
i.M = 21;
i.u = 22;
i.fa = 30;
i.U = 31;
i.X = 32;
i.q = {};
i.v = "caller";
i.S = 0;
var u = function(a, b) {
        a.e = ("E:" + b.message + ":" + b.stack).substring(0, 2048)
    },
    s = function() {
        return 255 * Math.random() | 0
    },
    D = function(a, b, c) {
        for (var d = 0; 84941944608 != d;) a += (b << 4 ^ b >>> 5) + b ^ d + c[d & 3], d += 2654435769, b += (a << 4 ^ a >>> 5) + a ^ d + c[d >>> 11 & 3];
        return [a >>> 24, a >> 16 & 255, a >> 8 & 255, a & 255, b >>> 24, b >> 16 & 255, b >> 8 & 255, b & 255]
    },
    y = function(a, b) {
        return a[b] << 24 | a[b + 1] << 16 | a[b + 2] << 8 | a[b + 3]
    },
    A = function(a, b) {
        for (var c = [], d = b - 1; 0 <= d; d--) c[b - 1 - d] = a >> 8 * d & 255;
        return c
    },
    z = function(a, b, c, d) {
        var e = a.a(b);
        b = b == a.h ?
        function(b) {
            var c = e.length,
                d = c & 7;
            if (4 == d) {
                var k = [0, 0, 0, a.a(a.B)];
                e.ea = D(y(e, c - 8), y(e, c - 4), k)
            }
            e.push(e.ea[d] ^ b)
        } : function(a) {
            e.push(a)
        };
        d && b(d & 255);
        for (d = 0; d < c.length; d++) b(c[d])
    },
    r = function(a, b, c) {
        if (b == a.b || b == a.j) if (a.c[b]) a.c[b].T(c);
        else {
            var d = c;
            c = function() {
                return e()
            };
            var e = function() {
                    return d
                };
            c.T = function(a) {
                d = a
            };
            a.c[b] = c
        } else {
            var g = a.a,
                h = function() {
                    for (var a = l[k.v], b = a === g, a = a && a[k.v], c = 0; a && a != k.o && a != k.I && a != v && 20 > c;) c++, a = a[k.v];
                    return h[!b + !a + (c >> 2)]
                },
                l = function() {
                    return h()
                },
                k = v.prototype;
            h[k.S] = c;
            a.c[b] = l
        }
        b == a.n && (a.t = f, r(a, a.b, a.a(a.b) + 4))
    };
v.prototype.a = function(a) {
    var b = this.c[a];
    if (b === f) throw t(this, this.fa, 0, a), this.q;
    return b()
};
var t = function(a, b, c, d) {
        var e = a.a(a.j);
        b = [b, e >> 8 & 255, e & 255];
        d != f && b.push(d);
        r(a, a.i, b);
        a.d && r(a, a.b, a.d.length);
        c && (d = "", c.message && (d = c.message.toString()), c.stack != f && (d += ": " + c.stack), d = d.substring(0, 2048), d = q(d), z(a, a.h, A(d.length, 2).concat(d), a.W))
    },
    w = function(a) {
        var b = a.a(a.b);
        if (b >= a.d.length) throw t(a, a.U, 0, b), a.q;
        a.t == f && (a.t = y(a.d, b - 4), a.w = f);
        if (a.w != b >> 3) {
            a.w = b >> 3;
            var c = [0, 0, 0, a.a(a.n)];
            a.V = D(a.t, a.w, c)
        }
        r(a, a.b, b + 1);
        return a.d[b] ^ a.V[b % 8]
    },
    x = function(a, b) {
        if (b <= a.Y) return b == a.i || b == a.f || b == a.h || b == a.m ? a.l : b == a.J || b == a.D || b == a.C || b == a.F || b == a.k ? a.r : b == a.s ? a.g : 4;
        var c = b % a.ca;
        return c == a.aa ? 1 : c == a.Z ? 2 : c == a.$ ? 4 : c == a.da ? a.g : c == a.ba ? a.l : a.r
    },
    B = function(a) {
        var b = {};
        b.K = a.a(w(a));
        b.L = w(a);
        var c = w(a) - 1;
        b.self = a.a(w(a));
        for (b.z = []; 0 < c;) c--, b.z.push(a.a(w(a)));
        return b
    },
    C = function(a, b, c) {
        return function() {
            r(a, a.J, arguments);
            r(a, a.k, c);
            return E(a, b)
        }
    },
    E = function(a, b) {
        var c = a.a(a.b);
        a.d && c < a.d.length && (r(a, a.j, c), t(a, a.X));
        r(a, a.b, b);
        return a.o()
    };
v.prototype.o = function() {
    this.G = [];
    try {
        var a = this.d.length;
        0 < this.a(this.i).length && r(this, this.b, a);
        for (var b = this.N, c = 0;
        (c = this.a(this.b)) < a;) try {
            r(this, this.j, c);
            var d = w(this),
                e = b[d];
            e ? e(this) : t(this, this.M, 0, d)
        } catch (g) {
            if (g != this.q) {
                var h = this.a(this.p);
                h ? (r(this, h, g), r(this, this.p, 0)) : t(this, this.u, g)
            }
        }
    } catch (l) {
        try {
            t(this, this.u, l)
        } catch (k) {
            u(this, k)
        }
    }
    return this.a(this.k)
};
v.prototype.I = function() {
    if (this.e) return this.e;
    try {
        this.c[this.H] && E(this, this.a(this.H));
        var a = this.a(this.i);
        0 < a.length && z(this, this.f, A(a.length, 2).concat(a), this.P);
        var b = this.a(this.A),
            b = b - (this.a(this.f).length + 4),
            c = this.a(this.h);
        4 < c.length && (b -= c.length + 3);
        if (0 < b) {
            for (var d = Array(b), e = 0; e < b; e++) d[e] = s();
            z(this, this.f, A(b, 2).concat(d), this.Q)
        }
        4 < c.length && z(this, this.f, A(c.length, 2).concat(c), this.R);
        var g = [3].concat(this.a(this.f)),
            h;
        var l;
        window.btoa ? (l = window.btoa(String.fromCharCode.apply(null, g)), h = l = l.replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "")) : h = null;
        if (this.e = h) this.e = "!" + this.e;
        else {
            this.e = "";
            for (e = 0; e < g.length; e++) {
                var k = g[e].toString(16);
                1 == k.length && (k = "0" + k);
                this.e += k
            }
        }
    } catch (F) {
        u(this, F)
    }
    return this.e
};
v.prototype.ga = function(a) {
    a(this.I())
};
try {
    window.addEventListener("unload", function() {}, false)
} catch (G) {}
m("botguard.bg", v);
m("botguard.bg.prototype.invoke", v.prototype.ga);

#53 JavaScript::Eval (size: 8335, repeated: 2)

var f = void 0,
    j, k = this,
    n = function(a, b) {
        var c = a.split("."),
            d = k;
        !(c[0] in d) && d.execScript && d.execScript("var " + c[0]);
        for (var e; c.length && (e = c.shift());)!c.length && b !== f ? d[e] = b : d = d[e] ? d[e] : d[e] = {}
    },
    p = function(a) {
        var b = typeof a;
        if ("object" == b) if (a) {
            if (a instanceof Array) return "array";
            if (a instanceof Object) return b;
            var c = Object.prototype.toString.call(a);
            if ("[object Window]" == c) return "object";
            if ("[object Array]" == c || "number" == typeof a.length && "undefined" != typeof a.splice && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("splice")) return "array";
            if ("[object Function]" == c || "undefined" != typeof a.call && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("call")) return "function"
        } else return "null";
        else if ("function" == b && "undefined" == typeof a.call) return "object";
        return b
    },
    q = Date.now ||
function() {
    return +new Date
};
new function() {
    q()
};
var r = function(a) {
        a = a.replace(/\r\n/g, "\n");
        for (var b = [], c = 0, d = 0; d < a.length; d++) {
            var e = a.charCodeAt(d);
            128 > e ? b[c++] = e : (2048 > e ? b[c++] = e >> 6 | 192 : (b[c++] = e >> 12 | 224, b[c++] = e >> 6 & 63 | 128), b[c++] = e & 63 | 128)
        }
        return b
    };
var w = function(a) {
        try {
            if (this.c = [], s(this, this.b, 0), s(this, this.j, 0), s(this, this.n, 0), s(this, this.i, []), s(this, this.f, []), s(this, this.D, {}), s(this, this.C, "object" == typeof window ? window : k), s(this, this.F, this), s(this, this.p, 0), s(this, this.A, 0), s(this, this.B, 0), s(this, this.h, [t(), t(), t(), t()]), s(this, this.m, []), s(this, this.k, {}), a && "!" == a[0]) this.e = a;
            else {
                var b;
                if (window.atob) {
                    var c = window.atob(a);
                    a = [];
                    for (var d = 0, e = 0; e < c.length; e++) {
                        for (var g = c.charCodeAt(e); 255 < g;) a[d++] = g & 255, g >>= 8;
                        a[d++] = g
                    }
                    b = a
                } else b = null;
                this.d = b;
                !this.d || !this.d.length ? u(this, this.O) : this.o()
            }
        } catch (h) {
            v(this, h)
        }
    };
j = w.prototype;
j.N = [function() {}, function(a) {
    var b = x(a),
        c = x(a),
        d = a.a(b),
        b = y(a, b),
        e = y(a, c);
    e == a.g || e == a.l ? d = "" + d : 0 < b && (1 == b ? d &= 255 : 2 == b ? d &= 65535 : 4 == b && (d &= 4294967295));
    s(a, c, d)
}, function(a) {
    var b = x(a),
        c = y(a, b);
    if (0 < c) {
        for (var d = 0, e = 0; e < c; e++) d = d << 8 | x(a);
        s(a, b, d)
    } else if (c != a.r) {
        d = x(a) << 8 | x(a);
        if (c == a.g) if (c = "", a.c[a.s] != f) for (var g = a.a(a.s), e = 0; e < d; e++) var h = g[x(a) << 8 | x(a)],
            c = c + h;
        else {
            c = Array(d);
            for (e = 0; e < d; e++) c[e] = x(a);
            e = c;
            d = [];
            for (g = c = 0; c < e.length;) if (h = e[c++], 128 > h) d[g++] = String.fromCharCode(h);
            else if (191 < h && 224 > h) {
                var m = e[c++];
                d[g++] = String.fromCharCode((h & 31) << 6 | m & 63)
            } else {
                var m = e[c++],
                    l = e[c++];
                d[g++] = String.fromCharCode((h & 15) << 12 | (m & 63) << 6 | l & 63)
            }
            c = d.join("")
        } else {
            c = Array(d);
            for (e = 0; e < d; e++) c[e] = x(a)
        }
        s(a, b, c)
    }
}, function(a) {
    x(a)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a),
        b = a.a(b),
        c = a.a(c);
    s(a, d, b[c])
}, function(a) {
    var b = x(a),
        c = x(a),
        b = a.a(b);
    s(a, c, p(b))
}, function(a) {
    var b = x(a),
        c = x(a),
        d = a.a(b);
    y(a, b) == a.g && (d = r(d));
    b = d;
    for (d = 0; 12 > d; d++) b.push(0);
    for (var e = 2654435769, g = 2654435769, h = 314159265, d = 0; d < b.length - 11; d += 12) e += z(b, d), g += z(b, d + 4), h += z(b, d + 8), e -= g, e -= h, e ^= h >>> 13, g -= h, g -= e, g ^= e << 8, h -= e, h -= g, h ^= g >>> 13, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 12, g -= h, g -= e, g ^= e << 16, h -= e, h -= g, h ^= g >>> 5, -1 > d && alert(e + g + h), e -= g, e -= h, e ^= h >>> 3, g -= h, g -= e, g ^= e << 10, h -= e, h -= g, h ^= g >>> 15;
    s(a, c, h)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = y(a, b),
        e = y(a, c);
    d == a.g && e == a.g ? (a.c[c] == f && s(a, c, ""), s(a, c, a.a(c) + a.a(b))) : e == a.l && (0 > d ? (b = a.a(b), d == a.g && (b = r("" + b)), (c == a.f || c == a.h || c == a.m) && A(a, c, B(b.length, 2)), A(a, c, b)) : 0 < d && (b = a.a(b), A(a, c, B(b, d))))
}, function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, eval(a.a(b)))
}, function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) - a.a(b))
}, function(a) {
    var b = C(a),
        c = b.K.apply(b.self, b.z);
    s(a, b.L, c)
}, function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) % a.a(b))
}, function(a) {
    var b = a.a(x(a)),
        c = a.a(x(a)),
        d = a.a(x(a)),
        e = a.a(x(a));
    b.addEventListener(c, D(a, d, e), false)
}, function(a) {
    var b = a.a(x(a)),
        c = a.a(x(a));
    a = a.a(x(a));
    b[c] = a
}, function() {}, function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) + a.a(b))
}, function(a) {
    var b = x(a),
        c = x(a);
    0 != a.a(b) && s(a, a.b, a.a(c))
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    a.a(b) == a.a(c) && s(a, d, a.a(d) + 1)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    a.a(b) > a.a(c) && s(a, d, a.a(d) + 1)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) << c)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) | a.a(c))
}, function(a) {
    var b = a.a(x(a));
    a.G.push(a.c.slice());
    a.c[a.b] = f;
    s(a, a.b, b)
}, function(a) {
    var b = a.G.pop();
    if (b) {
        for (var c = x(a); 0 < c; c--) {
            var d = x(a);
            b[d] = a.c[d]
        }
        a.c = b
    } else s(a, a.b, a.d.length)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, (a.a(b) in a.a(c)) + 0)
}, function(a) {
    var b = x(a),
        c = a.a(x(a)),
        d = a.a(x(a));
    s(a, b, D(a, c, d))
}, function(a) {
    var b = x(a),
        c = x(a);
    s(a, c, a.a(c) * a.a(b))
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) >> c)
}, function(a) {
    var b = x(a),
        c = x(a),
        d = x(a);
    s(a, d, a.a(b) || a.a(c))
}, function(a) {
    var b = C(a),
        c = b.z,
        d = b.self,
        e = b.K,
        g = "";
    switch (c.length) {
    case 0:
        g = new d[e];
        break;
    case 1:
        g = new d[e](c[0]);
        break;
    case 2:
        g = new d[e](c[0], c[1]);
        break;
    case 3:
        g = new d[e](c[0], c[1], c[2]);
        break;
    default:
        u(a, a.u);
        return
    }
    s(a, b.L, g)
}];
j.b = 0;
j.n = 1;
j.i = 2;
j.j = 3;
j.f = 4;
j.s = 5;
j.J = 6;
j.D = 7;
j.H = 8;
j.C = 9;
j.F = 10;
j.p = 11;
j.A = 12;
j.B = 13;
j.h = 14;
j.m = 15;
j.k = 16;
j.Y = 17;
j.P = 15;
j.W = 12;
j.Q = 10;
j.R = 42;
j.aa = 0;
j.Z = 1;
j.$ = 2;
j.ba = 3;
j.da = 5;
j.ca = 6;
j.g = -1;
j.l = -2;
j.r = -3;
j.O = 17;
j.M = 21;
j.u = 22;
j.fa = 30;
j.U = 31;
j.X = 32;
j.q = {};
j.v = "caller";
j.S = 0;
var v = function(a, b) {
        a.e = ("E:" + b.message + ":" + b.stack).substring(0, 2048)
    },
    t = function() {
        return 255 * Math.random() | 0
    },
    E = function(a, b, c) {
        for (var d = 0; 84941944608 != d;) a += (b << 4 ^ b >>> 5) + b ^ d + c[d & 3], d += 2654435769, b += (a << 4 ^ a >>> 5) + a ^ d + c[d >>> 11 & 3];
        return [a >>> 24, a >> 16 & 255, a >> 8 & 255, a & 255, b >>> 24, b >> 16 & 255, b >> 8 & 255, b & 255]
    },
    z = function(a, b) {
        return a[b] << 24 | a[b + 1] << 16 | a[b + 2] << 8 | a[b + 3]
    },
    B = function(a, b) {
        for (var c = [], d = b - 1; 0 <= d; d--) c[b - 1 - d] = a >> 8 * d & 255;
        return c
    },
    A = function(a, b, c, d) {
        var e = a.a(b);
        b = b == a.h ?
        function(b) {
            var c = e.length,
                d = c & 7;
            if (4 == d) {
                var l = [0, 0, 0, a.a(a.B)];
                e.ea = E(z(e, c - 8), z(e, c - 4), l)
            }
            e.push(e.ea[d] ^ b)
        } : function(a) {
            e.push(a)
        };
        d && b(d & 255);
        for (d = 0; d < c.length; d++) b(c[d])
    },
    s = function(a, b, c) {
        if (b == a.b || b == a.j) if (a.c[b]) a.c[b].T(c);
        else {
            var d = c;
            c = function() {
                return e()
            };
            var e = function() {
                    return d
                };
            c.T = function(a) {
                d = a
            };
            a.c[b] = c
        } else {
            var g = a.a,
                h = function() {
                    for (var a = m[l.v], b = a === g, a = a && a[l.v], c = 0; a && a != l.o && a != l.I && a != w && 20 > c;) c++, a = a[l.v];
                    return h[!b + !a + (c >> 2)]
                },
                m = function() {
                    return h()
                },
                l = w.prototype;
            h[l.S] = c;
            a.c[b] = m
        }
        b == a.n && (a.t = f, s(a, a.b, a.a(a.b) + 4))
    };
w.prototype.a = function(a) {
    var b = this.c[a];
    if (b === f) throw u(this, this.fa, 0, a), this.q;
    return b()
};
var u = function(a, b, c, d) {
        var e = a.a(a.j);
        b = [b, e >> 8 & 255, e & 255];
        d != f && b.push(d);
        s(a, a.i, b);
        a.d && s(a, a.b, a.d.length);
        c && (d = "", c.message && (d = c.message.toString()), c.stack != f && (d += ": " + c.stack), d = d.substring(0, 2048), d = r(d), A(a, a.h, B(d.length, 2).concat(d), a.W))
    },
    x = function(a) {
        var b = a.a(a.b);
        if (b >= a.d.length) throw u(a, a.U, 0, b), a.q;
        a.t == f && (a.t = z(a.d, b - 4), a.w = f);
        if (a.w != b >> 3) {
            a.w = b >> 3;
            var c = [0, 0, 0, a.a(a.n)];
            a.V = E(a.t, a.w, c)
        }
        s(a, a.b, b + 1);
        return a.d[b] ^ a.V[b % 8]
    },
    y = function(a, b) {
        if (b <= a.Y) return b == a.i || b == a.f || b == a.h || b == a.m ? a.l : b == a.J || b == a.D || b == a.C || b == a.F || b == a.k ? a.r : b == a.s ? a.g : 4;
        var c = b % a.ca;
        return c == a.aa ? 1 : c == a.Z ? 2 : c == a.$ ? 4 : c == a.da ? a.g : c == a.ba ? a.l : a.r
    },
    C = function(a) {
        var b = {};
        b.K = a.a(x(a));
        b.L = x(a);
        var c = x(a) - 1;
        b.self = a.a(x(a));
        for (b.z = []; 0 < c;) c--, b.z.push(a.a(x(a)));
        return b
    },
    D = function(a, b, c) {
        return function() {
            s(a, a.J, arguments);
            s(a, a.k, c);
            return F(a, b)
        }
    },
    F = function(a, b) {
        var c = a.a(a.b);
        a.d && c < a.d.length && (s(a, a.j, c), u(a, a.X));
        s(a, a.b, b);
        return a.o()
    };
w.prototype.o = function() {
    this.G = [];
    try {
        var a = this.d.length;
        0 < this.a(this.i).length && s(this, this.b, a);
        for (var b = null, c = 0;
        (c = this.a(this.b)) < a;) try {
            s(this, this.j, c);
            var d = x(this);
            (b = this.N[d]) ? b(this) : u(this, this.M, 0, d)
        } catch (e) {
            if (e != this.q) {
                var g = this.a(this.p);
                g ? (s(this, g, e), s(this, this.p, 0)) : u(this, this.u, e)
            }
        }
    } catch (h) {
        try {
            u(this, this.u, h)
        } catch (m) {
            v(this, m)
        }
    }
    return this.a(this.k)
};
w.prototype.I = function() {
    if (this.e) return this.e;
    try {
        this.c[this.H] && F(this, this.a(this.H));
        var a = this.a(this.i);
        0 < a.length && A(this, this.f, B(a.length, 2).concat(a), this.P);
        var b = this.a(this.A),
            b = b - (this.a(this.f).length + 4),
            c = this.a(this.h);
        4 < c.length && (b -= c.length + 3);
        if (0 < b) {
            for (var d = Array(b), e = 0; e < b; e++) d[e] = t();
            A(this, this.f, B(b, 2).concat(d), this.Q)
        }
        4 < c.length && A(this, this.f, B(c.length, 2).concat(c), this.R);
        var g = [3].concat(this.a(this.f)),
            h;
        var m;
        window.btoa ? (m = window.btoa(String.fromCharCode.apply(null, g)), h = m = m.replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "")) : h = null;
        if (this.e = h) this.e = "!" + this.e;
        else {
            this.e = "";
            for (e = 0; e < g.length; e++) {
                var l = g[e].toString(16);
                1 == l.length && (l = "0" + l);
                this.e += l
            }
        }
    } catch (G) {
        v(this, G)
    }
    return this.e
};
w.prototype.ga = function(a) {
    a(this.I())
};
try {
    window.addEventListener("unload", function() {}, false)
} catch (H) {}
n("botguard.bg", w);
n("botguard.bg.prototype.invoke", w.prototype.ga);

#54 JavaScript::Eval (size: 1, repeated: 3)

w

#55 JavaScript::Eval (size: 6, repeated: 2)

window

#56 JavaScript::Eval (size: 1, repeated: 2)

x

#57 JavaScript::Eval (size: 1, repeated: 1)

y

#58 JavaScript::Eval (size: 1, repeated: 2)

z

Executed Writes (17)

#1 JavaScript::Write (size: 615, repeated: 1)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="http://feedjit.com/style/1012/serve/?isIE=0&vv=955&tft=3&dd=0&wid=515b92b725ee59c8&pid=0&proid=0&bc=FFFFFF&tc=000000&brd1=012B6B&lnk=135D9E&hc=FFFFFF&hfc=2853A8&btn=C99700&ww=200&went=10" media="screen" /></head><body style="margin: 0; padding: 0; background-color: transparent;"><div id="iframeDIV" style="width: 210px; padding: 0; border-width: 0; margin: 0;"></div></body></html>

#2 JavaScript::Write (size: 503, repeated: 1)

<!doctype html><html><body><script>google_ad_client="ca-pub-9931823083404167";google_ad_height=250;google_ad_host="pub-1556223355139109";google_ad_slot="2088340493";google_ad_width=300;google_show_ads_impl=true;google_unique_id=3;google_async_iframe_id="aswift_2";google_ad_unit_key="1755188556";google_start_time=1352318658592;google_expand_experiment="none";google_bpp=5;</script><script src="http://pagead2.googlesyndication.com/pagead/js/r20121031/r20120730/show_ads_impl.js"></script></body></html>

#3 JavaScript::Write (size: 503, repeated: 1)

<!doctype html><html><body><script>google_ad_client="ca-pub-9931823083404167";google_ad_height=60;google_ad_host="pub-1556223355139109";google_ad_slot="0836738270";google_ad_width=468;google_show_ads_impl=true;google_unique_id=1;google_async_iframe_id="aswift_0";google_ad_unit_key="3150244986";google_start_time=1352318657432;google_expand_experiment="none";google_bpp=14;</script><script src="http://pagead2.googlesyndication.com/pagead/js/r20121031/r20120730/show_ads_impl.js"></script></body></html>

#4 JavaScript::Write (size: 502, repeated: 1)

<!doctype html><html><body><script>google_ad_client="ca-pub-9931823083404167";google_ad_height=60;google_ad_host="pub-1556223355139109";google_ad_slot="0836738270";google_ad_width=468;google_show_ads_impl=true;google_unique_id=2;google_async_iframe_id="aswift_1";google_ad_unit_key="3611342692";google_start_time=1352318657603;google_expand_experiment="none";google_bpp=6;</script><script src="http://pagead2.googlesyndication.com/pagead/js/r20121031/r20120730/show_ads_impl.js"></script></body></html>

#5 JavaScript::Write (size: 54, repeated: 2)

<!doctype html><html><head></head><body></body></html>

#6 JavaScript::Write (size: 124, repeated: 1)

<a id="b-query-icon" onclick="document.getElementById(&quot;searchthis&quot;).submit();" title="Søk i denne bloggen"></a>

#7 JavaScript::Write (size: 944, repeated: 1)

<div id="FJ_FL_Cont" style="position: relative; width: 1px; height: 1px; border-width: 0; padding: 0; margin: 0; position: relative;"><div id="FJ_FL_Cover" style="position: absolute; left: 0px; top: 0px; width: 1px; height: 1px; background-color: #F00; z-index: 2;"></div><object id="FJ_FL_Obj" type="application/x-shockwave-flash" data="http://feedjit.com/flash/fj.swf" width="1" height="1" style="position: absolute; left: 0px; top: 0px; width: 1px; height: 1px; z-index: 1;"><param name="wmode" value="transparent"><param name="AllowScriptAccess" value="always" /><param name="movie" value="http://feedjit.com/flash/fj.swf" /></object></div><style type="text/css">a.fjfcl74:visited {color: #FCC; font-size: 1px; font-family: Arial, sans-serif;} a.fjfcl74:link {color: #CCC; font-size: 1px; font-family: Arial, sans-serif;}</style><div id="FJ_TF_Cont" style="position: relative; padding: 0; margin: 0; border-width: 0px; width: 200px;"></div>

#8 JavaScript::Write (size: 932, repeated: 1)

<iframe allowtransparency=true frameborder=0 height=250 hspace=0 id=google_ads_frame3 marginheight=0 marginwidth=0 name=google_ads_frame3 scrolling=no src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&output=html&h=250&slotname=2088340493&w=300&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318658592&bpp=5&shv=r20121031&jsv=r20110914&prev_slotnames=0836738270%2C0836738270&correlator=1352318657975&frm=20&adk=1755188556&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=751&ady=282&biw=1159&bih=778&oid=3&fu=0&ifi=3&dtd=1382&xpc=1g6ADsVW8y&p=http%3A//soccer-free-kick.blogspot.no" style="left:0;position:absolute;top:0" vspace=0 width=300></iframe>

#9 JavaScript::Write (size: 891, repeated: 1)

<iframe allowtransparency=true frameborder=0 height=60 hspace=0 id=google_ads_frame1 marginheight=0 marginwidth=0 name=google_ads_frame1 scrolling=no src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&output=html&h=60&slotname=0836738270&w=468&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318657432&bpp=14&shv=r20121031&jsv=r20110914&correlator=1352318657975&frm=20&adk=3150244986&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=581&ady=30&biw=1159&bih=778&oid=3&fu=0&ifi=1&dtd=1008&xpc=399Sd6Q95C&p=http%3A//soccer-free-kick.blogspot.no" style="left:0;position:absolute;top:0" vspace=0 width=468></iframe>

#10 JavaScript::Write (size: 916, repeated: 1)

<iframe allowtransparency=true frameborder=0 height=60 hspace=0 id=google_ads_frame2 marginheight=0 marginwidth=0 name=google_ads_frame2 scrolling=no src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&output=html&h=60&slotname=0836738270&w=468&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318657603&bpp=6&shv=r20121031&jsv=r20110914&prev_slotnames=0836738270&correlator=1352318657975&frm=20&adk=3611342692&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=95&ady=190&biw=1159&bih=778&oid=3&fu=0&ifi=2&dtd=1903&xpc=YqkicKnxHO&p=http%3A//soccer-free-kick.blogspot.no" style="left:0;position:absolute;top:0" vspace=0 width=468></iframe>

#11 JavaScript::Write (size: 769, repeated: 1)

<ins style="display:inline-table;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px"><ins id="aswift_2_anchor" style="display:block;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px"><iframe allowtransparency="true" frameborder="0" height="250" hspace="0" marginwidth="0" marginheight="0" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){w.location.replace(h)}}" scrolling="no" vspace="0" width="300" id=aswift_2 name=aswift_2 style="left:0;position:absolute;top:0;" ></iframe></ins></ins>

#12 JavaScript::Write (size: 766, repeated: 1)

<ins style="display:inline-table;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px"><ins id="aswift_0_anchor" style="display:block;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px"><iframe allowtransparency="true" frameborder="0" height="60" hspace="0" marginwidth="0" marginheight="0" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){w.location.replace(h)}}" scrolling="no" vspace="0" width="468" id=aswift_0 name=aswift_0 style="left:0;position:absolute;top:0;" ></iframe></ins></ins>

#13 JavaScript::Write (size: 766, repeated: 1)

<ins style="display:inline-table;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px"><ins id="aswift_1_anchor" style="display:block;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px"><iframe allowtransparency="true" frameborder="0" height="60" hspace="0" marginwidth="0" marginheight="0" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){w.location.replace(h)}}" scrolling="no" vspace="0" width="468" id=aswift_1 name=aswift_1 style="left:0;position:absolute;top:0;" ></iframe></ins></ins>

#14 JavaScript::Write (size: 86, repeated: 3)

<script src="http://pagead2.googlesyndication.com/pagead/expansion_embed.js"></script>

#15 JavaScript::Write (size: 84, repeated: 1)

<script src='http://www.google-analytics.com/ga.js' type='text/javascript'></script>

#16 JavaScript::Write (size: 96, repeated: 1)

<script type="text/javascript" src="http://resources.infolinks.com/js/310.3.1e/ice.js"></script>

#17 JavaScript::Write (size: 105, repeated: 3)

<script>google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);</script>


HTTP Transactions (116)


Request Response
GET /2012/11/sporting-kc-vs-houston-dynamo-live.html HTTP/1.1

Host: soccer-free-kick.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html; charset=UTF-8
Location: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 20:04:15 GMT
Expires: Wed, 07 Nov 2012 20:04:15 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 219
Server: GSE
GET /2012/11/sporting-kc-vs-houston-dynamo-live.html HTTP/1.1

Host: soccer-free-kick.blogspot.no

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Expires: Wed, 07 Nov 2012 20:04:15 GMT
Date: Wed, 07 Nov 2012 20:04:15 GMT
Cache-Control: private, max-age=0
Last-Modified: Wed, 07 Nov 2012 19:52:36 GMT
Etag: &quot;73f2c2f3-ad3f-486e-89a8-8363dac3d2d4&quot;
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Length: 13097
Server: GSE
GET /js/infolinks_main.js HTTP/1.1

Host: resources.infolinks.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Cache-Control: max-age=3600
Date: Wed, 07 Nov 2012 20:04:15 GMT
Etag: &quot;2d8132-786-4cd5816f7d740+gzip&quot;
Expires: Wed, 07 Nov 2012 21:04:15 GMT
Last-Modified: Wed, 31 Oct 2012 10:08:53 GMT
Server: ECS (arn/46E3)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 1258
GET /static/v1/widgets/1937454905-widget_css_bundle.css HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Wed, 31 Oct 2012 18:13:35 GMT
Date: Thu, 01 Nov 2012 01:09:10 GMT
Expires: Fri, 01 Nov 2013 01:09:10 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 4777
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 586505
GET /pagead/show_ads.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
If-None-Match: 15032493890200785914
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 11458789474174950078
Date: Wed, 07 Nov 2012 20:01:17 GMT
Expires: Wed, 07 Nov 2012 21:01:17 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 5118
X-XSS-Protection: 1; mode=block
Age: 178
Cache-Control: public, max-age=3600
GET /img/icon18_wrench_allbkg.png HTTP/1.1

Host: img1.blogblog.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 30 Oct 2012 18:02:52 GMT
Date: Thu, 01 Nov 2012 01:09:03 GMT
Expires: Thu, 08 Nov 2012 01:09:03 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 475
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 586512
GET /js/300/addthis_widget.js HTTP/1.1

Host: s7.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Last-Modified: Thu, 01 Nov 2012 12:00:06 GMT
Etag: &quot;30346b-1b10-4cd6dc28d1d80&quot;
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2715
Date: Wed, 07 Nov 2012 20:04:15 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /static/v1/jsbin/1679981721-iframe_colorizer.js HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Fri, 02 Nov 2012 09:15:54 GMT
Date: Mon, 05 Nov 2012 01:54:11 GMT
Expires: Tue, 05 Nov 2013 01:54:11 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 2672
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 238204
GET /img/icon18_edit_allbkg.gif HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Wed, 31 Oct 2012 18:13:35 GMT
Date: Thu, 01 Nov 2012 01:09:58 GMT
Expires: Thu, 08 Nov 2012 01:09:58 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 162
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 586457
GET /cse/brand?form=cse-search-box&lang=in HTTP/1.1

Host: www.google.co.id
GET /cse/brand?form=cse-search-box&amp;lang=in HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Wed, 07 Nov 2012 19:31:54 GMT
Expires: Fri, 09 Nov 2012 19:31:54 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: pfe
Content-Length: 1124
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Cache-Control: public, max-age=172800
Age: 1941
GET /favicon.ico HTTP/1.1

Host: soccer-free-kick.blogspot.no

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: image/x-icon
Expires: Wed, 07 Nov 2012 20:04:15 GMT
Date: Wed, 07 Nov 2012 20:04:15 GMT
Cache-Control: private, max-age=86400
Last-Modified: Wed, 07 Nov 2012 19:52:36 GMT
Etag: &quot;73f2c2f3-ad3f-486e-89a8-8363dac3d2d4&quot;
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 3638
Server: GSE
GET /-C4GU-cHQ8v8/AAAAAAAAAAI/AAAAAAAAABM/JeSO4Hhqcr8/s512-c/photo.jpg HTTP/1.1

Host: lh6.googleusercontent.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/jpeg
Access-Control-Allow-Origin: *
Etag: &quot;v13&quot;
Expires: Thu, 08 Nov 2012 20:04:15 GMT
Cache-Control: public, max-age=86400, no-transform
Content-Disposition: inline;filename=&quot;&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:15 GMT
Server: fife
Content-Length: 87385
X-XSS-Protection: 1; mode=block
GET /dyn-css/authorization.css?targetBlogID=7275579736858172418&zx=73f2c2f3-ad3f-486e-89a8-8363dac3d2d4 HTTP/1.1

Host: www.blogger.com
GET /dyn-css/authorization.css?targetBlogID=7275579736858172418&amp;zx=73f2c2f3-ad3f-486e-89a8-8363dac3d2d4 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css; charset=UTF-8
P3P: CP=&quot;This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=151657 for more info.&quot;
Set-Cookie: blogger_TID=fe517621ad2da489; HttpOnly
Cache-Control: private, max-age=1800
Pragma: no-cache
Expires: Wed, 07 Nov 2012 20:04:16 GMT
Date: Wed, 07 Nov 2012 20:04:16 GMT
Last-Modified: Wed, 07 Nov 2012 20:04:16 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 21
Server: GSE
GET /_j82W7u9kZbs/S28qqa1RpaI/AAAAAAAABJo/AcdcFAqiKPA/s1600/background.gif HTTP/1.1

Host: 4.bp.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Access-Control-Allow-Origin: *
Etag: &quot;v49a&quot;
Expires: Thu, 08 Nov 2012 19:25:18 GMT
Content-Disposition: inline;filename=&quot;background.gif&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 19:25:18 GMT
Server: fife
Content-Length: 760
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400, no-transform
Age: 2339
GET /_j82W7u9kZbs/S28nNtyOhiI/AAAAAAAABJY/NAItyDP_kSc/s1600/divider.gif HTTP/1.1

Host: 2.bp.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Access-Control-Allow-Origin: *
Etag: &quot;v496&quot;
Expires: Wed, 31 Oct 2012 13:56:24 GMT
Content-Disposition: inline;filename=&quot;divider.gif&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 19:18:42 GMT
Server: fife
Content-Length: 51
X-XSS-Protection: 1; mode=block
Age: 2735
Cache-Control: public, max-age=86400, no-transform
GET /pagead/js/r20121031/r20120730/show_ads_impl.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 5206557930112377484
Date: Tue, 06 Nov 2012 19:40:17 GMT
Expires: Tue, 20 Nov 2012 19:40:17 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 19221
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=1209600
Age: 87840
GET /static/v1/widgets/2000000996-widgets.js HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Fri, 02 Nov 2012 09:15:54 GMT
Date: Sun, 04 Nov 2012 19:38:07 GMT
Expires: Mon, 04 Nov 2013 19:38:07 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 30236
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 260770
GET /_j82W7u9kZbs/S28n4yYZg0I/AAAAAAAABJg/oN8plO-G7_w/s800/featured.gif HTTP/1.1

Host: 2.bp.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Access-Control-Allow-Origin: *
Etag: &quot;v498&quot;
Expires: Fri, 02 Nov 2012 20:21:48 GMT
Content-Disposition: inline;filename=&quot;featured.gif&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 19:12:28 GMT
Server: fife
Content-Length: 221
X-XSS-Protection: 1; mode=block
Age: 3110
Cache-Control: public, max-age=86400, no-transform
GET /pagead/expansion_embed.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 2372832783343406230
Date: Wed, 07 Nov 2012 01:11:54 GMT
Expires: Thu, 08 Nov 2012 01:11:54 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 25450
X-XSS-Protection: 1; mode=block
Age: 67943
Cache-Control: public, max-age=86400
GET /js/310.3.1e/ice.js HTTP/1.1

Host: resources.infolinks.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Cache-Control: max-age=2592000
Date: Wed, 07 Nov 2012 20:04:18 GMT
Etag: &quot;340846-219fc-4cd5732dc7480+gzip&quot;
Expires: Fri, 07 Dec 2012 20:04:18 GMT
Last-Modified: Wed, 31 Oct 2012 09:05:06 GMT
Server: ECS (arn/46F8)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 55706
GET /_j82W7u9kZbs/S28nNGJZ-NI/AAAAAAAABJI/cRBal71eVR8/s800/search.gif HTTP/1.1

Host: 3.bp.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Access-Control-Allow-Origin: *
Etag: &quot;v492&quot;
Expires: Fri, 02 Nov 2012 01:08:35 GMT
Content-Disposition: inline;filename=&quot;search.gif&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 19:20:52 GMT
Server: fife
Content-Length: 1320
X-XSS-Protection: 1; mode=block
Age: 2606
Cache-Control: public, max-age=86400, no-transform
GET /comment-iframe.g?blogID=7275579736858172418&postID=883872048625569582 HTTP/1.1

Host: www.blogger.com
GET /comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: CP=&quot;This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=151657 for more info.&quot;
Set-Cookie: blogger_TID=441b93c8893ea5d0; HttpOnly S=blogger=f-1wTiCMTHm57wv8QEQytQ; Domain=.blogger.com; Path=/; HttpOnly
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Wed, 07 Nov 2012 20:04:18 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Length: 2280
Server: GSE
GET /static/v1/v-css/4124270156-cmtfp.css HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 30 Oct 2012 18:02:52 GMT
Date: Thu, 01 Nov 2012 01:09:10 GMT
Expires: Fri, 01 Nov 2013 01:09:10 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 2776
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 586508
GET /static/v1/jsbin/2635386223-cmt.js HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sun, 04 Nov 2012 20:40:08 GMT
Date: Mon, 05 Nov 2012 01:53:36 GMT
Expires: Tue, 05 Nov 2013 01:53:36 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 25717
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 238242
GET /js/plusone.js HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Etag: &quot;99cef75a216e7271081f480fb640e7fe&quot;
Expires: Wed, 07 Nov 2012 20:04:18 GMT
Date: Wed, 07 Nov 2012 20:04:18 GMT
Cache-Control: private, max-age=1800
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /pagead/osd.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
If-None-Match: 13350759849962699205
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 6549576333968007708
Date: Wed, 07 Nov 2012 19:09:12 GMT
Expires: Wed, 07 Nov 2012 20:09:12 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 5986
X-XSS-Protection: 1; mode=block
Age: 3306
Cache-Control: public, max-age=3600
GET /img/blank.gif HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Tue, 30 Oct 2012 18:02:52 GMT
Date: Thu, 01 Nov 2012 01:09:02 GMT
Expires: Thu, 08 Nov 2012 01:09:02 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 43
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 586516
GET /img/cmt/close.gif HTTP/1.1

Host: www.blogger.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Wed, 31 Oct 2012 18:13:35 GMT
Date: Thu, 01 Nov 2012 01:09:05 GMT
Expires: Thu, 08 Nov 2012 01:09:05 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 347
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 586513
GET /js/bg/HURe8Qd9aS3y5LxAtzGLvG9-jVrafN4gnBojVo_AoBE.js HTTP/1.1

Host: www.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 23 Oct 2012 16:52:39 GMT
Date: Thu, 01 Nov 2012 01:08:54 GMT
Expires: Fri, 09 Nov 2012 01:08:54 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 3256
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=691200
Age: 586524
GET /_j82W7u9kZbs/S28nNewY7tI/AAAAAAAABJQ/s1vlYA859Jk/s800/sidehead.gif HTTP/1.1

Host: 3.bp.blogspot.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Access-Control-Allow-Origin: *
Etag: &quot;v494&quot;
Expires: Wed, 31 Oct 2012 13:51:11 GMT
Content-Disposition: inline;filename=&quot;sidehead.gif&quot;
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 19:19:40 GMT
Server: fife
Content-Length: 73
X-XSS-Protection: 1; mode=block
Age: 2678
Cache-Control: public, max-age=86400, no-transform
GET /cse/intl/in/images/google_custom_search_watermark.gif HTTP/1.1

Host: www.google.co.id

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Wed, 08 Feb 2012 18:07:38 GMT
Date: Wed, 07 Nov 2012 17:32:29 GMT
Expires: Fri, 09 Nov 2012 17:32:29 GMT
X-Content-Type-Options: nosniff
Server: pfe
Content-Length: 2067
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Cache-Control: public, max-age=172800
Age: 9109
GET /static/r07/core046.js HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:18 GMT
Last-Modified: Thu, 01 Nov 2012 11:59:11 GMT
Server: ECS (arn/46EB)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 48365
GET /static/r07/widget097.css HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:18 GMT
Last-Modified: Thu, 01 Nov 2012 11:59:12 GMT
Server: ECS (arn/46FD)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 21696
GET /colored.js HTTP/1.1

Host: widgets.amung.us

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 20:04:19 GMT
Last-Modified: Wed, 31 Oct 2012 07:27:04 GMT
Transfer-Encoding: chunked
Connection: close
Server: Apache/1.1 (Windows 4.00.950)
Expires: Fri, 07 Dec 2012 20:04:19 GMT
Cache-Control: max-age=2592000
Content-Encoding: gzip
GET /pagead/ads?client=ca-pub-9931823083404167&output=html&h=60&slotname=0836738270&w=468&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318657432&bpp=14&shv=r20121031&jsv=r20110914&correlator=1352318657975&frm=20&adk=3150244986&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=581&ady=30&biw=1159&bih=778&oid=3&fu=0&ifi=1&dtd=1008&xpc=399Sd6Q95C&p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 20:04:19 GMT
Server: cafe
Cache-Control: private
Content-Length: 11751
X-XSS-Protection: 1; mode=block
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14888
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 15:51:19 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Wed, 07 Nov 2012 13:11:20 GMT
Expires: Thu, 08 Nov 2012 01:11:20 GMT
Vary: Accept-Encoding
Age: 24779
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /comment-iframe-bg.g?bgresponse=js_disabled&bgint=HURe8Qd9aS3y5LxAtzGLvG9-jVrafN4gnBojVo_AoBE HTTP/1.1

Host: www.blogger.com
GET /comment-iframe-bg.g?bgresponse=js_disabled&amp;bgint=HURe8Qd9aS3y5LxAtzGLvG9-jVrafN4gnBojVo_AoBE HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: CP=&quot;This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=151657 for more info.&quot;
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Wed, 07 Nov 2012 20:04:19 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 4294
Server: GSE
GET /simgad/9706147675804193571 HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Mon, 10 Sep 2012 15:18:06 GMT
Date: Wed, 07 Nov 2012 20:04:19 GMT
Expires: Thu, 07 Nov 2013 20:04:19 GMT
Cache-Control: public, max-age=31536000
Access-Control-Allow-Origin: *
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 13879
X-XSS-Protection: 1; mode=block
GET /pagead/images/adchoices/icon.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
If-None-Match: 426692510519060060
HTTP/1.1 304 Not Modified

HTTP/1.1 304 Not Modified
Date: Wed, 07 Nov 2012 02:06:16 GMT
Expires: Thu, 08 Nov 2012 02:06:16 GMT
Etag: 426692510519060060
Age: 64683
Server: GFE/2.0
GET /tc.js HTTP/1.1

Host: cdn.tynt.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache
Etag: &quot;e90262a9b7f893f49e37312d301ae8d5:1351183796&quot;
Last-Modified: Mon, 22 Oct 2012 17:32:05 GMT
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 20:04:19 GMT
Content-Length: 3481
Connection: keep-alive
GET /serve/?vv=955&tft=3&dd=0&wid=515b92b725ee59c8&pid=0&proid=0&bc=FFFFFF&tc=000000&brd1=012B6B&lnk=135D9E&hc=FFFFFF&hfc=2853A8&btn=C99700&ww=200&went=10 HTTP/1.1

Host: feedjit.com
GET /serve/?vv=955&amp;tft=3&amp;dd=0&amp;wid=515b92b725ee59c8&amp;pid=0&amp;proid=0&amp;bc=FFFFFF&amp;tc=000000&amp;brd1=012B6B&amp;lnk=135D9E&amp;hc=FFFFFF&amp;hfc=2853A8&amp;btn=C99700&amp;ww=200&amp;went=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: nginx
Date: Wed, 07 Nov 2012 20:04:19 GMT
Last-Modified: Thu, 25 Oct 2012 01:57:19 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=5
Expires: Wed, 07 Nov 2012 20:04:19 GMT
Cache-Control: max-age=0
Content-Encoding: gzip
GET /pagead/images/green-check.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 17734124060297529551
Date: Wed, 07 Nov 2012 02:04:46 GMT
Expires: Thu, 08 Nov 2012 02:04:46 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 394
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 64773
GET /pagead/images/adchoices/no.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 15712854135137992826
Date: Wed, 07 Nov 2012 01:30:39 GMT
Expires: Thu, 08 Nov 2012 01:30:39 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 1019
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 66820
GET /pagead/images/google-logo.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 13513653691308934734
Date: Wed, 07 Nov 2012 01:56:22 GMT
Expires: Thu, 08 Nov 2012 01:56:22 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 4114
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 65277
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=423765922&utmhn=www.blogger.com&utmcs=UTF-8&utmsr=1176x885&utmvp=425x275&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Blogger%3A%20Free%20kick%20-%20Post%20a%20Comment&utmhid=699057658&utmr=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&utmp=%2Fcomment-iframe.g%3FblogID%3D7275579736858172418%26postID%3D883872048625569582&utmac=UA-18003-7&utmcc=__utma%3D150635877.1706709854.1352318660.1352318660.1352318660.1%3B%2B__utmz%3D150635877.1352318660.1.1.utmcsr%3Dsoccer-free-kick.blogspot.no%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=423765922&amp;utmhn=www.blogger.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=425x275&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Blogger%3A%20Free%20kick%20-%20Post%20a%20Comment&amp;utmhid=699057658&amp;utmr=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;utmp=%2Fcomment-iframe.g%3FblogID%3D7275579736858172418%26postID%3D883872048625569582&amp;utmac=UA-18003-7&amp;utmcc=__utma%3D150635877.1706709854.1352318660.1352318660.1352318660.1%3B%2B__utmz%3D150635877.1352318660.1.1.utmcsr%3Dsoccer-free-kick.blogspot.no%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/comment-iframe.g?blogID=7275579736858172418&amp;postID=883872048625569582
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:26:06 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 585493
Server: GFE/2.0
GET /pagead/js/r20121031/r20110914/abg.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 5725237117596964362
Date: Mon, 05 Nov 2012 23:22:33 GMT
Expires: Mon, 19 Nov 2012 23:22:33 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 327
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=1209600
Age: 160906
GET /pagead/images/x_button_dark.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 17994598330340787634
Date: Wed, 07 Nov 2012 02:08:11 GMT
Expires: Thu, 08 Nov 2012 02:08:11 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 158
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 64569
GET /pagead/images/x_button.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 11716456811728123628
Date: Wed, 07 Nov 2012 03:34:35 GMT
Expires: Thu, 08 Nov 2012 03:34:35 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 159
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 59385
GET /pagead/ads?client=ca-pub-9931823083404167&output=html&h=60&slotname=0836738270&w=468&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318657603&bpp=6&shv=r20121031&jsv=r20110914&prev_slotnames=0836738270&correlator=1352318657975&frm=20&adk=3611342692&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=95&ady=190&biw=1159&bih=778&oid=3&fu=0&ifi=2&dtd=1903&xpc=YqkicKnxHO&p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657603&amp;bpp=6&amp;shv=r20121031&amp;jsv=r20110914&amp;prev_slotnames=0836738270&amp;correlator=1352318657975&amp;frm=20&amp;adk=3611342692&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=95&amp;ady=190&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=1903&amp;xpc=YqkicKnxHO&amp;p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 20:04:20 GMT
Server: cafe
Cache-Control: private
Content-Length: 8126
X-XSS-Protection: 1; mode=block
GET /pagead/js/google_top_exp.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 6007316188164798789
Date: Wed, 07 Nov 2012 01:20:47 GMT
Expires: Thu, 08 Nov 2012 01:20:47 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 406
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 67413
GET /_/apps-static/_/js/gapi/plusone/rt=j/ver=zfq9BF98FFM.no./sv=1/am=!R7JhevK68w2IwTSFZw/d=1/rs=AItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;1509811931&quot;
Expires: Fri, 07 Dec 2012 02:13:02 GMT
Date: Wed, 07 Nov 2012 02:13:02 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 27849
Age: 64278
GET /js/inj_tf.css HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css
Server: nginx
Date: Wed, 07 Nov 2012 20:04:20 GMT
Last-Modified: Thu, 25 Oct 2012 01:57:28 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=5
Expires: Wed, 07 Nov 2012 20:04:20 GMT
Cache-Control: max-age=0
Content-Encoding: gzip
GET /pingjs/?k=jgfzot5svpz7&t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Cov&c=u&y=&a=0&r=880003 HTTP/1.1

Host: whos.amung.us
GET /pingjs/?k=jgfzot5svpz7&amp;t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Cov&amp;c=u&amp;y=&amp;a=0&amp;r=880003 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Wed, 07 Nov 2012 20:04:20 GMT
Transfer-Encoding: chunked
Connection: close
Set-Cookie: uid=CgH9D1CavsQDCiq3+NvoAg==; expires=Thu, 31-Dec-37 23:55:55 GMT; domain=whos.amung.us; path=/
Content-Encoding: gzip
GET /pagead/js/graphics.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657603&amp;bpp=6&amp;shv=r20121031&amp;jsv=r20110914&amp;prev_slotnames=0836738270&amp;correlator=1352318657975&amp;frm=20&amp;adk=3611342692&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=95&amp;ady=190&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=1903&amp;xpc=YqkicKnxHO&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 13356400148562476899
Date: Wed, 07 Nov 2012 01:11:42 GMT
Expires: Thu, 08 Nov 2012 01:11:42 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 2380
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 67958
GET /pagead/images/adchoices/no-000000.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657603&amp;bpp=6&amp;shv=r20121031&amp;jsv=r20110914&amp;prev_slotnames=0836738270&amp;correlator=1352318657975&amp;frm=20&amp;adk=3611342692&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=95&amp;ady=190&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=1903&amp;xpc=YqkicKnxHO&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 10045006027800995195
Date: Wed, 07 Nov 2012 00:38:36 GMT
Expires: Thu, 08 Nov 2012 00:38:36 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 801
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 69944
GET /pagead/drt/s?v=r20120211 HTTP/1.1

Host: googleads.g.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 19:38:11 GMT
Server: safe
Content-Length: 141
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=3600
Age: 1569
GET /flash/fj.swf HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx
Date: Wed, 07 Nov 2012 20:04:20 GMT
Content-Length: 1838
Last-Modified: Thu, 25 Oct 2012 01:57:38 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c92-72e&quot;
Expires: Wed, 07 Nov 2012 20:04:20 GMT
Cache-Control: max-age=0
Accept-Ranges: bytes
GET /colwid/?c=ffc20e000000 HTTP/1.1

Host: widgets.amung.us

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 07 Nov 2012 20:04:20 GMT
Transfer-Encoding: chunked
Connection: close
Content-Disposition: filename=wau-widget.png
Server: Apache/1.1 (Windows 4.00.950)
Expires: Fri, 07 Dec 2012 20:04:20 GMT
Cache-Control: max-age=2592000
GET /pagead/ads?client=ca-pub-9931823083404167&output=html&h=250&slotname=2088340493&w=300&lmt=1352317956&host=pub-1556223355139109&flash=10.0.45&url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&dt=1352318658592&bpp=5&shv=r20121031&jsv=r20110914&prev_slotnames=0836738270%2C0836738270&correlator=1352318657975&frm=20&adk=1755188556&ga_vid=1817411084.1352318658&ga_sid=1352318658&ga_hid=478191291&ga_fc=0&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=verdana&dfs=12&adx=751&ady=282&biw=1159&bih=778&oid=3&fu=0&ifi=3&dtd=1382&xpc=1g6ADsVW8y&p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=250&amp;slotname=2088340493&amp;w=300&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318658592&amp;bpp=5&amp;shv=r20121031&amp;jsv=r20110914&amp;prev_slotnames=0836738270%2C0836738270&amp;correlator=1352318657975&amp;frm=20&amp;adk=1755188556&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=751&amp;ady=282&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=3&amp;dtd=1382&amp;xpc=1g6ADsVW8y&amp;p=http%3A//soccer-free-kick.blogspot.no HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Wed, 07 Nov 2012 20:04:20 GMT
Server: cafe
Cache-Control: private
Content-Length: 6344
X-XSS-Protection: 1; mode=block
GET /pagead/imgad?id=CICAgICQjuvo7AEQrAIY-gEyCH0GuRjLYLjC HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=250&amp;slotname=2088340493&amp;w=300&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318658592&amp;bpp=5&amp;shv=r20121031&amp;jsv=r20110914&amp;prev_slotnames=0836738270%2C0836738270&amp;correlator=1352318657975&amp;frm=20&amp;adk=1755188556&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=751&amp;ady=282&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=3&amp;dtd=1382&amp;xpc=1g6ADsVW8y&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Date: Wed, 07 Nov 2012 13:50:01 GMT
Expires: Wed, 14 Nov 2012 13:50:01 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 7385
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 22461
GET /static/r07/sh103.html HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:22 GMT
Last-Modified: Thu, 01 Nov 2012 12:00:06 GMT
P3P: CP=&quot;NON ADM OUR DEV IND COM STA&quot;
Server: ECS (arn/46FE)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 19180
GET /static/r07/auth008.js HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:22 GMT
Last-Modified: Thu, 01 Nov 2012 11:58:31 GMT
Server: ECS (arn/46EC)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 7705
GET /_/apps-static/_/js/gapi/iframes_styles_bubble/rt=j/ver=zfq9BF98FFM.no./sv=1/am=!R7JhevK68w2IwTSFZw/d=1/rs=AItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g/ed=1/exm=plusone/cb=gapi.loaded_1 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;-1265573665&quot;
Expires: Fri, 07 Dec 2012 14:46:00 GMT
Date: Wed, 07 Nov 2012 14:46:00 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 15654
Age: 19102
GET /static/r07/counter005.js HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:22 GMT
Last-Modified: Thu, 01 Nov 2012 11:58:15 GMT
Server: ECS (arn/46E4)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 3311
GET /static/r07/counter006.css HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 20:04:22 GMT
Last-Modified: Thu, 01 Nov 2012 11:58:14 GMT
Server: ECS (arn/46F3)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 5020
GET /images/pinit.png HTTP/1.1

Host: d3io1k5o0zdpqr.cloudfront.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ct5.addthis.com/static/r07/widget097.css
HTTP/1.0 200 OK

Content-Type: image/png
Content-Length: 3853
Connection: keep-alive
x-amz-id-2: zfbT6alZ5mDPgoBOj0h/H9AOfzY7qqXLBBCDfkICIq35r5azqj7HIrTl653TPnF/
x-amz-request-id: C82EFE85F859010A
Date: Tue, 06 Dec 2011 03:09:03 GMT
Expires: Tue, 15 Nov 2011 18:53:24 GMT
Last-Modified: Tue, 15 Nov 2011 18:53:45 GMT
Etag: &quot;fb119a595fb8582803b630085a432547&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 3419
X-Amz-Cf-Id: -Alt_r7tthWHpaaMuCvmjK8ngWBpir0S3TjhuFFOsCH2gKqPEvAmYQ==
Via: 1.0 a0ad14606e58633886c08b443a00ec16.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /pagead/drt/ui HTTP/1.1

Host: www.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: https://googleads.g.doubleclick.net/pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh
Cache-Control: private
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:22 GMT
Server: safe
Content-Length: 304
X-XSS-Protection: 1; mode=block
GET /widgets.js HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:09 GMT
Etag: &quot;eeaccca8778f3be533564253af185e3e&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24565
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /bg/chVL4ii63HO8PHZ862lFB7RQHpSvg33s68eDUue2RxM.js HTTP/1.1

Host: www.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9931823083404167&amp;output=html&amp;h=60&amp;slotname=0836738270&amp;w=468&amp;lmt=1352317956&amp;host=pub-1556223355139109&amp;flash=10.0.45&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;dt=1352318657432&amp;bpp=14&amp;shv=r20121031&amp;jsv=r20110914&amp;correlator=1352318657975&amp;frm=20&amp;adk=3150244986&amp;ga_vid=1817411084.1352318658&amp;ga_sid=1352318658&amp;ga_hid=478191291&amp;ga_fc=0&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=verdana&amp;dfs=12&amp;adx=581&amp;ady=30&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=1008&amp;xpc=399Sd6Q95C&amp;p=http%3A//soccer-free-kick.blogspot.no
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Wed, 31 Oct 2012 16:20:27 GMT
Date: Tue, 06 Nov 2012 19:39:26 GMT
Expires: Wed, 14 Nov 2012 19:39:26 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 3254
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=691200
Age: 87896
GET /plugins/like.php?href=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&layout=button_count&show_faces=false&width=100&action=like&font=arial&layout=button_count HTTP/1.1

Host: www.facebook.com
GET /plugins/like.php?href=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;font=arial&amp;layout=button_count HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: zD9eSdL+N2n8wzX8uhD/I9IYs+06lZbIR6K0Sdqvs38=
Date: Wed, 07 Nov 2012 20:04:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /gsd/13523186621780?evt=afterGSD&pid=451617&wsid=5&pdom=soccer-free-kick.blogspot.no&purl=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&jsv=310.3.1e HTTP/1.1

Host: router.infolinks.com
GET /gsd/13523186621780?evt=afterGSD&amp;pid=451617&amp;wsid=5&amp;pdom=soccer-free-kick.blogspot.no&amp;purl=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;jsv=310.3.1e HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Length: 0
Date: Wed, 07 Nov 2012 20:04:21 GMT
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: keep-alive
GET /pagead/drt/ui HTTP/1.1

Host: www.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: https://googleads.g.doubleclick.net/pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh
Cache-Control: private
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:22 GMT
Server: safe
Content-Length: 304
X-XSS-Protection: 1; mode=block
GET /navbar.g?targetBlogID=7275579736858172418&blogName=Free+kick&publishMode=PUBLISH_MODE_BLOGSPOT&navbarType=LIGHT&layoutType=LAYOUTS&searchRoot=http://soccer-free-kick.blogspot.com/search&blogLocale=en&v=2&homepageUrl=http://soccer-free-kick.blogspot.com/&targetPostID=883872048625569582&blogPostOrPageUrl=http://soccer-free-kick.blogspot.com/2012/11/sporting-kc-vs-houston-dynamo-live.html&vt=3263434040476139354&jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g HTTP/1.1

Host: www.blogger.com
GET /navbar.g?targetBlogID=7275579736858172418&amp;blogName=Free+kick&amp;publishMode=PUBLISH_MODE_BLOGSPOT&amp;navbarType=LIGHT&amp;layoutType=LAYOUTS&amp;searchRoot=http://soccer-free-kick.blogspot.com/search&amp;blogLocale=en&amp;v=2&amp;homepageUrl=http://soccer-free-kick.blogspot.com/&amp;targetPostID=883872048625569582&amp;blogPostOrPageUrl=http://soccer-free-kick.blogspot.com/2012/11/sporting-kc-vs-houston-dynamo-live.html&amp;vt=3263434040476139354&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: blogger_TID=441b93c8893ea5d0; S=blogger=f-1wTiCMTHm57wv8QEQytQ; __utma=150635877.1706709854.1352318660.1352318660.1352318660.1; __utmb=150635877.1.10.1352318660; __utmc=150635877; __utmz=150635877.1352318660.1.1.utmcsr=soccer-free-kick.blogspot.no|utmccn=(referral)|utmcmd=referral|utmcct=/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: CP=&quot;This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=151657 for more info.&quot;
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Wed, 07 Nov 2012 20:04:22 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Length: 2621
Server: GSE
GET /rsrc.php/v2/yW/r/4SdXcaE0lBj.js HTTP/1.1

Host: static.ak.fbcdn.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;font=arial&amp;layout=button_count
Origin: http://www.facebook.com
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Mon, 29 Oct 2012 23:55:41 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: mERPLeHfP4bFbWVj/NJRwm2C8x1Lf8geAnYAfFf24WM=
Content-Length: 37945
Vary: Accept-Encoding
Cache-Control: public, max-age=31428521
Expires: Wed, 06 Nov 2013 14:13:03 GMT
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: keep-alive
GET /rsrc.php/v2/yI/x/1dQf_ATK831.png HTTP/1.1

Host: static.ak.fbcdn.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;font=arial&amp;layout=button_count
HTTP/1.1 200 OK

Content-Type: image/png
Access-Control-Allow-Origin: *
Last-Modified: Fri, 29 Jun 2012 21:48:06 GMT
X-Content-Type-Options: nosniff
X-FB-Debug: DROeMGRPcdwLS4zkFLAnDVu5opvpxfNclOg2Khukp6I=
Content-Length: 567
Cache-Control: public, max-age=25379582
Expires: Wed, 28 Aug 2013 13:57:24 GMT
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: keep-alive
GET /widgets/tweet_button.1351848862.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=315569260
Last-Modified: Fri, 02 Nov 2012 09:36:43 GMT
Etag: &quot;8387ae31da8d953f1223ed70a0922e74&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 22625
Date: Wed, 07 Nov 2012 20:04:23 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /t.gif?_=1352318662962&count=horizontal&counturl=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&id=twitter-widget-0&lang=en&original_referer=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&size=m&text=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick%3A&url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%23.UJq-wnuvAjk.twitter&type=share&twttr_referrer=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&twttr_widget=1&twttr_hask=0&twttr_li=0&twttr_pid= HTTP/1.1

Host: p.twitter.com
GET /t.gif?_=1352318662962&amp;count=horizontal&amp;counturl=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;id=twitter-widget-0&amp;lang=en&amp;original_referer=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;size=m&amp;text=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick%3A&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%23.UJq-wnuvAjk.twitter&amp;type=share&amp;twttr_referrer=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;twttr_widget=1&amp;twttr_hask=0&amp;twttr_li=0&amp;twttr_pid= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1351848862.html
HTTP/1.1 200 OK

Content-Type: image/gif
Etag: &quot;377d257f2d2e294916143c069141c1c5:1328738114&quot;
Last-Modified: Wed, 08 Feb 2012 21:55:14 GMT
Accept-Ranges: bytes
Content-Length: 43
Cache-Control: no-cache
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
Date: Wed, 07 Nov 2012 20:04:23 GMT
Connection: keep-alive
GET /_/apps-static/_/js/gapi/plus,plusone/rt=j/ver=zfq9BF98FFM.no./sv=1/am=!R7JhevK68w2IwTSFZw/d=1/rs=AItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/navbar.g?targetBlogID=7275579736858172418&amp;blogName=Free+kick&amp;publishMode=PUBLISH_MODE_BLOGSPOT&amp;navbarType=LIGHT&amp;layoutType=LAYOUTS&amp;searchRoot=http://soccer-free-kick.blogspot.com/search&amp;blogLocale=en&amp;v=2&amp;homepageUrl=http://soccer-free-kick.blogspot.com/&amp;targetPostID=883872048625569582&amp;blogPostOrPageUrl=http://soccer-free-kick.blogspot.com/2012/11/sporting-kc-vs-houston-dynamo-live.html&amp;vt=3263434040476139354&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;-848757449&quot;
Expires: Fri, 07 Dec 2012 17:25:34 GMT
Date: Wed, 07 Nov 2012 17:25:34 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 43656
Age: 9529
GET /pagead/drt/ui HTTP/1.1

Host: www.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: https://googleads.g.doubleclick.net/pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCSzwDgQMvTazvBShadJHJRfgUPIu6
Cache-Control: private
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:23 GMT
Server: safe
Content-Length: 304
X-XSS-Protection: 1; mode=block
GET /s2/oz/images/stars/po/Publisher/sprite4-a67f741843ffc4220554c34bd01bb0bb.png HTTP/1.1

Host: ssl.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Thu, 01 Nov 2012 01:08:52 GMT
Expires: Fri, 01 Nov 2013 01:08:52 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 586531
GET /pagead/drt/si?p=CAA&ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Set-Cookie: _drt_=NO_DATA; expires=Thu, 08-Nov-2012 08:04:23 GMT; path=/; domain=.doubleclick.net; HttpOnly
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:23 GMT
Server: safe
Content-Length: 0
X-XSS-Protection: 1; mode=block
Expires: Wed, 07 Nov 2012 20:04:23 GMT
Cache-Control: private
GET /pagead/drt/si?p=CAA&ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCStpB8B4RHqjVd3_VmZ8-3qtQs6Kh HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Set-Cookie: _drt_=NO_DATA; expires=Thu, 08-Nov-2012 08:04:23 GMT; path=/; domain=.doubleclick.net; HttpOnly
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:23 GMT
Server: safe
Content-Length: 0
X-XSS-Protection: 1; mode=block
Expires: Wed, 07 Nov 2012 20:04:23 GMT
Cache-Control: private
GET /pagead/drt/si?p=CAA&ut=AFAKxlQAAAAAUJrCSzwDgQMvTazvBShadJHJRfgUPIu6 HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUJrCSzwDgQMvTazvBShadJHJRfgUPIu6 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Set-Cookie: _drt_=NO_DATA; expires=Thu, 08-Nov-2012 08:04:23 GMT; path=/; domain=.doubleclick.net; HttpOnly
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Wed, 07 Nov 2012 20:04:23 GMT
Server: safe
Content-Length: 0
X-XSS-Protection: 1; mode=block
Expires: Wed, 07 Nov 2012 20:04:23 GMT
Cache-Control: private
GET /red/p.json?vr=300&rev=117843&rb=0&gen=1000&gen=100&sid=509abec242eeec4e&callback=_ate.ad.hrr&pub=xa-50974e9602a31a68&chr=UTF-8&uid=509abec6c9df8abf&url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&7tjuk6 HTTP/1.1

Host: cf.addthis.com
GET /red/p.json?vr=300&amp;rev=117843&amp;rb=0&amp;gen=1000&amp;gen=100&amp;sid=509abec242eeec4e&amp;callback=_ate.ad.hrr&amp;pub=xa-50974e9602a31a68&amp;chr=UTF-8&amp;uid=509abec6c9df8abf&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;7tjuk6 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ct5.addthis.com/static/r07/sh103.html
Cookie: uid=509abec6c9df8abf; __atuvc=1%7C45; uit=1
HTTP/1.1 200 OK

Content-Type: text/javascript
Server: Apache-Coyote/1.1
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Expires: Wed, 07 Nov 2012 20:04:23 GMT
Content-Length: 88
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: close
GET /live/t00/300lo.gif?1yei5ni&uid=509abec6c9df8abf&pub=xa-50974e9602a31a68&rev=117843&jsl=8192&si=509abec242eeec4e&ln=en&pc=men%2Ctbx&dp=soccer-free-kick.blogspot.com&of=0&uf=1&irt=0&md=0&ct=1&tct=0&abt=0&lt=1200&cdn=5&tl=c%3D284%2Cm%3D3530%2Ci%3D3535%2Cxm%3D4041%2Cxp%3D4735&pi=1&fp=2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html HTTP/1.1

Host: m.addthisedge.com
GET /live/t00/300lo.gif?1yei5ni&amp;uid=509abec6c9df8abf&amp;pub=xa-50974e9602a31a68&amp;rev=117843&amp;jsl=8192&amp;si=509abec242eeec4e&amp;ln=en&amp;pc=men%2Ctbx&amp;dp=soccer-free-kick.blogspot.com&amp;of=0&amp;uf=1&amp;irt=0&amp;md=0&amp;ct=1&amp;tct=0&amp;abt=0&amp;lt=1200&amp;cdn=5&amp;tl=c%3D284%2Cm%3D3530%2Ci%3D3535%2Cxm%3D4041%2Cxp%3D4735&amp;pi=1&amp;fp=2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ct5.addthis.com/static/r07/sh103.html
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Content-Length: 37
Date: Wed, 07 Nov 2012 20:04:22 GMT
Connection: close
GET /jot?l=%7B%22_category_%22%3A%22tfw_widgets%22%2C%22event_name%22%3A%22tweetbutton%3Aimpression%22%2C%22dnt%22%3Afalse%2C%22_%22%3A%221352318662962%22%2C%22count%22%3A%22horizontal%22%2C%22counturl%22%3A%22http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%22%2C%22id%22%3A%22twitter-widget-0%22%2C%22lang%22%3A%22en%22%2C%22original_referer%22%3A%22http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%22%2C%22size%22%3A%22m%22%2C%22text%22%3A%22Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick%3A%22%2C%22url%22%3A%22http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%23.UJq-wnuvAjk.twitter%22%2C%22type%22%3A%22share%22%2C%22logged_in%22%3Afalse%2C%22referrer%22%3A%22http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%22%2C%22widget%22%3Atrue%2C%22pid%22%3A%22%22%7D HTTP/1.1

Host: r.twimg.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1351848862.html
HTTP/1.1 200 OK

Content-Type: image/gif
X-Transaction: 72c96b77d4a1b00a
Last-Modified: Wed, 07 Nov 2012 20:04:23 GMT
Expires: Tue, 31 Mar 1981 05:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
Set-Cookie: guest_id=v1%3A135231866375883016; Expires=Fri, 7-Nov-2014 20:04:23 GMT; Path=/; Domain=.twitter.com
Date: Wed, 07 Nov 2012 20:04:23 GMT
Content-Encoding: gzip
Content-Length: 65
Server: tfe
GET /_/+1/sharebutton?plusShare=true&bsv=m&source=blogger%3Anavbar%3Ashare&height=20&annotation=bubble&action=share&hl=no&origin=http%3A%2F%2Fwww.blogger.com&url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&ic=1&jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g HTTP/1.1

Host: plusone.google.com
GET /_/+1/sharebutton?plusShare=true&amp;bsv=m&amp;source=blogger%3Anavbar%3Ashare&amp;height=20&amp;annotation=bubble&amp;action=share&amp;hl=no&amp;origin=http%3A%2F%2Fwww.blogger.com&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;ic=1&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.blogger.com/navbar.g?targetBlogID=7275579736858172418&amp;blogName=Free+kick&amp;publishMode=PUBLISH_MODE_BLOGSPOT&amp;navbarType=LIGHT&amp;layoutType=LAYOUTS&amp;searchRoot=http://soccer-free-kick.blogspot.com/search&amp;blogLocale=en&amp;v=2&amp;homepageUrl=http://soccer-free-kick.blogspot.com/&amp;targetPostID=883872048625569582&amp;blogPostOrPageUrl=http://soccer-free-kick.blogspot.com/2012/11/sporting-kc-vs-houston-dynamo-live.html&amp;vt=3263434040476139354&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Vary: Accept-Encoding
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Wed, 07 Nov 2012 20:04:23 GMT
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Server: GSE
GET /1/urls/count.json?url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&callback=twttr.receiveCount HTTP/1.1

Host: cdn.api.twitter.com
GET /1/urls/count.json?url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;callback=twttr.receiveCount HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1351848862.html
HTTP/1.1 200 OK

Content-Type: application/javascript;charset=utf-8
Last-Modified: Wed, 07 Nov 2012 20:04:23 GMT
Content-Encoding: gzip
Content-Length: 142
Server: tfe
Vary: Accept-Encoding
Cache-Control: must-revalidate, max-age=900
Expires: Wed, 07 Nov 2012 20:19:23 GMT
Date: Wed, 07 Nov 2012 20:04:23 GMT
Connection: keep-alive
GET /_/apps-static/_/js/gapi/googleapis_client,iframes_styles_bubble_internal/rt=j/ver=zfq9BF98FFM.no./sv=1/am=!R7JhevK68w2IwTSFZw/d=1/rs=AItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://plusone.google.com/_/+1/sharebutton?plusShare=true&amp;bsv=m&amp;source=blogger%3Anavbar%3Ashare&amp;height=20&amp;annotation=bubble&amp;action=share&amp;hl=no&amp;origin=http%3A%2F%2Fwww.blogger.com&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;ic=1&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;173672166&quot;
Expires: Fri, 07 Dec 2012 17:34:37 GMT
Date: Wed, 07 Nov 2012 17:34:37 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 34232
Age: 8986
GET /_/apps-static/_/js/plusone/p1b,psb/rt=j/ver=jkEX8FiW4Xk.no./sv=1/am=!NBYAyjO5WNGFzTm-5g/d=1/rs=AItRSTOwf9Wc0MT8tBfpjfQZ1nZ31njGdg HTTP/1.1

Host: plusone.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://plusone.google.com/_/+1/sharebutton?plusShare=true&amp;bsv=m&amp;source=blogger%3Anavbar%3Ashare&amp;height=20&amp;annotation=bubble&amp;action=share&amp;hl=no&amp;origin=http%3A%2F%2Fwww.blogger.com&amp;url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;ic=1&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3Dzfq9BF98FFM.no.%2Fsv%3D1%2Fam%3D!R7JhevK68w2IwTSFZw%2Fd%3D1%2Frs%3DAItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;1629161844&quot;
Expires: Fri, 07 Dec 2012 18:05:52 GMT
Date: Wed, 07 Nov 2012 18:05:52 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 22147
Age: 7112
GET /url/shares.json?url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&callback=_ate.cbs.sc_httpsoccerfreekickblogspotcom201211sportingkcvshoustondynamolivehtml0 HTTP/1.1

Host: api-public.addthis.com
GET /url/shares.json?url=http%3A%2F%2Fsoccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;callback=_ate.cbs.sc_httpsoccerfreekickblogspotcom201211sportingkcvshoustondynamolivehtml0 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
Cookie: uid=509abec6c9df8abf; __atuvc=1%7C45; uit=1
HTTP/1.1 200 OK

Content-Type: application/javascript;charset=UTF-8
Server: Apache-Coyote/1.1
Cache-Control: max-age=600
Date: Wed, 07 Nov 2012 20:04:24 GMT
Content-Length: 96
Connection: keep-alive
GET /b/p?id=w!jgfzot5svpz7&ts=1352318660108&cu=soccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick HTTP/1.1

Host: ic.tynt.com
GET /b/p?id=w!jgfzot5svpz7&amp;ts=1352318660108&amp;cu=soccer-free-kick.blogspot.com%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx/0.7.65
Date: Wed, 07 Nov 2012 20:04:24 GMT
Content-Length: 35
Last-Modified: Fri, 16 Apr 2010 15:38:20 GMT
Connection: close
Cache-Control: &quot;no-store, no-cache, must-revalidate, post-check=0, pre-check=0, false&quot;
Expires: &quot;Sat, 26 Jul 1997 05:00:00 GMT&quot;
Set-Cookie: uid=CgUVblCavsiWR03rCxbdAg==; expires=Thu, 07-Nov-13 20:04:24 GMT; domain=tynt.com; path=/
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CUR ADM OUR NOR STA NID&quot;
Accept-Ranges: bytes
GET /deb/v2?id=w!jgfzot5svpz7&r= HTTP/1.1

Host: de.tynt.com
GET /deb/v2?id=w!jgfzot5svpz7&amp;r= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache-Coyote/1.1
Cache-Control: max-age=86400
Expires: Thu, 08 Nov 2012 20:04:24 GMT
Content-Length: 2
Date: Wed, 07 Nov 2012 20:04:24 GMT
Connection: close
GET /js/tfw/widget/hubclient.js HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Last-Modified: Fri, 02 Nov 2012 09:35:33 GMT
Etag: &quot;1411999884f419ea8219bf9b531a9c66&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3260
Date: Wed, 07 Nov 2012 20:04:25 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /widgets/hub.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 7242
Date: Wed, 07 Nov 2012 20:04:25 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
POST / HTTP/1.1

Host: ocsp.usertrust.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Date: Wed, 07 Nov 2012 20:04:25 GMT
Server: Apache
Last-Modified: Wed, 07 Nov 2012 04:07:17 GMT
Expires: Sun, 11 Nov 2012 04:07:17 GMT
Etag: 0986AF9A358521BC18F1B75F505F398EB4B0A166
Cache-Control: max-age=287571,public,no-transform,must-revalidate
X-OCSP-Reponder-ID: h6edcaocsp6
Content-Length: 471
Connection: close
POST / HTTP/1.1

Host: ocsp.entrust.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 103
Content-Type: application/ocsp-request
HTTP/1.0 200 OK

Content-Type: application/ocsp-response
Content-Transfer-Encoding: Binary
Content-Length: 1938
Connection: Close
GET /widgets/hub.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 7242
Date: Wed, 07 Nov 2012 20:04:25 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /style/1012/serve/?isIE=0&vv=955&tft=3&dd=0&wid=515b92b725ee59c8&pid=0&proid=0&bc=FFFFFF&tc=000000&brd1=012B6B&lnk=135D9E&hc=FFFFFF&hfc=2853A8&btn=C99700&ww=200&went=10 HTTP/1.1

Host: feedjit.com
GET /style/1012/serve/?isIE=0&amp;vv=955&amp;tft=3&amp;dd=0&amp;wid=515b92b725ee59c8&amp;pid=0&amp;proid=0&amp;bc=FFFFFF&amp;tc=000000&amp;brd1=012B6B&amp;lnk=135D9E&amp;hc=FFFFFF&amp;hfc=2853A8&amp;btn=C99700&amp;ww=200&amp;went=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/css
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=5
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Content-Encoding: gzip
GET /router/?ishd=0&w=trafficList&ign=0&wn=1&cen=1&nv=1&inu=1&pvid=1352318660051-6286494916781633&pvnum=1&tats=5&adseln=451&fl=0&vid=new&rn=0&lg=1&u=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&r=&t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick&sw=1176&sh=885&pid=0&wid=515b92b725ee59c8&proid=0&fhst=&tft=3&wh=&hl=&hlnks=&srefs=&hbars=&hfce=&wne=&msum=b8eb10f7&gid=0&flt=0&fv=1&tfen=1&flc=false&lu=0&isIE=0&oldB=0&mgen=blogger&fjv=2&rand=119742851&ww=200 HTTP/1.1

Host: feedjit.com
GET /router/?ishd=0&amp;w=trafficList&amp;ign=0&amp;wn=1&amp;cen=1&amp;nv=1&amp;inu=1&amp;pvid=1352318660051-6286494916781633&amp;pvnum=1&amp;tats=5&amp;adseln=451&amp;fl=0&amp;vid=new&amp;rn=0&amp;lg=1&amp;u=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;r=&amp;t=Sporting%20KC%20vs%20Houston%20Dynamo%20Live%20Streaming%20Major%20League%20Soccer%20Online%20Free%20Coverage%20%7C%20Free%20kick&amp;sw=1176&amp;sh=885&amp;pid=0&amp;wid=515b92b725ee59c8&amp;proid=0&amp;fhst=&amp;tft=3&amp;wh=&amp;hl=&amp;hlnks=&amp;srefs=&amp;hbars=&amp;hfce=&amp;wne=&amp;msum=b8eb10f7&amp;gid=0&amp;flt=0&amp;fv=1&amp;tfen=1&amp;flc=false&amp;lu=0&amp;isIE=0&amp;oldB=0&amp;mgen=blogger&amp;fjv=2&amp;rand=119742851&amp;ww=200 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/javascript
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=5
P3P: CP=&quot;NOI CURa ADMa DEVa OUR IND COM NAV&quot;
Pragma: no-cache
Cache-Control: no-cache
Expires: Wed, 07 Nov 2012 20:04:30 GMT
Content-Encoding: gzip
GET /images/w2/overlay.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://feedjit.com/style/1012/serve/?isIE=0&amp;vv=955&amp;tft=3&amp;dd=0&amp;wid=515b92b725ee59c8&amp;pid=0&amp;proid=0&amp;bc=FFFFFF&amp;tc=000000&amp;brd1=012B6B&amp;lnk=135D9E&amp;hc=FFFFFF&amp;hfc=2853A8&amp;btn=C99700&amp;ww=200&amp;went=10
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 996
Last-Modified: Thu, 25 Oct 2012 01:57:25 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c85-3e4&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /dmgs/b1_D09100_2853A8.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://feedjit.com/style/1012/serve/?isIE=0&amp;vv=955&amp;tft=3&amp;dd=0&amp;wid=515b92b725ee59c8&amp;pid=0&amp;proid=0&amp;bc=FFFFFF&amp;tc=000000&amp;brd1=012B6B&amp;lnk=135D9E&amp;hc=FFFFFF&amp;hfc=2853A8&amp;btn=C99700&amp;ww=200&amp;went=10
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=5
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
GET /wa/tf.html?r=371302154 HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 679
Last-Modified: Thu, 25 Oct 2012 01:57:17 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c7d-2a7&quot;
Expires: Wed, 07 Nov 2012 20:04:30 GMT
Cache-Control: max-age=0
P3P: CP=&quot;NOI DSP COR NID NOR&quot;
Accept-Ranges: bytes
GET /images/flags/us.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 609
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-261&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/w2/overlay2.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://feedjit.com/style/1012/serve/?isIE=0&amp;vv=955&amp;tft=3&amp;dd=0&amp;wid=515b92b725ee59c8&amp;pid=0&amp;proid=0&amp;bc=FFFFFF&amp;tc=000000&amp;brd1=012B6B&amp;lnk=135D9E&amp;hc=FFFFFF&amp;hfc=2853A8&amp;btn=C99700&amp;ww=200&amp;went=10
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 980
Last-Modified: Thu, 25 Oct 2012 01:57:25 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c85-3d4&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/no.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 512
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-200&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/gb.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 699
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-2bb&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/w2/bh_175x25_01.gif HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx
Date: Wed, 07 Nov 2012 20:04:30 GMT
Content-Length: 6003
Last-Modified: Thu, 25 Oct 2012 01:57:25 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c85-1773&quot;
Expires: Thu, 07 Nov 2013 20:04:30 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/ae.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 408
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-198&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/pt.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 554
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-22a&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/es.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 469
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-1d5&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/ch.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 367
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-16f&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/bd.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 504
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-1f8&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /images/flags/at.png HTTP/1.1

Host: feedjit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://soccer-free-kick.blogspot.no/2012/11/sporting-kc-vs-houston-dynamo-live.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx
Date: Wed, 07 Nov 2012 20:04:31 GMT
Content-Length: 403
Last-Modified: Thu, 25 Oct 2012 01:57:27 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Etag: &quot;50889c87-193&quot;
Expires: Thu, 07 Nov 2013 20:04:31 GMT
Cache-Control: max-age=31536000
Accept-Ranges: bytes
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=770286051&utmhn=feedjit.com&utmcs=UTF-8&utmsr=1176x885&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=TF&utmhid=1639342339&utmr=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&utmp=%2Fwa%2Ftf.html%3Fr%3D371302154&utmac=UA-248353-18&utmcc=__utma%3D96727048.1932468012.1352318671.1352318671.1352318671.1%3B%2B__utmz%3D96727048.1352318671.1.1.utmcsr%3Dsoccer-free-kick.blogspot.no%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%3B&utmu=D~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=770286051&amp;utmhn=feedjit.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=TF&amp;utmhid=1639342339&amp;utmr=http%3A%2F%2Fsoccer-free-kick.blogspot.no%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html&amp;utmp=%2Fwa%2Ftf.html%3Fr%3D371302154&amp;utmac=UA-248353-18&amp;utmcc=__utma%3D96727048.1932468012.1352318671.1352318671.1352318671.1%3B%2B__utmz%3D96727048.1352318671.1.1.utmcsr%3Dsoccer-free-kick.blogspot.no%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F2012%2F11%2Fsporting-kc-vs-houston-dynamo-live.html%3B&amp;utmu=D~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://feedjit.com/wa/tf.html?r=371302154
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:26:06 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 585505
Server: GFE/2.0