Overview

URLhttp://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
IP66.216.109.251
ASNAS33070 Rackspace Hosting
Location United States
Report completed2013-01-23 00:29:49 CET
StatusLoading report..
urlQuery Alerts No alerts detected


Settings

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


Intrusion Detection Systems

Suricata /w Emerging Threats Pro
Timestamp Source IP Destination IP Severity Alert
2013-01-23 00:29:17 173.194.32.26 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 66.216.109.251

Date Alerts / IDS URL IP
2013-02-11 17:32:590 / 1http://www.iphonedevsdk.com66.216.109.251
2013-02-11 16:56:420 / 1http://iphonedevsdk.com66.216.109.251
2013-02-11 16:55:170 / 0http://iphonedevsdk.com/forum/iphone-sdk-tools-utilities/108788-how-do-i-use-subjecti (...)66.216.109.251
2013-02-10 06:13:030 / 0http://www.iphonedevsdk.com/66.216.109.251
2013-02-04 21:49:130 / 1http://iphonedevsdk.com66.216.109.251
2013-02-04 17:28:070 / 1http://iphonedevsdk.com66.216.109.251

Last 6 reports on ASN: AS33070 Rackspace Hosting

Date Alerts / IDS URL IP
2013-02-17 11:44:240 / 0http://www.mermaniac.com/72.32.231.8
2013-02-17 09:45:530 / 1http://www.inmetrabeneficios.com.br/page-329.htm98.129.229.16
2013-02-17 07:32:180 / 0http://www.commonwealtheyes.com/98.129.229.16
2013-02-17 05:27:371 / 6http://www.104fm.fm.br/198.101.244.106
2013-02-17 02:39:080 / 1http://feet.thefuntimesguide.com/67.192.197.105
2013-02-17 00:02:160 / 1http://www4.staticapps.com/addlyrics/update1005.xml?rnd=442650.56.173.185

Last 6 reports on domain: iphonedevsdk.com

Date Alerts / IDS URL IP
2013-02-11 16:56:420 / 1http://iphonedevsdk.com66.216.109.251
2013-02-11 16:55:170 / 0http://iphonedevsdk.com/forum/iphone-sdk-tools-utilities/108788-how-do-i-use-subjective-c-aka-l (...)66.216.109.251
2013-02-04 21:49:130 / 1http://iphonedevsdk.com66.216.109.251
2013-02-04 17:28:070 / 1http://iphonedevsdk.com66.216.109.251
2013-01-25 00:35:390 / 0http://iphonedevsdk.com/forum/iphone-sdk-development/18373-load-a-uitableview-with-a-selected-c (...)66.216.109.251
2013-01-24 23:51:300 / 1http://iphonedevsdk.com/forum66.216.109.251



JavaScript

Executed Scripts (57)


Executed Evals (46)

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

(function($) {
    $.extend($.fn, {
        livequery: function(c, b, d) {
            var e = this,
                q;
            if ($.isFunction(c)) d = b, b = c, c = undefined;
            $.each($.livequery.queries, function(i, a) {
                if (e.selector == a.selector && e.context == a.context && c == a.type && (!b || b.$lqguid == a.fn.$lqguid) && (!d || d.$lqguid == a.fn2.$lqguid)) return (q = a) && false
            });
            q = q || new $.livequery(this.selector, this.context, c, b, d);
            q.stopped = false;
            $.livequery.run(q.id);
            return this
        },
        expire: function(c, b, d) {
            var e = this;
            if ($.isFunction(c)) d = b, b = c, c = undefined;
            $.each($.livequery.queries, function(i, a) {
                if (e.selector == a.selector && e.context == a.context && (!c || c == a.type) && (!b || b.$lqguid == a.fn.$lqguid) && (!d || d.$lqguid == a.fn2.$lqguid) && !this.stopped) $.livequery.stop(a.id)
            });
            return this
        }
    });
    $.livequery = function(e, c, a, b, d) {
        this.selector = e;
        this.context = c || document;
        this.type = a;
        this.fn = b;
        this.fn2 = d;
        this.elements = [];
        this.stopped = false;
        this.id = $.livequery.queries.push(this) - 1;
        b.$lqguid = b.$lqguid || $.livequery.guid++;
        if (d) d.$lqguid = d.$lqguid || $.livequery.guid++;
        return this
    };
    $.livequery.prototype = {
        stop: function() {
            var b = this;
            if (this.type) this.elements.unbind(this.type, this.fn);
            else if (this.fn2) this.elements.each(function(i, a) {
                b.fn2.apply(a)
            });
            this.elements = [];
            this.stopped = true
        },
        run: function() {
            if (this.stopped) return;
            var b = this;
            var c = this.elements,
                els = $(this.selector, this.context),
                nEls = els.not(c);
            this.elements = els;
            if (this.type) {
                nEls.bind(this.type, this.fn);
                if (c.length > 0) $.each(c, function(i, a) {
                    if ($.inArray(a, els) < 0) $.event.remove(a, b.type, b.fn)
                })
            } else {
                nEls.each(function() {
                    b.fn.apply(this)
                });
                if (this.fn2 && c.length > 0) $.each(c, function(i, a) {
                    if ($.inArray(a, els) < 0) b.fn2.apply(a)
                })
            }
        }
    };
    $.extend($.livequery, {
        guid: 0,
        queries: [],
        queue: [],
        running: false,
        timeout: null,
        checkQueue: function() {
            if ($.livequery.running && $.livequery.queue.length) {
                var a = $.livequery.queue.length;
                while (a--) $.livequery.queries[$.livequery.queue.shift()].run()
            }
        },
        pause: function() {
            $.livequery.running = false
        },
        play: function() {
            $.livequery.running = true;
            $.livequery.run()
        },
        registerPlugin: function() {
            $.each(arguments, function(i, n) {
                if (!$.fn[n]) return;
                var a = $.fn[n];
                $.fn[n] = function() {
                    var r = a.apply(this, arguments);
                    $.livequery.run();
                    return r
                }
            })
        },
        run: function(b) {
            if (b != undefined) {
                if ($.inArray(b, $.livequery.queue) < 0) $.livequery.queue.push(b)
            } else $.each($.livequery.queries, function(a) {
                if ($.inArray(a, $.livequery.queue) < 0) $.livequery.queue.push(a)
            });
            if ($.livequery.timeout) clearTimeout($.livequery.timeout);
            $.livequery.timeout = setTimeout($.livequery.checkQueue, 20)
        },
        stop: function(b) {
            if (b != undefined) $.livequery.queries[b].stop();
            else $.each($.livequery.queries, function(a) {
                $.livequery.queries[a].stop()
            })
        }
    });
    $.livequery.registerPlugin('append', 'prepend', 'after', 'before', 'wrap', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'empty', 'remove');
    $(function() {
        $.livequery.play()
    });
    var f = $.prototype.init;
    $.prototype.init = function(a, c) {
        var r = f.apply(this, arguments);
        if (a && a.selector) r.context = a.context, r.selector = a.selector;
        if (typeof a == 'string') r.context = c || document, r.selector = a;
        return r
    };
    $.prototype.init.prototype = $.prototype
})(jQuery);

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

