Overview

URLhttp://www.singaporenewlaunches.com.sg/
IP174.121.160.20
ASNAS21844 ThePlanet.com Internet Services, Inc.
Location United States
Report completed2012-11-29 03:06:24 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 No alerts detected
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-29 03:05:53 urlQuery Client 173.194.32.22ssp_ssl: Invalid Client HELLO after Server HELLO Detected
2012-11-29 03:05:53 urlQuery Client 173.194.32.22ssp_ssl: Invalid Client HELLO after Server HELLO Detected


Recent reports on same IP/ASN/Domain

Last 2 reports on IP: 174.121.160.20

Date Alerts / IDS URL IP
2013-02-26 22:19:060 / 0http://174.121.160.20174.121.160.20
2012-11-01 20:55:560 / 2http://www.thesennettresidence.com.sg/174.121.160.20

Last 6 reports on ASN: AS21844 ThePlanet.com Internet Services, Inc.

Date Alerts / IDS URL IP
2013-03-22 19:26:180 / 4http://picasa.com.travelpeople.travel/jahat.php74.52.74.148
2013-03-22 19:22:332 / 4http://www.teenbloggerkid.com/tag/contact-=174.120.119.93
2013-03-22 19:21:341 / 0http://comoaumentarelbusto.com/ocwi.html?i=1239337174.120.172.125
2013-03-22 19:17:340 / 0http://cure-for-sleep-apnea.net/promo/page/174.121.37.3
2013-03-22 19:09:040 / 0http://www.techvocal.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=3.3.369.56.204.46
2013-03-22 19:05:270 / 0http://curezone.com/forums/fm.asp?i=2047930174.123.138.18



JavaScript

Executed Scripts (31)


Executed Evals (1)

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

jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend(jQuery.easing, {
    def: 'easeOutQuad',
    swing: function(x, t, b, c, d) {
        return jQuery.easing[jQuery.easing.def](x, t, b, c, d)
    },
    easeInQuad: function(x, t, b, c, d) {
        return c * (t /= d) * t + b
    },
    easeOutQuad: function(x, t, b, c, d) {
        return -c * (t /= d) * (t - 2) + b
    },
    easeInOutQuad: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t + b;
        return -c / 2 * ((--t) * (t - 2) - 1) + b
    },
    easeInCubic: function(x, t, b, c, d) {
        return c * (t /= d) * t * t + b
    },
    easeOutCubic: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t + 1) + b
    },
    easeInOutCubic: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t + 2) + b
    },
    easeInQuart: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t + b
    },
    easeOutQuart: function(x, t, b, c, d) {
        return -c * ((t = t / d - 1) * t * t * t - 1) + b
    },
    easeInOutQuart: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
        return -c / 2 * ((t -= 2) * t * t * t - 2) + b
    },
    easeInQuint: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t * t + b
    },
    easeOutQuint: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t * t * t + 1) + b
    },
    easeInOutQuint: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t * t * t + 2) + b
    },
    easeInSine: function(x, t, b, c, d) {
        return -c * Math.cos(t / d * (Math.PI / 2)) + c + b
    },
    easeOutSine: function(x, t, b, c, d) {
        return c * Math.sin(t / d * (Math.PI / 2)) + b
    },
    easeInOutSine: function(x, t, b, c, d) {
        return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
    },
    easeInExpo: function(x, t, b, c, d) {
        return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b
    },
    easeOutExpo: function(x, t, b, c, d) {
        return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b
    },
    easeInOutExpo: function(x, t, b, c, d) {
        if (t == 0) return b;
        if (t == d) return b + c;
        if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
        return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b
    },
    easeInCirc: function(x, t, b, c, d) {
        return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b
    },
    easeOutCirc: function(x, t, b, c, d) {
        return c * Math.sqrt(1 - (t = t / d - 1) * t) + b
    },
    easeInOutCirc: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
        return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b
    },
    easeInElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b
    },
    easeOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b
    },
    easeInOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d / 2) == 2) return b + c;
        if (!p) p = d * (.3 * 1.5);
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
        return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b
    },
    easeInBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * (t /= d) * t * ((s + 1) * t - s) + b
    },
    easeOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b
    },
    easeInOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
        return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b
    },
    easeInBounce: function(x, t, b, c, d) {
        return c - jQuery.easing.easeOutBounce(x, d - t, 0, c, d) + b
    },
    easeOutBounce: function(x, t, b, c, d) {
        if ((t /= d) < (1 / 2.75)) {
            return c * (7.5625 * t * t) + b
        } else if (t < (2 / 2.75)) {
            return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b
        } else if (t < (2.5 / 2.75)) {
            return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b
        } else {
            return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b
        }
    },
    easeInOutBounce: function(x, t, b, c, d) {
        if (t < d / 2) return jQuery.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b;
        return jQuery.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b
    }
});