({
    ":)]": 100,
    ";))": 71,
    ":)>-": 67,
    ":))": 21,
    ":)": 1,
    ":(|)": 51,
    ":((": 20,
    ":(": 2,
    ";)": 3,
    ":D": 4,
    ";;)": 5,
    ">:D<": 6,
    ":-\/": 7,
    ":x": 8,
    ":\\\">": 9,
    ":P": 10,
    "<:-P": 36,
    ":-*": 11,
    "=((": 12,
    ":-O": 13,
    ":O)": 34,
    "X(": 14,
    ":>": 15,
    "B-)": 16,
    ":-S": 17,
    "#:-S": 18,
    ">:)": 19,
    ":|": 22,
    "\/:)": 23,
    "=))": 24,
    "O:-)": 25,
    ":-B": 26,
    "=;": 27,
    "I-)": 28,
    "8-|": 29,
    "L-)": 30,
    ":-&": 31,
    ":-$": 32,
    "[-(": 33,
    "8-}": 35,
    "(:|": 37,
    "=P~": 38,
    ":-??": 106,
    ":-?": 39,
    "#-o": 40,
    "=D>": 41,
    ":-SS": 42,
    "@-)": 43,
    ":^o": 44,
    ":-w": 45,
    ":-<": 46,
    ">:P": 47,
    ":@)": 49,
    "3:-O": 50,
    "~:>": 52,
    "~O)": 57,
    "*-:)": 58,
    "8-X": 59,
    ">-)": 61,
    ":-L": 62,
    "[-O<": 63,
    "$-)": 64,
    ":-\\\"": 65,
    "b-(": 66,
    "[-X": 68,
    "\\:D\/": 69,
    ">:\/": 70,
    ":-@": 76,
    "^:)^": 77,
    ":-j": 78,
    ":-c": 101,
    "~X(": 102,
    ":-h": 103,
    ":-t": 104,
    "8->": 105,
    "%-(": 107,
    ":o3": 108,
    "X_X": 109,
    ":!!": 110,
    "\\m\/": 111,
    ":-q": 112,
    ":-bd": 113,
    "^#(^": 114,
    ":bz": 115,
    ":ar!": "pirate"
})

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

+new Date()

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

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

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

0, (function() {})

#6 JavaScript::Eval (size: 491, repeated: 1)

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

#7 JavaScript::Eval (size: 77, repeated: 1)

0, (function(a) {
    var b = B(a);
    r(a, b.L, b.K.apply(b.self, b.z));
})

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

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

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

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

#10 JavaScript::Eval (size: 140, repeated: 1)

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

#11 JavaScript::Eval (size: 93, repeated: 1)

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

#12 JavaScript::Eval (size: 79, repeated: 1)

0, (function(a) {
    var b = x(a),
        c = x(a),
        b = a.a(b);
    r(a, c, l(b));
})

#13 JavaScript::Eval (size: 238, repeated: 1)

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

#14 JavaScript::Eval (size: 101, repeated: 1)

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

#15 JavaScript::Eval (size: 210, repeated: 1)

0, (function(a) {
    var b = x(a),
        c = x(a),
        d = x(a),
        e = x(a),
        b = a.a(b),
        c = a.a(c),
        d = a.a(d);
    a = a.a(e);
    for (var e = b.length, i = 0; i < e; i += d) {
        c(b.slice(i, i + d), a);
    }
})

#16 JavaScript::Eval (size: 103, repeated: 1)

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

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

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

#18 JavaScript::Eval (size: 87, repeated: 1)

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

#19 JavaScript::Eval (size: 95, repeated: 1)

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

#20 JavaScript::Eval (size: 84, repeated: 1)

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

#21 JavaScript::Eval (size: 84, repeated: 1)

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

#22 JavaScript::Eval (size: 88, repeated: 1)

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

#23 JavaScript::Eval (size: 89, repeated: 1)

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

#24 JavaScript::Eval (size: 339, repeated: 1)

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

#25 JavaScript::Eval (size: 86, repeated: 1)

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

#26 JavaScript::Eval (size: 78, repeated: 1)

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

#27 JavaScript::Eval (size: 78, repeated: 1)

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

#28 JavaScript::Eval (size: 78, repeated: 1)

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

#29 JavaScript::Eval (size: 78, repeated: 1)

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

#30 JavaScript::Eval (size: 101, repeated: 1)

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

#31 JavaScript::Eval (size: 1369, repeated: 1)

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

#32 JavaScript::Eval (size: 30, repeated: 1)

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

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

B

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

C

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

D

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

E

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

F

#38 JavaScript::Eval (size: 2, repeated: 7)

[]

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

document.createElement('img')

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

q

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

r

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

t

#43 JavaScript::Eval (size: 8486, repeated: 1)

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

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

w

#45 JavaScript::Eval (size: 6, repeated: 1)

window

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

x

Executed Writes (35)

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

&cb=48335703304

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

&cb=66095462424

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

&cb=66484812031

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

&cb=8451880250

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

&cb=97909814719

#6 JavaScript::Write (size: 14, repeated: 5)

&charset=UTF-8

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

&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxfA%3D%3D

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

&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwfA%3D%3D

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

&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjN8

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

&context=YjoxODg4NSNjOjE1NzIyfA%3D%3D

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

&exclude=,bannerid:18885,campaignid:15722,

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

&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,

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

&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,

#14 JavaScript::Write (size: 104, repeated: 1)

&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,bannerid:13691,

#15 JavaScript::Write (size: 87, repeated: 5)

&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html

#16 JavaScript::Write (size: 11, repeated: 5)

'></script>

#17 JavaScript::Write (size: 634, repeated: 1)

<!doctype html><html><body><iframe style="display:none" id="zrt_ads_frame1" name="zrt_ads_frame1" src="http://googleads.g.doubleclick.net/pagead/html/r20130116/r20121214/zrt_lookup.html"></iframe><script>google_ad_client="ca-pub-6314780011456234";google_ad_height=150;google_ad_slot="0806303549";google_ad_width=180;google_show_ads_impl=true;google_unique_id=1;google_async_iframe_id="aswift_0";google_ad_unit_key="3972000131";google_start_time=1358897356726;google_expand_experiment="none";google_bpp=5;</script><script src="http://pagead2.googlesyndication.com/pagead/js/r20130116/r20121214/show_ads_impl.js"></script></body></html>

#18 JavaScript::Write (size: 634, repeated: 1)

<!doctype html><html><body><iframe style="display:none" id="zrt_ads_frame2" name="zrt_ads_frame2" src="http://googleads.g.doubleclick.net/pagead/html/r20130116/r20121214/zrt_lookup.html"></iframe><script>google_ad_client="ca-pub-6314780011456234";google_ad_height=600;google_ad_slot="7523964730";google_ad_width=160;google_show_ads_impl=true;google_unique_id=2;google_async_iframe_id="aswift_1";google_ad_unit_key="1015181912";google_start_time=1358897356899;google_expand_experiment="none";google_bpp=6;</script><script src="http://pagead2.googlesyndication.com/pagead/js/r20130116/r20121214/show_ads_impl.js"></script></body></html>

#19 JavaScript::Write (size: 54, repeated: 1)

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

#20 JavaScript::Write (size: 741, repeated: 1)

<a href="http://d.adsbyisocket.com/ck.php?oaparams=2__bannerid=18885__zoneid=561__cb=feac460981__oadest=http://clk.atdmt.com/MRT/go/429762073/direct;wi.728;hi.90/01/"  target="_blank"><img border="0" src="http://view.atdmt.com/MRT/view/429762073/direct;wi.728;hi.90/01/"></a><div id='beacon_feac460981' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://d.adsbyisocket.com/lg.php?bannerid=18885&amp;campaignid=15722&amp;zoneid=561&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=feac460981' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div><script type='text/javascript'>document.context='YjoxODg4NSNjOjE1NzIyfA=='; </script>

#21 JavaScript::Write (size: 784, repeated: 1)