Executed Writes (17)

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

 <param name="FlashVars" value="big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/"/>

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

 <param name="FlashVars" value="ico=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/small.jpg"/>

#3 JavaScript::Write (size: 50, repeated: 2)

 <param name="allowScriptAccess" value="always"/> 

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

 <param name="movie" value="http://www.singaporenewlaunches.com.sg/wp-content/plugins/page-peel/pp_big.swf?big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/"/>

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

 <param name="movie" value="http://www.singaporenewlaunches.com.sg/wp-content/plugins/page-peel/pp_sm.swf?ico=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/small.jpg"/>

#6 JavaScript::Write (size: 39, repeated: 2)

 <param name="quality" value="high" /> 

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

 <param name="wmode" value="transparent" />

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

 <param name="wmode" value="transparent"/>

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

 id="ppocornerBigObject" width="650" height="650">

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

 id="ppocornerSmallObject" width="100" height="100">

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

</object></div>

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

<div id="ppocornerBig" style="position:absolute;width:650px;height:650px;z-index:9999999;right:0px;top:0px;">

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

<div id="ppocornerSmall" style="position:absolute;width:100px;height:100px;z-index:9999999;right:0px;top:0px;">

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

<embed src="http://www.singaporenewlaunches.com.sg/wp-content/plugins/page-peel/pp_big.swf?big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/" id="ppocornerBigEmbed" name="ppocornerBigObject" wmode="transparent" quality="high" width="650" height="650" flashvars="big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>

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

<embed src="http://www.singaporenewlaunches.com.sg/wp-content/plugins/page-peel/pp_sm.swf?ico=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/small.jpg" name="ppocornerSmallObject" wmode="transparent" quality="high" width="100" height="100" flashvars="ico=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/small.jpg" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>

#16 JavaScript::Write (size: 60, repeated: 2)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"

#17 JavaScript::Write (size: 95, repeated: 2)

codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"


HTTP Transactions (82)