<a href="http://d.adsbyisocket.com/ck.php?oaparams=2__bannerid=18886__zoneid=562__cb=2ae3a8e219__oadest=http://clk.atdmt.com/MRT/go/429762074/direct;wi.160;hi.600/01/"  target="_blank"><img border="0" src="http://view.atdmt.com/MRT/view/429762074/direct;wi.160;hi.600/01/"></a>
<div id='beacon_2ae3a8e219' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://d.adsbyisocket.com/lg.php?bannerid=18886&amp;campaignid=15723&amp;zoneid=562&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=2ae3a8e219' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div><script type='text/javascript'>document.context='YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjN8'; </script>

#22 JavaScript::Write (size: 88, repeated: 2)

<embed id="deployJavaPlugin" type="application/java-deployment-toolkit" hidden="true" />

#23 JavaScript::Write (size: 849, repeated: 1)

<iframe allowtransparency=true frameborder=0 height=150 hspace=0 id=google_ads_frame1 marginheight=0 marginwidth=0 name=google_ads_frame1 scrolling=no src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&output=html&h=150&slotname=0806303549&w=180&lmt=1358897353&flash=10.0.45&url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&dt=1358897356726&bpp=5&shv=r20130116&jsv=r20121214&correlator=1358897356865&frm=20&adk=3972000131&ga_vid=727471966.1358897355&ga_sid=1358897355&ga_hid=1981356368&ga_fc=1&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=arial&dfs=12&adx=924&ady=829&biw=1159&bih=778&oid=3&fu=0&ifi=1&dtd=270&xpc=BgcS1NXpYX&p=http%3A//iphonedevsdk.com" style="left:0;position:absolute;top:0" vspace=0 width=180></iframe>

#24 JavaScript::Write (size: 871, repeated: 1)

<iframe allowtransparency=true frameborder=0 height=600 hspace=0 id=google_ads_frame2 marginheight=0 marginwidth=0 name=google_ads_frame2 scrolling=no src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&output=html&h=600&slotname=7523964730&w=160&lmt=1358897353&flash=10.0.45&url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&dt=1358897356899&bpp=6&shv=r20130116&jsv=r20121214&prev_slotnames=0806303549&correlator=1358897356865&frm=20&adk=1015181912&ga_vid=727471966.1358897355&ga_sid=1358897355&ga_hid=1981356368&ga_fc=1&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=arial&dfs=12&adx=0&ady=0&biw=1159&bih=778&oid=3&fu=0&ifi=2&dtd=207&xpc=frCyovPUhN&p=http%3A//iphonedevsdk.com" style="left:0;position:absolute;top:0" vspace=0 width=160></iframe>

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

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

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

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

#27 JavaScript::Write (size: 86, repeated: 2)

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

#28 JavaScript::Write (size: 1079, repeated: 1)

<script type="text/javascript"><!--
google_ad_client = "ca-pub-6314780011456234";
/* 160x600, created 10/27/09 */
google_ad_slot = "7523964730";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><div id='beacon_d09f9034c9' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://d.adsbyisocket.com/lg.php?bannerid=13691&amp;campaignid=671&amp;zoneid=562&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=d09f9034c9' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div><img src="http://pixel.isocket.com/pixel?oid=iox&ouid=771cb2c8aeeef5954ec150932f93d432" width="0" height="0" alt style="width:0px;height:0px" /><script type='text/javascript'>document.context='YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxfA=='; </script>

#29 JavaScript::Write (size: 872, repeated: 1)

<script type="text/javascript"><!--
google_ad_client = "ca-pub-6314780011456234";
/* Right Rail Large BUtton */
google_ad_slot = "0806303549";
google_ad_width = 180;
google_ad_height = 150;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><div id='beacon_a74dfb9e80' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://d.adsbyisocket.com/lg.php?bannerid=17450&amp;campaignid=14423&amp;zoneid=6394&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=a74dfb9e80' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div><script type='text/javascript'>document.context='YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwfA=='; </script>

#30 JavaScript::Write (size: 69, repeated: 5)

<script type='text/javascript' src='http://d.adsbyisocket.com/ajs.php

#31 JavaScript::Write (size: 310, repeated: 1)

<script type='text/javascript'>document.context='YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxfA=='; </script>

#32 JavaScript::Write (size: 105, repeated: 2)

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

#33 JavaScript::Write (size: 19, repeated: 1)

?zoneid=561&block=1

#34 JavaScript::Write (size: 19, repeated: 2)

?zoneid=562&block=1

#35 JavaScript::Write (size: 20, repeated: 2)

?zoneid=6394&block=1


HTTP Transactions (91)


Request Response
GET /ajax/libs/jquery/1.7.2/jquery.min.js HTTP/1.1

Host: ajax.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Thu, 29 Mar 2012 18:19:50 GMT
Date: Sat, 19 Jan 2013 00:47:52 GMT
Expires: Sun, 19 Jan 2014 00:47:52 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 33673
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 340881
GET /forum/iphone-sdk-development/50342-touch-drag-enter.html HTTP/1.1

Host: iphonedevsdk.com

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

Content-Type: text/html; charset=utf-8
Vary: Accept-Encoding
P3P: CP=&quot;CAO PSA OUR&quot;
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 14281
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:13 GMT
X-Varnish: 1334292805
Age: 0
Connection: keep-alive
X-Cache: MISS
GET /plugins/Polls/design/polls.css?v=1.0.3 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Tue, 17 Jul 2012 23:20:12 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1177
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334292954 1326485499
Age: 78393
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Reactions/design/reactions.css?v=1.2.2 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Sat, 17 Nov 2012 05:23:37 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 2338
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 707997978 700160142
Age: 78487
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Tagging/design/tag.css?v=1.5 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 17 Jul 2012 23:20:40 GMT
X-Cacheable: YES
Content-Length: 270
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 707997980 700144425
Age: 78638
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Warnings/design/warnings.css?v=1.0.1c HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 17 Jul 2012 23:20:12 GMT
X-Cacheable: YES
Content-Length: 701
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 707997981 700170311
Age: 78389
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /iphonedevsdk.vanillaforums.com/5BMUOKR626L1.jpg HTTP/1.1

Host: cdn.vanillaforums.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Fri, 13 Jul 2012 20:42:37 GMT
Etag: b64d6aef0036af7d2304e48fd5db86e1
Server: nginx/0.7.65
Content-Length: 12747
Accept-Ranges: bytes
x-timestamp: 1342212157.98464
x-trans-id: tx9c6af6cfc953414a81a778a976e49fc1
Cache-Control: public, max-age=127165
Expires: Thu, 24 Jan 2013 10:48:38 GMT
Date: Tue, 22 Jan 2013 23:29:13 GMT
Connection: keep-alive
GET /plugins/LastEdited/design/lastedited.css?v=1.1.1 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Tue, 15 Nov 2011 02:17:36 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 87
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334292975 1326489202
Age: 78356
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/GooglePrettify/design/prettify.css?v=1.1.1 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Wed, 30 Nov 2011 00:36:31 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 688
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334292979 1326503006
Age: 78219
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /applications/reputation/design/reputation.css?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 31 Jul 2012 15:27:52 GMT
X-Cacheable: YES
Content-Length: 911
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998001 700173993
Age: 78355
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/FileUpload/design/fileupload.css?v=1.7.0 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Mon, 23 Apr 2012 18:11:46 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1109
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998002 700188265
Age: 78219
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Emotify/design/emotify.css?v=2.0.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 17 Jul 2012 23:20:40 GMT
X-Cacheable: YES
Content-Length: 1388
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334292984 1326500593
Age: 78243
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /themes/vanillabulletin/design/custom.css?v=1.0 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Fri, 13 Jul 2012 20:18:38 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 4711
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334292998 1326498493
Age: 78264
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugin/customcss/iphonedevsdk.com/rev_24_2013-01-10-13-40-43.css?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
P3P: CP=&quot;CAO PSA OUR&quot;
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1730
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334293006 1329911492
Age: 35056
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/ButtonBar/design/buttonbar.css?v=1.2.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Mon, 26 Mar 2012 14:32:07 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 569
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334293007 1326489243
Age: 78356
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Signatures/design/signature.css?v=1.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Fri, 20 Apr 2012 00:59:41 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 143
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998017 700196041
Age: 78144
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Online/design/online.css?v=1.6.3 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 25 Oct 2012 03:12:10 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 367
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998018 700161881
Age: 78471
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /applications/dashboard/design/style.css?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Mon, 29 Oct 2012 22:03:49 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 21176
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 707997975 700213264
Age: 77976
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery.livequery.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 28 Jul 2011 19:53:24 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1450
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998034 700160081
Age: 78488
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery.gardenhandleajaxform.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Thu, 25 Oct 2012 03:13:21 GMT
X-Cacheable: YES
Content-Length: 997
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998037 700144865
Age: 78633
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery-ui-1.8.17.custom.min.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 26 Mar 2012 14:32:07 GMT
Vary: Accept-Encoding
X-Cacheable: YES
Content-Length: 21892
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998028 700173571
Age: 78359
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery.form.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Thu, 28 Jul 2011 19:53:24 GMT
X-Cacheable: YES
Content-Length: 7382
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998035 700172895
Age: 78365
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery.autogrow.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 20 Aug 2011 00:15:09 GMT
X-Cacheable: YES
Content-Length: 1843
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334293046 1326511131
Age: 78141
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/library/jquery.popup.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 18 Oct 2012 22:25:59 GMT
Vary: Accept-Encoding
X-Cacheable: YES
Content-Length: 14589
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998036 700173591
Age: 78359
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /applications/vanilla/js/discussion.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 25 Oct 2012 03:13:21 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 4877
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998062 700199220
Age: 78117
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /js/global.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sun, 18 Nov 2012 20:00:09 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 12282
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:14 GMT
X-Varnish: 1334293043 1326474419
Age: 78492
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /applications/vanilla/js/autosave.js?v=2.1a33 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 08 Nov 2011 01:55:46 GMT
X-Cacheable: YES
Content-Length: 337
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998073 700170391
Age: 78389
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/ButtonBar/js/jquery.hotkeys.js?v=1.2.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 15 Nov 2011 02:16:55 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1490
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998077 700166436
Age: 78428
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Emotify/js/emotify.js?v=2.0.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 17 Jul 2012 23:20:40 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 1372
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293062 1326505149
Age: 78198
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/FileUpload/js/fileupload.js?v=1.7.0 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 01 Dec 2012 03:16:37 GMT
X-Cacheable: YES
Content-Length: 6117
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998078 700186179
Age: 78242
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/GooglePrettify/js/prettify.js?v=1.1.1 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 30 Nov 2011 00:36:31 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 6411
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293069 1326511299
Age: 78140
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Quotes/js/quotes.js?v=1.6.6 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 25 Oct 2012 03:26:10 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 3063
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293072 1326515104
Age: 78106
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/Reactions/js/reactions.js?v=1.2.2 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 19 Mar 2012 02:21:35 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 574
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 707998100 700212558
Age: 77985
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/GoogleSignIn/design/google-icon.png HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Fri, 11 Jan 2013 17:14:37 GMT
X-Cacheable: YES
Content-Length: 1172
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293079 1326527042
Age: 77985
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /plugins/OpenID/design/openid-icon.png HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Fri, 11 Jan 2013 17:14:37 GMT
X-Cacheable: YES
Content-Length: 630
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293082 1326491749
Age: 78332
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /f1cb471f8feda71dfc5d2883612e799f_100.png HTTP/1.1

Host: wf.vanillicon.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx/1.2.3
Date: Tue, 22 Jan 2013 23:29:14 GMT
Content-Length: 3219
Last-Modified: Fri, 23 Nov 2012 16:18:41 GMT
Connection: keep-alive
Expires: Thu, 21 Feb 2013 23:29:14 GMT
Cache-Control: max-age=2592000, public
Accept-Ranges: bytes
GET /804bc482c7e108a355b94701f1ac5517_100.png HTTP/1.1

Host: w8.vanillicon.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx/1.2.3
Date: Tue, 22 Jan 2013 23:29:13 GMT
Content-Length: 2933
Last-Modified: Fri, 23 Nov 2012 15:55:19 GMT
Connection: keep-alive
Expires: Thu, 21 Feb 2013 23:29:13 GMT
Cache-Control: max-age=2592000, public
Accept-Ranges: bytes
GET /89c5fefaa959cd7abeef1b46c9f897e3_100.png HTTP/1.1

Host: w8.vanillicon.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx/1.2.3
Date: Tue, 22 Jan 2013 23:29:14 GMT
Content-Length: 3353
Last-Modified: Sat, 24 Nov 2012 22:06:09 GMT
Connection: keep-alive
Expires: Thu, 21 Feb 2013 23:29:14 GMT
Cache-Control: max-age=2592000, public
Accept-Ranges: bytes
GET /63981c41a4f68af5af922fd1ac1f6829_100.png HTTP/1.1

Host: w6.vanillicon.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/png
Server: nginx/1.2.3
Date: Tue, 22 Jan 2013 23:29:13 GMT
Content-Length: 2825
Last-Modified: Sun, 25 Nov 2012 15:28:57 GMT
Connection: keep-alive
Expires: Thu, 21 Feb 2013 23:29:13 GMT
Cache-Control: max-age=2592000, public
Accept-Ranges: bytes
GET /plugins/ButtonBar/js/buttonbar.js?v=1.2.4 HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 25 Oct 2012 03:13:21 GMT
Vary: Accept-Encoding
X-Cacheable: YES
Content-Length: 21945
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293059 1326489126
Age: 78357
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14948
Content-Encoding: gzip
Last-Modified: Wed, 07 Nov 2012 22:33:51 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Tue, 22 Jan 2013 15:47:17 GMT
Expires: Wed, 23 Jan 2013 03:47:17 GMT
Vary: Accept-Encoding
Age: 27717
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /__utm.gif?utmwv=5.3.8&utms=1&utmn=1215929630&utmhn=iphonedevsdk.com&utmcs=UTF-8&utmsr=1176x885&utmvp=1176x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Touch%20Drag%20Enter%3F%20-%20iPhone%20Dev%20SDK&utmhid=1981356368&utmr=-&utmp=%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&utmac=UA-11294186-1&utmcc=__utma%3D170448760.727471966.1358897355.1358897355.1358897355.1%3B%2B__utmz%3D170448760.1358897355.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=qB~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.8&amp;utms=1&amp;utmn=1215929630&amp;utmhn=iphonedevsdk.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=1176x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Touch%20Drag%20Enter%3F%20-%20iPhone%20Dev%20SDK&amp;utmhid=1981356368&amp;utmr=-&amp;utmp=%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;utmac=UA-11294186-1&amp;utmcc=__utma%3D170448760.727471966.1358897355.1358897355.1358897355.1%3B%2B__utmz%3D170448760.1358897355.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=qB~ 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 17 Jan 2013 15:47:18 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 459716
Server: GFE/2.0
GET /ajs.php?zoneid=561&block=1&cb=66095462424&charset=UTF-8&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html HTTP/1.1

Host: d.adsbyisocket.com
GET /ajs.php?zoneid=561&amp;block=1&amp;cb=66095462424&amp;charset=UTF-8&amp;loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:14 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:14 GMT; path=/
X-Powered-By: PHP/5.2.10
Content-Length: 1261
Connection: keep-alive
GET /lg.php?bannerid=18885&campaignid=15722&zoneid=561&loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&cb=feac460981 HTTP/1.1