Request Response
GET /wp-content/plugins/twitter-facebook-google-plusone-share/tfg_style.css?ver=3.4.1 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 29 Nov 2012 02:05:47 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 07 Aug 2012 16:49:01 GMT
Etag: &quot;55004b2-120-4c6afc571f940&quot;
Accept-Ranges: bytes
Content-Length: 288
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/shortcodes/shortcodes.css?ver=2.0 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 29 Nov 2012 02:05:47 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108226-6b67-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 27495
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-content/themes/eNews/style.css HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 29 Nov 2012 02:05:47 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 13 Aug 2012 14:02:45 GMT
Etag: &quot;51081b9-7d5d-4c72625e08b40&quot;
Accept-Ranges: bytes
Content-Length: 32093
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/page_templates/page_templates.css?ver=1.8 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108229-2299-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 8857
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/page_templates/js/fancybox/jquery.fancybox-1.3.4.css?ver=1.3.4 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: text/css
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108230-15ec-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 5612
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/shortcodes/js/et_shortcodes_frontend.js?ver=2.0 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51081c8-3344-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 13124
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Whitley-Residences.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 13:59:40 GMT
Etag: &quot;5718744-2572e-4ceeda523cb00&quot;
Accept-Ranges: bytes
Content-Length: 153390
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wp-content/uploads/2012/08/banner12.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 13 Aug 2012 12:53:24 GMT
Etag: &quot;17527b3-d598-4c7252ddcb900&quot;
Accept-Ranges: bytes
Content-Length: 54680
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-includes/js/jquery/jquery.js?ver=1.7.2 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 02 Aug 2012 15:19:02 GMT
Etag: &quot;17e8c14-1728d-4c649ee6ee580&quot;
Accept-Ranges: bytes
Content-Length: 94861
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
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: Wed, 28 Nov 2012 17:20:22 GMT
Expires: Thu, 29 Nov 2012 05:20:22 GMT
Vary: Accept-Encoding
Cache-Control: max-age=43200, public
Age: 31527
Server: GFE/2.0
GET /wp-content/themes/eNews/images/top-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:49 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 13 Aug 2012 12:59:12 GMT
Etag: &quot;5108303-175-4c725429ac800&quot;
Accept-Ranges: bytes
Content-Length: 373
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /__utm.gif?utmwv=5.3.8&utms=1&utmn=1032070228&utmhn=www.singaporenewlaunches.com.sg&utmcs=UTF-8&utmsr=1176x885&utmvp=1176x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Singapore%20New%20Lauches%20-%20New%20Launch%20Condominium%20%26%20Properties&utmhid=2087397625&utmr=-&utmp=%2F&utmac=UA-33930556-1&utmcc=__utma%3D228480799.2025929705.1354154750.1354154750.1354154750.1%3B%2B__utmz%3D228480799.1354154750.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.8&amp;utms=1&amp;utmn=1032070228&amp;utmhn=www.singaporenewlaunches.com.sg&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=Singapore%20New%20Lauches%20-%20New%20Launch%20Condominium%20%26%20Properties&amp;utmhid=2087397625&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-33930556-1&amp;utmcc=__utma%3D228480799.2025929705.1354154750.1354154750.1354154750.1%3B%2B__utmz%3D228480799.1354154750.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=q~ HTTP/1.1

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