Host: d.adsbyisocket.com
GET /lg.php?bannerid=18885&amp;campaignid=15722&amp;zoneid=561&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=feac460981 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:14 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:14 GMT; path=/; domain=adsbyisocket.com
X-Powered-By: PHP/5.2.10
Content-Length: 43
Connection: keep-alive
GET /MRT/view/429762073/direct;wi.728;hi.90/01/ HTTP/1.1

Host: view.atdmt.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 302 Object moved

HTTP/1.1 302 Object moved
Cache-Control: no-store
Content-Length: 0
Expires: 0
Location: http://spe.atdmt.com/b/NMMRTSMGUWDS/Win8_Quote_728x90.jpg
X-MSADID: 306911033
X-Powered-By: ASP.NET
Date: Tue, 22 Jan 2013 23:29:14 GMT
Connection: close
GET /themes/vanillabulletin/design/crust.png HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/themes/vanillabulletin/design/custom.css?v=1.0
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Fri, 13 Jul 2012 20:18:38 GMT
X-Cacheable: YES
Content-Length: 242
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293137 1326508882
Age: 78163
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /themes/vanillabulletin/design/tagsprites.png HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/themes/vanillabulletin/design/custom.css?v=1.0
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Fri, 13 Jul 2012 20:18:38 GMT
X-Cacheable: YES
Content-Length: 2263
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:15 GMT
X-Varnish: 1334293139 1326495192
Age: 78299
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /cache.js?1358897354865 HTTP/1.1

Host: min.liveanalytics.org

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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Date: Tue, 22 Jan 2013 23:21:31 GMT
Content-Length: 314
Connection: close
GET /applications/dashboard/design/images/sprites.png HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/themes/vanillabulletin/design/custom.css?v=1.0
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Fri, 11 Jan 2013 17:14:36 GMT
X-Cacheable: YES
Content-Length: 19572
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:16 GMT
X-Varnish: 707998169 700159662
Age: 78493
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /ajs.php?zoneid=562&block=1&cb=48335703304&exclude=,bannerid:18885,campaignid:15722,&charset=UTF-8&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&context=YjoxODg4NSNjOjE1NzIyfA%3D%3D HTTP/1.1

Host: d.adsbyisocket.com
GET /ajs.php?zoneid=562&amp;block=1&amp;cb=48335703304&amp;exclude=,bannerid:18885,campaignid:15722,&amp;charset=UTF-8&amp;loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&amp;context=YjoxODg4NSNjOjE1NzIyfA%3D%3D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:15 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:15 GMT; path=/
X-Powered-By: PHP/5.2.10
Content-Length: 1324
Connection: keep-alive
GET /b/NMMRTSMGUWDS/Win8_Quote_728x90.jpg HTTP/1.1

Host: spe.atdmt.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: image/jpeg
Content-Length: 14375
Allow: GET
Expires: Fri, 25 Jan 2013 14:00:14 GMT
Date: Tue, 22 Jan 2013 23:29:15 GMT
Connection: keep-alive
GET /jquery.js?ummrznjf HTTP/1.1

Host: min.liveanalytics.org

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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Date: Tue, 22 Jan 2013 23:21:31 GMT
Content-Length: 64630
Connection: close
GET /MRT/view/429762074/direct;wi.160;hi.600/01/ HTTP/1.1

Host: view.atdmt.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 302 Object moved

HTTP/1.1 302 Object moved
Cache-Control: no-store
Content-Length: 0
Expires: 0
Location: http://spe.atdmt.com/b/NMMRTSMGUWDS/Win8Dev_Quote_GS_160x600.jpg
X-MSADID: 302744635
X-Powered-By: ASP.NET
Date: Tue, 22 Jan 2013 23:29:15 GMT
Connection: close
GET /lg.php?bannerid=18886&campaignid=15723&zoneid=562&loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&cb=2ae3a8e219 HTTP/1.1

Host: d.adsbyisocket.com
GET /lg.php?bannerid=18886&amp;campaignid=15723&amp;zoneid=562&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=2ae3a8e219 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:16 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:16 GMT; path=/; domain=adsbyisocket.com
X-Powered-By: PHP/5.2.10
Content-Length: 43
Connection: keep-alive
GET /b/NMMRTSMGUWDS/Win8Dev_Quote_GS_160x600.jpg HTTP/1.1

Host: spe.atdmt.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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: image/jpeg
Content-Length: 11931
Allow: GET
Expires: Thu, 24 Jan 2013 10:18:20 GMT
Date: Tue, 22 Jan 2013 23:29:16 GMT
Connection: keep-alive
GET /ajs.php?zoneid=6394&block=1&cb=8451880250&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,&charset=UTF-8&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjN8 HTTP/1.1

Host: d.adsbyisocket.com
GET /ajs.php?zoneid=6394&amp;block=1&amp;cb=8451880250&amp;exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,&amp;charset=UTF-8&amp;loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&amp;context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjN8 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:16 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:16 GMT; path=/
X-Powered-By: PHP/5.2.10
Content-Length: 1398
Connection: keep-alive
GET /empty.htm?id=0&ts=1358897356345&n=fp&s=eyJicm93c2VyIjoiRmlyZWZveCIsInVhIjoiTW96aWxsYSU1Qy81LjAlMjAlMjhXaW5kb3dzJTNCJTIwVSUzQiUyMFdpbmRvd3MlMjBOVCUyMDYuMSUzQiUyMGVuLVVTJTNCJTIwcnYlM0ExLjkuMi4xMyUyOSUyMEdlY2tvJTVDLzIwMTAxMjAzJTIwRmlyZWZveCU1Qy8zLjYuMTMiLCJwcm9kdWN0IjoiR2Vja28iLCJwbHVnaW5zIjp7Ik1vemlsbGElMjBEZWZhdWx0JTIwUGx1Zy1pbiI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxLjAuMC4xNSJ9LCJTaG9ja3dhdmUlMjBGbGFzaCI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxMC4wLjQ1LjIifSwiSmF2YSUyOFRNJTI5JTIwUGxhdGZvcm0lMjBTRSUyMDYlMjBVMjYiOnsiaW5zdGFsbGVkIjp0cnVlLCJ2ZXJzaW9uIjoiNi4wLjI2MC4zIn0sIkphdmElMjBEZXBsb3ltZW50JTIwVG9vbGtpdCUyMDYuMC4yNjAuMyI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiI2LjAuMjYwLjMifSwiQWRvYmUlMjBBY3JvYmF0Ijp7Imluc3RhbGxlZCI6dHJ1ZSwidmVyc2lvbiI6IjguMC4wLjQ1NiJ9LCJNaWNyb3NvZnQlQUUlMjBEUk0iOnsiaW5zdGFsbGVkIjp0cnVlLCJ2ZXJzaW9uIjoiOS4wLjAuNDUwMyJ9LCJXaW5kb3dzJTIwTWVkaWElMjBQbGF5ZXIlMjBQbHVnLWluJTIwRHluYW1pYyUyMExpbmslMjBMaWJyYXJ5Ijp7Imluc3RhbGxlZCI6dHJ1ZSwidmVyc2lvbiI6IjMuMC4yLjYyOSJ9LCJhY3JvYmF0Ijp7Imluc3RhbGxlZCI6ZmFsc2UsInZlcnNpb24iOm51bGx9LCJmbGFzaCI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxMC4wLjQ1LjIifSwic2hvY2t3YXZlIjp7Imluc3RhbGxlZCI6ZmFsc2UsInZlcnNpb24iOm51bGx9LCJTaWx2ZXJsaWdodCUyMFBsdWctSW4iOnsiaW5zdGFsbGVkIjpmYWxzZSwidmVyc2lvbiI6bnVsbH0sIndtcCI6eyJpbnN0YWxsZWQiOmZhbHNlLCJ2ZXJzaW9uIjpudWxsfSwicmVhbCI6eyJpbnN0YWxsZWQiOmZhbHNlLCJ2ZXJzaW9uIjpudWxsfSwiamF2YSI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxLjYuMF8yNiJ9fX0= HTTP/1.1

Host: min.liveanalytics.org
GET /empty.htm?id=0&amp;ts=1358897356345&amp;n=fp&amp;s=eyJicm93c2VyIjoiRmlyZWZveCIsInVhIjoiTW96aWxsYSU1Qy81LjAlMjAlMjhXaW5kb3dzJTNCJTIwVSUzQiUyMFdpbmRvd3MlMjBOVCUyMDYuMSUzQiUyMGVuLVVTJTNCJTIwcnYlM0ExLjkuMi4xMyUyOSUyMEdlY2tvJTVDLzIwMTAxMjAzJTIwRmlyZWZveCU1Qy8zLjYuMTMiLCJwcm9kdWN0IjoiR2Vja28iLCJwbHVnaW5zIjp7Ik1vemlsbGElMjBEZWZhdWx0JTIwUGx1Zy1pbiI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxLjAuMC4xNSJ9LCJTaG9ja3dhdmUlMjBGbGFzaCI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxMC4wLjQ1LjIifSwiSmF2YSUyOFRNJTI5JTIwUGxhdGZvcm0lMjBTRSUyMDYlMjBVMjYiOnsiaW5zdGFsbGVkIjp0cnVlLCJ2ZXJzaW9uIjoiNi4wLjI2MC4zIn0sIkphdmElMjBEZXBsb3ltZW50JTIwVG9vbGtpdCUyMDYuMC4yNjAuMyI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiI2LjAuMjYwLjMifSwiQWRvYmUlMjBBY3JvYmF0Ijp7Imluc3RhbGxlZCI6dHJ1ZSwidmVyc2lvbiI6IjguMC4wLjQ1NiJ9LCJNaWNyb3NvZnQlQUUlMjBEUk0iOnsiaW5zdGFsbGVkIjp0cnVlLCJ2ZXJzaW9uIjoiOS4wLjAuNDUwMyJ9LCJXaW5kb3dzJTIwTWVkaWElMjBQbGF5ZXIlMjBQbHVnLWluJTIwRHluYW1pYyUyMExpbmslMjBMaWJyYXJ5Ijp7Imluc3RhbGxlZCI6dHJ1ZSwidmVyc2lvbiI6IjMuMC4yLjYyOSJ9LCJhY3JvYmF0Ijp7Imluc3RhbGxlZCI6ZmFsc2UsInZlcnNpb24iOm51bGx9LCJmbGFzaCI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxMC4wLjQ1LjIifSwic2hvY2t3YXZlIjp7Imluc3RhbGxlZCI6ZmFsc2UsInZlcnNpb24iOm51bGx9LCJTaWx2ZXJsaWdodCUyMFBsdWctSW4iOnsiaW5zdGFsbGVkIjpmYWxzZSwidmVyc2lvbiI6bnVsbH0sIndtcCI6eyJpbnN0YWxsZWQiOmZhbHNlLCJ2ZXJzaW9uIjpudWxsfSwicmVhbCI6eyJpbnN0YWxsZWQiOmZhbHNlLCJ2ZXJzaW9uIjpudWxsfSwiamF2YSI6eyJpbnN0YWxsZWQiOnRydWUsInZlcnNpb24iOiIxLjYuMF8yNiJ9fX0= HTTP/1.1

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

Content-Type: text/html
Server: Apache
Date: Tue, 22 Jan 2013 23:21:32 GMT
Content-Length: 0
Connection: close
GET /pagead/show_ads.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
If-None-Match: 15032493890200785914
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 10873360525379793723
Date: Tue, 22 Jan 2013 22:36:16 GMT
Expires: Tue, 22 Jan 2013 23:36:16 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 5685
X-XSS-Protection: 1; mode=block
Age: 3180
Cache-Control: public, max-age=3600
GET /lg.php?bannerid=17450&campaignid=14423&zoneid=6394&loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&cb=a74dfb9e80 HTTP/1.1

Host: d.adsbyisocket.com
GET /lg.php?bannerid=17450&amp;campaignid=14423&amp;zoneid=6394&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=a74dfb9e80 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:16 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:16 GMT; path=/; domain=adsbyisocket.com
X-Powered-By: PHP/5.2.10
Content-Length: 43
Connection: keep-alive
GET /pagead/js/r20130116/r20121214/show_ads_impl.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 15015325597873957855
Date: Thu, 17 Jan 2013 05:33:13 GMT
Expires: Thu, 31 Jan 2013 05:33:13 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 20690
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=1209600
Age: 496563
GET /pagead/html/r20130116/r20121214/zrt_lookup.html HTTP/1.1

Host: googleads.g.doubleclick.net

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

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Etag: 5879542338625536652
Date: Thu, 17 Jan 2013 04:52:06 GMT
Expires: Thu, 31 Jan 2013 04:52:06 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Server: cafe
Content-Length: 1146
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=1209600
Age: 499030
GET /ajs.php?zoneid=562&block=1&cb=66484812031&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,&charset=UTF-8&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwfA%3D%3D HTTP/1.1

Host: d.adsbyisocket.com
GET /ajs.php?zoneid=562&amp;block=1&amp;cb=66484812031&amp;exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,&amp;charset=UTF-8&amp;loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&amp;context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwfA%3D%3D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:16 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:16 GMT; path=/
X-Powered-By: PHP/5.2.10
Content-Length: 1616
Connection: keep-alive
GET /pagead/expansion_embed.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 12161258607212233197
Date: Tue, 22 Jan 2013 15:47:18 GMT
Expires: Wed, 23 Jan 2013 15:47:18 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 25659
X-XSS-Protection: 1; mode=block
Age: 27718
Cache-Control: public, max-age=86400
GET /pagead/osd.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
If-None-Match: 13350759849962699205
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 14694200857934513965
Date: Tue, 22 Jan 2013 22:30:55 GMT
Expires: Tue, 22 Jan 2013 23:30:55 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 6842
X-XSS-Protection: 1; mode=block
Age: 3502
Cache-Control: public, max-age=3600
GET /lg.php?bannerid=13691&campaignid=671&zoneid=562&loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&cb=d09f9034c9 HTTP/1.1

Host: d.adsbyisocket.com
GET /lg.php?bannerid=13691&amp;campaignid=671&amp;zoneid=562&amp;loc=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;cb=d09f9034c9 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:16 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:16 GMT; path=/; domain=adsbyisocket.com
X-Powered-By: PHP/5.2.10
Content-Length: 43
Connection: keep-alive
GET /ajs.php?zoneid=6394&block=1&cb=97909814719&exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,bannerid:13691,&charset=UTF-8&loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxfA%3D%3D HTTP/1.1

Host: d.adsbyisocket.com
GET /ajs.php?zoneid=6394&amp;block=1&amp;cb=97909814719&amp;exclude=,bannerid:18885,campaignid:15722,bannerid:18886,campaignid:15723,bannerid:17450,bannerid:13691,&amp;charset=UTF-8&amp;loc=http%3A//iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html&amp;context=YjoxODg4NSNjOjE1NzIyI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxODg4NSNjOjE1NzIyI2I6MTg4ODYjYzoxNTcyMyNiOjE3NDUwI2I6MTg4ODUjYzoxNTcyMiNiOjE4ODg2I2M6MTU3MjMjYjoxNzQ1MCNiOjEzNjkxfA%3D%3D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; OAID=771cb2c8aeeef5954ec150932f93d432
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Cache-Control: private, max-age=0, no-cache
Date: Tue, 22 Jan 2013 23:29:17 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Pragma: no-cache
Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10
Set-Cookie: OAID=771cb2c8aeeef5954ec150932f93d432; expires=Wed, 22-Jan-2014 23:29:17 GMT; path=/
X-Powered-By: PHP/5.2.10
Content-Length: 391
Connection: keep-alive
GET /pagead/ads?client=ca-pub-6314780011456234&output=html&h=150&slotname=0806303549&w=180&lmt=1358897353&flash=10.0.45&url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&dt=1358897356726&bpp=5&shv=r20130116&jsv=r20121214&correlator=1358897356865&frm=20&adk=3972000131&ga_vid=727471966.1358897355&ga_sid=1358897355&ga_hid=1981356368&ga_fc=1&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=arial&dfs=12&adx=924&ady=829&biw=1159&bih=778&oid=3&fu=0&ifi=1&dtd=270&xpc=BgcS1NXpYX&p=http%3A//iphonedevsdk.com HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=150&amp;slotname=0806303549&amp;w=180&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356726&amp;bpp=5&amp;shv=r20130116&amp;jsv=r20121214&amp;correlator=1358897356865&amp;frm=20&amp;adk=3972000131&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=924&amp;ady=829&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=270&amp;xpc=BgcS1NXpYX&amp;p=http%3A//iphonedevsdk.com HTTP/1.1

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

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Tue, 22 Jan 2013 23:29:17 GMT
Server: cafe
Cache-Control: private
Content-Length: 8768
X-XSS-Protection: 1; mode=block
GET /images/sprites-14-000000.png HTTP/1.1

Host: cdn.vanillaforums.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://iphonedevsdk.com/plugin/customcss/iphonedevsdk.com/rev_24_2013-01-10-13-40-43.css?v=2.1a33
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 25 Oct 2012 04:49:16 GMT
Etag: a4ae2367492bfdce2aab83183501e4ca
x-timestamp: 1351140556.78889
Accept-Ranges: bytes
Content-Length: 15210
x-trans-id: txea21b29d25554355a0c035eb0b470482
Cache-Control: public, max-age=188937
Expires: Fri, 25 Jan 2013 03:58:14 GMT
Date: Tue, 22 Jan 2013 23:29:17 GMT
Connection: keep-alive
GET /pixel?oid=iox&ouid=771cb2c8aeeef5954ec150932f93d432 HTTP/1.1

Host: pixel.isocket.com
GET /pixel?oid=iox&amp;ouid=771cb2c8aeeef5954ec150932f93d432 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://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 22 Jan 2013 23:31:30 GMT
Set-Cookie: iid=574e12c1-9a6f-4e9f-a338-6b97e5f19902; Max-Age=31536000000; Path=/; Expires=Wed, 22 Jan 2014 23:31:30 GMT; HttpOnly
X-Powered-By: Express
Transfer-Encoding: chunked
Connection: keep-alive
GET /plugins/Emotify/design/images/1.gif HTTP/1.1

Host: iphonedevsdk.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://iphonedevsdk.com/plugins/Emotify/design/emotify.css?v=2.0.4
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Fri, 11 Jan 2013 17:14:37 GMT
X-Cacheable: YES
Content-Length: 548
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:18 GMT
X-Varnish: 707998396 700340234
Age: 76687
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /pagead/ads?client=ca-pub-6314780011456234&output=html&h=600&slotname=7523964730&w=160&lmt=1358897353&flash=10.0.45&url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&dt=1358897356899&bpp=6&shv=r20130116&jsv=r20121214&prev_slotnames=0806303549&correlator=1358897356865&frm=20&adk=1015181912&ga_vid=727471966.1358897355&ga_sid=1358897355&ga_hid=1981356368&ga_fc=1&u_tz=60&u_his=1&u_java=1&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_nplug=8&u_nmime=54&dff=arial&dfs=12&adx=0&ady=0&biw=1159&bih=778&oid=3&fu=0&ifi=2&dtd=207&xpc=frCyovPUhN&p=http%3A//iphonedevsdk.com HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com HTTP/1.1

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

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Tue, 22 Jan 2013 23:29:17 GMT
Server: cafe
Cache-Control: private
Content-Length: 3709
X-XSS-Protection: 1; mode=block
GET /pagead/images/mobile_unified_button_icon_black.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=150&amp;slotname=0806303549&amp;w=180&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356726&amp;bpp=5&amp;shv=r20130116&amp;jsv=r20121214&amp;correlator=1358897356865&amp;frm=20&amp;adk=3972000131&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=924&amp;ady=829&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=270&amp;xpc=BgcS1NXpYX&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 1132952957576816056
Date: Tue, 22 Jan 2013 14:30:51 GMT
Expires: Wed, 23 Jan 2013 14:30:51 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 281
X-XSS-Protection: 1; mode=block
Age: 32306
Cache-Control: public, max-age=86400
GET /pagead/js/r20130116/r20110914/abg.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 43657403843198983
Date: Tue, 22 Jan 2013 13:13:35 GMT
Expires: Tue, 05 Feb 2013 13:13:35 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 366
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=1209600
Age: 36942
GET /pagead/js/graphics.js HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=150&amp;slotname=0806303549&amp;w=180&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356726&amp;bpp=5&amp;shv=r20130116&amp;jsv=r20121214&amp;correlator=1358897356865&amp;frm=20&amp;adk=3972000131&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=924&amp;ady=829&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=270&amp;xpc=BgcS1NXpYX&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 4145769798363924168
Date: Tue, 22 Jan 2013 15:47:18 GMT
Expires: Wed, 23 Jan 2013 15:47:18 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 2401
X-XSS-Protection: 1; mode=block
Age: 27719
Cache-Control: public, max-age=86400
GET /pagead/images/adchoices/en.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
If-None-Match: 8618641207806323095
HTTP/1.1 304 Not Modified

HTTP/1.1 304 Not Modified
Date: Tue, 22 Jan 2013 15:47:18 GMT
Expires: Wed, 23 Jan 2013 15:47:18 GMT
Age: 27719
Etag: 8618641207806323095
Server: GFE/2.0
GET /pagead/images/adchoices/en-000000.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=150&amp;slotname=0806303549&amp;w=180&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356726&amp;bpp=5&amp;shv=r20130116&amp;jsv=r20121214&amp;correlator=1358897356865&amp;frm=20&amp;adk=3972000131&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=924&amp;ady=829&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=270&amp;xpc=BgcS1NXpYX&amp;p=http%3A//iphonedevsdk.com
If-None-Match: 18279353533856781039
HTTP/1.1 304 Not Modified

HTTP/1.1 304 Not Modified
Date: Tue, 22 Jan 2013 15:47:23 GMT
Expires: Wed, 23 Jan 2013 15:47:23 GMT
Age: 27714
Etag: 18279353533856781039
Server: GFE/2.0
GET /pagead/images/adchoices/icon.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
If-None-Match: 426692510519060060
HTTP/1.1 304 Not Modified