Content-Type: image/gif
Date: Wed, 28 Nov 2012 17:20:23 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: 31526
Server: GFE/2.0
GET /wp-content/uploads/2012/11/8M-Residences1.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:49 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 10:24:44 GMT
Etag: &quot;57186c9-2933e-4ceeaa47a7300&quot;
Accept-Ranges: bytes
Content-Length: 168766
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Encrop-Marina-@-Puteri-Harbour.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:49 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 10:47:47 GMT
Etag: &quot;571871f-37d5a-4ceeaf6e95ac0&quot;
Accept-Ranges: bytes
Content-Length: 228698
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Foresta.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 19 Nov 2012 14:00:21 GMT
Etag: &quot;1752876-1fbca-4ced989be0740&quot;
Accept-Ranges: bytes
Content-Length: 129994
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The_Promenade@Pelikat-228331_830x406.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:48 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:47 GMT
Etag: &quot;3f710a0-23fca-4cf98b8aa74c0&quot;
Accept-Ranges: bytes
Content-Length: 147402
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Robinson-Square.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 19 Nov 2012 10:15:11 GMT
Etag: &quot;1752b61-1ddcd-4ced6647bc9c0&quot;
Accept-Ranges: bytes
Content-Length: 122317
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Skies-Miltonia.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 19 Nov 2012 11:17:50 GMT
Etag: &quot;57180d4-208c4-4ced744899380&quot;
Accept-Ranges: bytes
Content-Length: 133316
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET / HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-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
Date: Thu, 29 Nov 2012 02:05:46 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.14
X-Pingback: http://www.singaporenewlaunches.com.sg/xmlrpc.php
Set-Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; path=/
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /wp-content/uploads/2012/11/The-Verv-@-RV1.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:49 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 09:26:36 GMT
Etag: &quot;57184b1-2c8f4-4cee9d493cb00&quot;
Accept-Ranges: bytes
Content-Length: 182516
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Whitley-Residences-153390_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f7108d-6bc-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1724
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/themes/eNews/js/jquery.easing.1.3.js HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510819c-1fa1-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 8097
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The_Promenade@Pelikat-228331_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f710a1-818-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 2072
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Encrop-Marina-@-Puteri-Harbour-228698_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f71046-75a-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1882
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/8M-Residences1-168766_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f7101e-6e1-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1761
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Verv-@-RV1-182516_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f71009-79c-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1948
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/themes/eNews/js/superfish.js HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510819e-e82-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 3714
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Peak-@-Cairnhill-I-138988_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f70fcd-795-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1941
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Foresta-129994_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f70f33-79a-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1946
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Skies-Miltonia-133316_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f70f18-778-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1912
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Hijauan.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 19 Nov 2012 07:54:29 GMT
Etag: &quot;175095a-1ba0d-4ced46d4d1740&quot;
Accept-Ranges: bytes
Content-Length: 113165
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Robinson-Square-122317_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;13b7933a-7ae-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1966
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/themes/eNews/js/init.js HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510819d-43d-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 1085
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Hijauan-113165_45x45.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;13b78865-650-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 1616
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Picture23-159412_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f710c4-2ffa-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 12282
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Grange-Heights-Condo-330330_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f710c3-632a-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 25386
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Whitley-Residences-153390_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f7108f-42c1-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 17089
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The_Promenade@Pelikat-228331_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:49 GMT
Etag: &quot;3f7109f-655d-4cf98b8c8f940&quot;
Accept-Ranges: bytes
Content-Length: 25949
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Peak-@-Cairnhill-I.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

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

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:49 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 07:58:37 GMT
Etag: &quot;571827f-21eec-4cee899eca540&quot;
Accept-Ranges: bytes
Content-Length: 138988
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wp-content/themes/eNews/js/jquery.cycle.all.min.js HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510819f-6ce8-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 27880
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Encrop-Marina-@-Puteri-Harbour-228698_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:50 GMT
Etag: &quot;3f71042-5e89-4cf98b8d83b80&quot;
Accept-Ranges: bytes
Content-Length: 24201
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/8M-Residences1-168766_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:50 GMT
Etag: &quot;3f7101f-4b1b-4cf98b8d83b80&quot;
Accept-Ranges: bytes
Content-Length: 19227
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Verv-@-RV1-182516_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:50 GMT
Etag: &quot;3f7100a-5037-4cf98b8d83b80&quot;
Accept-Ranges: bytes
Content-Length: 20535
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/uploads/2012/07/sideprofile.png HTTP/1.1

Host: singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:50 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728d32-60ad-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 24749
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/The-Peak-@-Cairnhill-I-138988_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:50 GMT
Etag: &quot;13b7934e-465d-4cf98b8d83b80&quot;
Accept-Ranges: bytes
Content-Length: 18013
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/search.png HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082fd-2b0-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 688
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/featured-bg1.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082e4-300b-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 12299
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wp-content/plugins/si-contact-form/captcha/ctf_captcha.js?ver=1.0 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cab-676-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 1654
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/featured-overlay.png HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082fb-74-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 116
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/uploads/2012/11/Foresta-129994_291x160.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 29 Nov 2012 02:05:50 GMT
Etag: &quot;3f70f91-5398-4cf98b8d83b80&quot;
Accept-Ranges: bytes
Content-Length: 21400
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/featured-news.png HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082ec-b6-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 182
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/prev-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082ff-3db-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 987
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/next-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108335-3c3-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 963
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /wp-content/plugins/si-contact-form/captcha/images/refresh.png HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cb7-452-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 1106
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/footer-top-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082ee-1c00-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 7168
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/footer-inside-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510831b-1b8-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 440
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/border-bottom.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108323-136-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 310
Keep-Alive: timeout=5, max=87
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/footer-widget-ul.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108332-171-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 369
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/footer-bottom.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108325-8b2-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 2226
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/active-page-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;5108300-271-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 625
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/cats-right-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510830e-19b-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 411
Keep-Alive: timeout=5, max=86
Connection: Keep-Alive
GET /wp-content/themes/eNews/images/cats-left-bg.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/wp-content/themes/eNews/style.css
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;51082f6-191-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 401
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /wp-content/plugins/si-contact-form/captcha/securimage_show.php?prefix=hMzXAZ4c3TRh6avp HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.14
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /wp-content/plugins/page-peel/big.jpg HTTP/1.1

Host: singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:51 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cd7-7820-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 30752
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /widgets.js?ver=3.4.1 HTTP/1.1

Host: platform.twitter.com

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

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Wed, 28 Nov 2012 09:08:35 GMT
Etag: &quot;3b2f433cf633c78ff60710fc7c7ba762&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24129
Date: Thu, 29 Nov 2012 02:05:53 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /wp-content/plugins/page-peel/pp_big.swf?big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/ HTTP/1.1

Host: www.singaporenewlaunches.com.sg
GET /wp-content/plugins/page-peel/pp_big.swf?big=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/big.jpg&amp;ad_url=http%3A//www.singaporenewlaunches.com.sg/newsletter-sign-up/ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Thu, 29 Nov 2012 02:05:53 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cd5-101c-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 4124
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.com

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

Content-Type: text/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Thu, 29 Nov 2012 02:05:53 GMT
Connection: keep-alive
GET /js/plusone.js?ver=3.4.1 HTTP/1.1

Host: apis.google.com

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

Content-Type: application/javascript; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Etag: &quot;9e59f62037a8d7e4c8222b5e21ac937c&quot;
Expires: Thu, 29 Nov 2012 02:05:53 GMT
Date: Thu, 29 Nov 2012 02:05:53 GMT
Cache-Control: private, max-age=1800
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /wp-content/plugins/page-peel/pp_sm.swf?ico=http%3A//singaporenewlaunches.com.sg/wp-content/plugins/page-peel/small.jpg HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Thu, 29 Nov 2012 02:05:52 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cd0-1c84-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 7300
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /wp-content/plugins/page-peel/small.jpg HTTP/1.1

Host: singaporenewlaunches.com.sg

User-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=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 29 Nov 2012 02:05:53 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;2728cd1-58d-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 1421
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /in.js?ver=3.4.1 HTTP/1.1

Host: platform.linkedin.com

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

Content-Type: text/javascript;charset=UTF-8
Server: Apache-Coyote/1.1
P3P: CP=&quot;CAO DSP COR CUR ADMi DEVi TAIi PSAi PSDi IVAi IVDi CONi OUR DELi SAMi UNRi PUBi OTRi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT POL PRE&quot;
X-LI-UUID: J0lCdt87M81G3gpYqXOdOw==
Content-Encoding: gzip
Vary: Accept-Encoding
Content-Length: 1702
Cache-Control: max-age=38534
Expires: Thu, 29 Nov 2012 12:48:07 GMT
Date: Thu, 29 Nov 2012 02:05:53 GMT
Connection: keep-alive
X-CDN: AKAM
GET /js/nonSecureAnonymousFramework?v=0.0.2000-RC1.23349-1403& HTTP/1.1

Host: platform.linkedin.com
GET /js/nonSecureAnonymousFramework?v=0.0.2000-RC1.23349-1403&amp; 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://www.singaporenewlaunches.com.sg/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Server: Apache-Coyote/1.1
Content-Encoding: gzip
Vary: Accept-Encoding
Content-Length: 43393
X-CDN: AKAM, AKAM
Date: Thu, 29 Nov 2012 02:05:53 GMT
Connection: keep-alive
GET /_/scs/apps-static/_/js/k=oz.gapi.no.SbWtKJEhWto.O/m=plusone/am=AQ/rt=j/d=1/rs=AItRSTMb4ofe2ZUMtahzKLqu6d9r2oeivA/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

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