HTTP/1.1 304 Not Modified
Date: Tue, 22 Jan 2013 15:47:17 GMT
Expires: Wed, 23 Jan 2013 15:47:17 GMT
Age: 27720
Etag: 426692510519060060
Server: GFE/2.0
GET /pagead/images/x_button.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 11716456811728123628
Date: Tue, 22 Jan 2013 15:47:25 GMT
Expires: Wed, 23 Jan 2013 15:47:25 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 159
X-XSS-Protection: 1; mode=block
Age: 27712
Cache-Control: public, max-age=86400
GET /pagead/drt/s?v=r20120211 HTTP/1.1

Host: googleads.g.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Date: Tue, 22 Jan 2013 22:36:26 GMT
Server: safe
Content-Length: 141
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=3600
Age: 3171
GET /pagead/images/x_button_dark.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 17994598330340787634
Date: Tue, 22 Jan 2013 15:47:25 GMT
Expires: Wed, 23 Jan 2013 15:47:25 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 158
X-XSS-Protection: 1; mode=block
Age: 27712
Cache-Control: public, max-age=86400
GET /pagead/images/green-check.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 17734124060297529551
Date: Tue, 22 Jan 2013 15:47:25 GMT
Expires: Wed, 23 Jan 2013 15:47:25 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 394
X-XSS-Protection: 1; mode=block
Age: 27712
Cache-Control: public, max-age=86400
GET /pagead/images/google-logo.png HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: image/png
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 13513653691308934734
Date: Tue, 22 Jan 2013 15:47:25 GMT
Expires: Wed, 23 Jan 2013 15:47:25 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 4114
X-XSS-Protection: 1; mode=block
Age: 27712
Cache-Control: public, max-age=86400
POST /settings/analyticstick.json HTTP/1.1

Host: iphonedevsdk.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: application/json, text/javascript, */*; q=0.01
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With: XMLHttpRequest
Referer: http://iphonedevsdk.com/forum/iphone-sdk-development/50342-touch-drag-enter.html
Content-Length: 317
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Pragma: no-cache
Cache-Control: no-cache
HTTP/1.1 200 OK

Content-Type: application/json
Vary: Accept-Encoding
Content-Encoding: gzip
P3P: CP=&quot;CAO PSA OUR&quot;
Set-Cookie: vf_iphonedevsdk_A2IC2=deleted; expires=Mon, 23-Jan-2012 23:29:15 GMT; path=/; domain=.iphonedevsdk.com vf_iphonedevsdk_A2IC2=deleted; expires=Mon, 23-Jan-2012 23:29:15 GMT; path=/; domain=.iphonedevsdk.com vf_iphonedevsdk_A2IC2-Vv=1358897356; expires=Tue, 22-Jan-2013 23:49:16 GMT; path=/
Content-Length: 22
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:19 GMT
X-Varnish: 707998449
Age: 0
Connection: keep-alive
X-Cache: MISS
GET /pagead/drt/ui HTTP/1.1

Host: www.google.com

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

Content-Type: text/html; charset=UTF-8
Location: https://googleads.g.doubleclick.net/pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUP8kUny1z_YloRLyt6cDcOUdGmZnBsac
Cache-Control: private
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Tue, 22 Jan 2013 23:29:18 GMT
Server: safe
Content-Length: 304
X-XSS-Protection: 1; mode=block
GET /bg/ao7cfjproEEAn5OijXEgfdHyA_5BKye5jml3JCZ7KvU.js HTTP/1.1

Host: www.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=150&amp;slotname=0806303549&amp;w=180&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356726&amp;bpp=5&amp;shv=r20130116&amp;jsv=r20121214&amp;correlator=1358897356865&amp;frm=20&amp;adk=3972000131&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=924&amp;ady=829&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=1&amp;dtd=270&amp;xpc=BgcS1NXpYX&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 15 Jan 2013 11:28:13 GMT
Date: Tue, 22 Jan 2013 18:18:35 GMT
Expires: Wed, 30 Jan 2013 18:18:35 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 3315
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=691200
Age: 18643
GET /pagead/drt/ui HTTP/1.1

Host: www.google.com

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

Content-Type: text/html; charset=UTF-8
Location: https://googleads.g.doubleclick.net/pagead/drt/si?p=CAA&amp;ut=AFAKxlQAAAAAUP8kUny1z_YloRLyt6cDcOUdGmZnBsac
Cache-Control: private
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Tue, 22 Jan 2013 23:29:18 GMT
Server: safe
Content-Length: 304
X-XSS-Protection: 1; mode=block
GET /pagead/drt/si?p=CAA&ut=AFAKxlQAAAAAUP8kUny1z_YloRLyt6cDcOUdGmZnBsac HTTP/1.1

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

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

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

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

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

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Set-Cookie: _drt_=NO_DATA; expires=Wed, 23-Jan-2013 11:29:18 GMT; path=/; domain=.doubleclick.net; HttpOnly
X-Frame-Options: ALLOWALL
X-Content-Type-Options: nosniff
Date: Tue, 22 Jan 2013 23:29:18 GMT
Server: safe
Content-Length: 0
X-XSS-Protection: 1; mode=block
Expires: Tue, 22 Jan 2013 23:29:18 GMT
Cache-Control: private
GET /favicon.ico HTTP/1.1

Host: iphonedevsdk.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); vf_iphonedevsdk_A2IC2-Vv=1358897356
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=utf-8
Vary: Accept-Encoding
P3P: CP=&quot;CAO PSA OUR&quot;
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 3027
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:20 GMT
X-Varnish: 1334293795 1326514171
Age: 78120
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT
GET /pagead/imgad?id=CICAgKD1gurzKRCgARjYBDIInmBfv141_Ac HTTP/1.1

Host: pagead2.googlesyndication.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6314780011456234&amp;output=html&amp;h=600&amp;slotname=7523964730&amp;w=160&amp;lmt=1358897353&amp;flash=10.0.45&amp;url=http%3A%2F%2Fiphonedevsdk.com%2Fforum%2Fiphone-sdk-development%2F50342-touch-drag-enter.html&amp;dt=1358897356899&amp;bpp=6&amp;shv=r20130116&amp;jsv=r20121214&amp;prev_slotnames=0806303549&amp;correlator=1358897356865&amp;frm=20&amp;adk=1015181912&amp;ga_vid=727471966.1358897355&amp;ga_sid=1358897355&amp;ga_hid=1981356368&amp;ga_fc=1&amp;u_tz=60&amp;u_his=1&amp;u_java=1&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_nplug=8&amp;u_nmime=54&amp;dff=arial&amp;dfs=12&amp;adx=0&amp;ady=0&amp;biw=1159&amp;bih=778&amp;oid=3&amp;fu=0&amp;ifi=2&amp;dtd=207&amp;xpc=frCyovPUhN&amp;p=http%3A//iphonedevsdk.com
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Date: Mon, 21 Jan 2013 10:22:31 GMT
Expires: Mon, 28 Jan 2013 10:22:31 GMT
X-Content-Type-Options: nosniff
Server: cafe
Content-Length: 39634
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=604800
Age: 133606
GET /favicon.ico HTTP/1.1

Host: iphonedevsdk.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
Cookie: __utma=170448760.727471966.1358897355.1358897355.1358897355.1; __utmb=170448760.1.10.1358897355; __utmc=170448760; __utmz=170448760.1358897355.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); vf_iphonedevsdk_A2IC2-Vv=1358897356
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=utf-8
Vary: Accept-Encoding
P3P: CP=&quot;CAO PSA OUR&quot;
Content-Encoding: gzip
X-Cacheable: YES
Content-Length: 3027
Accept-Ranges: bytes
Date: Tue, 22 Jan 2013 23:29:19 GMT
X-Varnish: 1334293569 1326514171
Age: 78118
Connection: keep-alive
Expires: 31 December 2037 23:59:59 GMT
Cache-Control: max-age=315360000
X-Cache: HIT