Content-Type: text/javascript; charset=UTF-8
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Wed, 28 Nov 2012 01:44:58 GMT
Date: Wed, 28 Nov 2012 22:04:42 GMT
Expires: Thu, 06 Dec 2012 22:04:42 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 26189
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=691200
Age: 14471
GET /s2/oz/images/stars/po/Publisher/sprite4-a67f741843ffc4220554c34bd01bb0bb.png HTTP/1.1

Host: ssl.gstatic.com

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

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Wed, 21 Nov 2012 16:54:37 GMT
Expires: Thu, 21 Nov 2013 16:54:37 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 637877
GET /wp-content/themes/eNews/epanel/page_templates/js/fancybox/jquery.easing-1.3.pack.js?ver=1.3.4 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:53 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510822e-1a3d-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 6717
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/page_templates/js/fancybox/jquery.fancybox-1.3.4.pack.js?ver=1.3.4 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:54 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510822f-3d1f-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 15647
Keep-Alive: timeout=5, max=85
Connection: Keep-Alive
GET /wp-content/themes/eNews/epanel/page_templates/js/et-ptemplates-frontend.js?ver=1.1 HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.singaporenewlaunches.com.sg/
Cookie: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 29 Nov 2012 02:05:54 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Aug 2012 13:36:18 GMT
Etag: &quot;510822b-13d9-4c63461305880&quot;
Accept-Ranges: bytes
Content-Length: 5081
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /en_US/all.js HTTP/1.1

Host: connect.facebook.net

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

Content-Type: application/x-javascript; charset=utf-8
Etag: &quot;7554f19b4ba959e764f7117e79f2a613&quot;
Content-Encoding: gzip
X-FB-Debug: 5KkJnwW92cGhsTMt662Vhe8ZmJ+7yIT6gUXQ9+/+FK8=
Content-Length: 58157
Cache-Control: public, max-age=543
Expires: Thu, 29 Nov 2012 02:14:57 GMT
Date: Thu, 29 Nov 2012 02:05:54 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /favicon.ico HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-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: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/vnd.microsoft.icon
Date: Thu, 29 Nov 2012 02:05:55 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.14
Content-Length: 0
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /connect/xd_arbiter.php?version=17 HTTP/1.1

Host: static.ak.facebook.com

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

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: E3c8g3c0gejpQwnGf3AZqYiNBk1izZOmw+c1BhJU1WU=
Content-Length: 9455
Vary: Accept-Encoding
Cache-Control: public, max-age=31445648
Expires: Thu, 28 Nov 2013 01:00:03 GMT
Date: Thu, 29 Nov 2012 02:05:55 GMT
Connection: keep-alive
GET /connect/xd_arbiter.php?version=17 HTTP/1.1

Host: s-static.ak.facebook.com

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

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: Qd+hj+wrTmTFXAUxjQePbhkN0lifTPn0i1SnlTbp2Yo=
Content-Length: 9455
Vary: Accept-Encoding
Cache-Control: public, max-age=31445631
Expires: Thu, 28 Nov 2013 00:59:46 GMT
Date: Thu, 29 Nov 2012 02:05:55 GMT
Connection: keep-alive
GET /favicon.ico HTTP/1.1

Host: www.singaporenewlaunches.com.sg

User-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: PHPSESSID=daf5d83df6697bbdabd1f43dc9031afc; __utma=228480799.2025929705.1354154750.1354154750.1354154750.1; __utmb=228480799.1.10.1354154750; __utmc=228480799; __utmz=228480799.1354154750.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/vnd.microsoft.icon
Date: Thu, 29 Nov 2012 02:05:58 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.14
Content-Length: 0
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive