From 89a816843f009752fe544e44f222d4b9801f0bfd Mon Sep 17 00:00:00 2001 From: Greg Wilkins Date: Wed, 16 Jul 2014 14:04:08 +1000 Subject: [PATCH] removed refset from hpack --- jetty-http2/http2-hpack/pom.xml | 6 + .../jetty/http2/hpack/HpackContext.java | 204 +- .../jetty/http2/hpack/HpackDecoder.java | 22 +- .../jetty/http2/hpack/HpackEncoder.java | 63 +- .../jetty/http2/hpack/HpackContextTest.java | 361 +- .../jetty/http2/hpack/HpackDecoderTest.java | 3 + .../jetty/http2/hpack/HpackEncoderTest.java | 85 +- .../jetty/http2/hpack/HpackPerfTest.java | 133 + .../src/test/resources/data/story_00.json | 53 + .../src/test/resources/data/story_01.json | 52 + .../src/test/resources/data/story_02.json | 339 + .../src/test/resources/data/story_03.json | 342 + .../src/test/resources/data/story_04.json | 342 + .../src/test/resources/data/story_05.json | 366 + .../src/test/resources/data/story_06.json | 342 + .../src/test/resources/data/story_07.json | 345 + .../src/test/resources/data/story_08.json | 363 + .../src/test/resources/data/story_09.json | 345 + .../src/test/resources/data/story_10.json | 339 + .../src/test/resources/data/story_11.json | 369 + .../src/test/resources/data/story_12.json | 369 + .../src/test/resources/data/story_13.json | 342 + .../src/test/resources/data/story_14.json | 339 + .../src/test/resources/data/story_15.json | 336 + .../src/test/resources/data/story_16.json | 375 + .../src/test/resources/data/story_17.json | 348 + .../src/test/resources/data/story_18.json | 351 + .../src/test/resources/data/story_19.json | 345 + .../src/test/resources/data/story_20.json | 5674 ++++ .../src/test/resources/data/story_21.json | 15422 +++++++++ .../src/test/resources/data/story_22.json | 14947 ++++++++ .../src/test/resources/data/story_23.json | 13406 ++++++++ .../src/test/resources/data/story_24.json | 1187 + .../src/test/resources/data/story_25.json | 8637 +++++ .../src/test/resources/data/story_26.json | 4439 +++ .../src/test/resources/data/story_27.json | 9890 ++++++ .../src/test/resources/data/story_28.json | 5293 +++ .../src/test/resources/data/story_29.json | 13780 ++++++++ .../src/test/resources/data/story_30.json | 28257 ++++++++++++++++ .../src/test/resources/data/story_31.json | 4555 +++ .../test/resources/jetty-logging.properties | 2 +- .../org/eclipse/jetty/util/ArrayQueue.java | 4 +- 42 files changed, 132129 insertions(+), 643 deletions(-) create mode 100644 jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackPerfTest.java create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_00.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_01.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_02.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_03.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_04.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_05.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_06.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_07.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_08.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_09.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_10.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_11.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_12.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_13.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_14.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_15.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_16.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_17.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_18.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_19.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_20.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_21.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_22.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_23.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_24.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_25.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_26.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_27.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_28.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_29.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_30.json create mode 100644 jetty-http2/http2-hpack/src/test/resources/data/story_31.json diff --git a/jetty-http2/http2-hpack/pom.xml b/jetty-http2/http2-hpack/pom.xml index 8b7a7fe8f1c..0ae0e947ac0 100644 --- a/jetty-http2/http2-hpack/pom.xml +++ b/jetty-http2/http2-hpack/pom.xml @@ -31,6 +31,12 @@ jetty-test-helper test + + org.eclipse.jetty + jetty-util-ajax + ${project.version} + test + diff --git a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackContext.java b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackContext.java index 21f16ec73e6..68f7f9882b8 100644 --- a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackContext.java +++ b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackContext.java @@ -21,9 +21,7 @@ package org.eclipse.jetty.http2.hpack; import java.nio.ByteBuffer; import java.util.HashMap; import java.util.HashSet; -import java.util.Iterator; import java.util.Map; -import java.util.NoSuchElementException; import java.util.Set; import org.eclipse.jetty.http.HttpField; @@ -167,18 +165,9 @@ public class HpackContext private int _maxHeaderTableSizeInBytes; private int _headerTableSizeInBytes; - private final Entry _refSet=new Entry(); private final HeaderTable _headerTable; private final Map _fieldMap = new HashMap<>(); private final Map _nameMap = new HashMap<>(); - private Iterable referenceSet = new Iterable() - { - @Override - public Iterator iterator() - { - return iterateReferenceSet(); - } - }; HpackContext(int maxHeaderTableSize) { @@ -217,21 +206,20 @@ public class HpackContext public Entry get(int index) { - index=index-_headerTable.size(); - if (index>0) - { - if (index>=__staticTable.length) - return null; + if (index<__staticTable.length) return __staticTable[index]; - } - - return _headerTable.getUnsafe(-index); + + int d=_headerTable.size()-index+__staticTable.length-1; + + if (d>=0) + return _headerTable.getUnsafe(d); + return null; } public Entry add(HttpField field) { - int i=_headerTable.getNextIndexUnsafe(); - Entry entry=new Entry(i,field); + int slot=_headerTable.getNextSlotUnsafe(); + Entry entry=new Entry(slot,field); int size = entry.getSize(); if (size>_maxHeaderTableSizeInBytes) { @@ -276,109 +264,12 @@ public class HpackContext public int index(Entry entry) { - if (entry._index<0) + if (entry._slot<0) return 0; if (entry.isStatic()) - return _headerTable.size() + entry._index; - return _headerTable.index(entry); - } - - public void addToRefSet(Entry entry) - { - entry.addToRefSet(this); - } - - public Iterable getReferenceSet() - { - return referenceSet; - } - - public void clearReferenceSet() - { - if (LOG.isDebugEnabled()) - LOG.debug(String.format("RefSet[%x] cleared",hashCode())); - Entry entry = _refSet._refSetNext; - while(entry!=_refSet) - { - Entry next = entry._refSetNext; - entry.removeFromRefSet(); - entry=next; - } - } - + return entry._slot; - public void removedUnusedReferences(ByteBuffer buffer) - { - Entry entry = _refSet._refSetNext; - while(entry!=_refSet) - { - Entry next = entry._refSetNext; - - if (entry.isUsed()) - entry._used=false; - else - { - if (LOG.isDebugEnabled()) - LOG.debug(String.format("RefSet[%x] remove unused %s",hashCode(),entry)); - // encode the reference to remove it - buffer.put((byte)0x80); - NBitInteger.encode(buffer,7,index(entry)); - entry.removeFromRefSet(); - } - entry=next; - } - } - - public void emitUnusedReferences(MetaDataBuilder builder) - { - Entry entry = _refSet._refSetNext; - while(entry!=_refSet) - { - if (entry.isUsed()) - entry._used=false; - else - { - if (LOG.isDebugEnabled()) - LOG.debug(String.format("RefSet[%x] emit unref %s",hashCode(),entry)); - builder.emit(entry.getHttpField()); - } - - entry=entry._refSetNext; - } - } - - - public Iterator iterateReferenceSet() - { - return new Iterator() - { - Entry _next = _refSet._refSetNext; - - @Override - public boolean hasNext() - { - return _next!=_refSet; - } - - @Override - public Entry next() - { - if (_next==_refSet) - throw new NoSuchElementException(); - Entry next=_next; - _next=_next._refSetNext; - return next; - } - - @Override - public void remove() - { - if (_next._refSetPrev==_refSet) - throw new NoSuchElementException(); - - _next._refSetPrev.removeFromRefSet(); - } - }; + return _headerTable.index(entry)+__staticTable.length-1; } private void evict() @@ -389,8 +280,7 @@ public class HpackContext if (LOG.isDebugEnabled()) LOG.debug(String.format("HdrTbl[%x] evict %s",hashCode(),entry)); _headerTableSizeInBytes-=entry.getSize(); - entry.removeFromRefSet(); - entry._index=-1; + entry._slot=-1; _fieldMap.remove(entry.getHttpField()); String lc=StringUtil.asciiToLowerCase(entry.getHttpField().getName()); if (entry==_nameMap.get(lc)) @@ -425,8 +315,8 @@ public class HpackContext { // Relay on super.growUnsafe to pack all entries 0 to _nextSlot super.resizeUnsafe(newCapacity); - for (int i=0;i<_nextSlot;i++) - ((Entry)_elements[i])._index=i; + for (int s=0;s<_nextSlot;s++) + ((Entry)_elements[s])._slot=s; } /* ------------------------------------------------------------ */ @@ -456,7 +346,7 @@ public class HpackContext */ private int index(Entry entry) { - return entry._index>=_nextE?_size-entry._index+_nextE:_nextSlot-entry._index; + return entry._slot>=_nextE?_size-entry._slot+_nextE:_nextSlot-entry._slot; } } @@ -469,65 +359,25 @@ public class HpackContext public static class Entry { final HttpField _field; - int _index; - Entry _refSetNext=this; - Entry _refSetPrev=this; - boolean _used; + int _slot; Entry() { - _index=0; + _slot=0; _field=null; } Entry(int index,String name, String value) { - _index=index; + _slot=index; _field=new HttpField(name,value); } - Entry(int index, HttpField field) + Entry(int slot, HttpField field) { - _index=index; + _slot=slot; _field=field; } - - private void addToRefSet(HpackContext ctx) - { - if (isStatic()) - throw new IllegalStateException("static"); - if (_index<0) - throw new IllegalStateException("evicted"); - if (_refSetNext!=this) - return; - - _used=true; - _refSetNext=ctx._refSet; - _refSetPrev=ctx._refSet._refSetPrev; - ctx._refSet._refSetPrev._refSetNext=this; - ctx._refSet._refSetPrev=this; - if (LOG.isDebugEnabled()) - LOG.debug(String.format("RefSet[%x] added",ctx.hashCode(),this)); - } - - public boolean isInReferenceSet() - { - return _refSetNext!=this; - } - - public void removeFromRefSet() - { - if (LOG.isDebugEnabled()) - LOG.debug(String.format("RefSet[?] remove %s",this)); - if (_refSetNext!=this) - { - _refSetNext._refSetPrev=_refSetPrev; - _refSetPrev._refSetNext=_refSetNext; - _refSetNext=this; - _refSetPrev=this; - _used=false; - } - } public int getSize() { @@ -551,17 +401,7 @@ public class HpackContext public String toString() { - return String.format("{%s,%d,%s,%x}",isStatic()?"S":"D",_index,_field,hashCode()); - } - - public void used() - { - _used=true; - } - - public boolean isUsed() - { - return _used; + return String.format("{%s,%d,%s,%x}",isStatic()?"S":"D",_slot,_field,hashCode()); } } diff --git a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackDecoder.java b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackDecoder.java index 82efe316c36..0a172a22964 100644 --- a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackDecoder.java +++ b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackDecoder.java @@ -83,19 +83,15 @@ public class HpackDecoder // indexed int index = NBitInteger.decode(buffer,7); Entry entry=_context.get(index); - if (entry.isInReferenceSet()) - _context.get(index).removeFromRefSet(); - else if (entry.isStatic()) + if (entry.isStatic()) { if (LOG.isDebugEnabled()) LOG.debug("decode IdxStatic {}",entry); // emit field _builder.emit(entry.getHttpField()); - // copy and add to reference set if there is room - Entry new_entry = _context.add(entry.getHttpField()); - if (new_entry!=null) - _context.addToRefSet(new_entry); + // TODO copy and add to reference set if there is room + // _context.add(entry.getHttpField()); } else { @@ -103,8 +99,6 @@ public class HpackDecoder LOG.debug("decode Idx {}",entry); // emit _builder.emit(entry.getHttpField()); - // add to reference set - _context.addToRefSet(entry); } } else @@ -210,10 +204,7 @@ public class HpackDecoder if (indexed) { // add to header table - Entry new_entry=_context.add(field); - // and to ref set if there was room in header table - if (new_entry!=null) - _context.addToRefSet(new_entry); + _context.add(field); } } else if (f==2) @@ -228,15 +219,12 @@ public class HpackDecoder } else if (f==3) { - // clear reference set if (LOG.isDebugEnabled()) - LOG.debug("decode clear"); - _context.clearReferenceSet(); + LOG.debug("unused"); } } } - _context.emitUnusedReferences(_builder); return _builder.build(); } diff --git a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java index 445e55370b6..df7d7f98beb 100644 --- a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java +++ b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java @@ -161,7 +161,6 @@ public class HpackEncoder encode(buffer,field); } - _context.removedUnusedReferences(buffer); } public void encodeMaxHeaderTableSize(ByteBuffer buffer, int maxHeaderTableSize) @@ -173,12 +172,6 @@ public class HpackEncoder _context.resize(maxHeaderTableSize); } - public void encodeClearReferenceSet(ByteBuffer buffer) - { - buffer.put((byte)0x30); - _context.clearReferenceSet(); - } - private void encode(ByteBuffer buffer, HttpField field) { final int p=LOG.isDebugEnabled()?buffer.position():-1; @@ -192,49 +185,18 @@ public class HpackEncoder if (entry!=null) { - // if entry is already in the reference set, then nothing more to do. - if (entry.isInReferenceSet()) - { - entry.used(); - encoding="InRefSet"; - } - // Is this as static field - else if (entry.isStatic()) + if (entry.isStatic()) { - // TODO Strategy decision to make! - // Should we add to reference set or just always send as indexed? + // entries like :status: 200 and :method: GET are worthwhile putting into ref set. + // as they are likely to be repeated. + encoding="StaticIndexed"; + int index=_context.index(entry); + buffer.put((byte)0x80); + NBitInteger.encode(buffer,7,index); - if (((StaticEntry)entry).useRefSet()) - { - // entries like :status: 200 and :method: GET are worthwhile putting into ref set. - // as they are likely to be repeated. - encoding="StaticIndexed"; - int index=_context.index(entry); - buffer.put((byte)0x80); - NBitInteger.encode(buffer,7,index); - entry=_context.add(entry.getHttpField()); - if (entry!=null) - _context.addToRefSet(entry); - } - else - { - // Let's send other statics as indexed to reduce churn in header table! - // BUGGER! Can't do that as we have to copy them into header table. - // Oh well all the static fields have small values, so - // lets send as literal header, indexed name. - // We don't need never indexed because the cookie fields are name only and we can - // huffman encode the value for the same reason. - - // Add the token - buffer.put((byte)0x00); - // Add the name index - NBitInteger.encode(buffer,4,_context.index(entry)); - // Add the value - buffer.put(entry.getStaticHuffmanValue()); - - encoding="LiteralStaticIdxNameHuffmanValue"; - } + // TODO Copy? + // entry=_context.add(entry.getHttpField()); } else { @@ -244,7 +206,6 @@ public class HpackEncoder int index=_context.index(entry); buffer.put((byte)0x80); NBitInteger.encode(buffer,7,index); - _context.addToRefSet(entry); } } else @@ -335,11 +296,7 @@ public class HpackEncoder // If we want the field referenced, then we add it to our // table and reference set. if (reference) - { - Entry new_entry=_context.add(field); - if (new_entry!=null) - _context.addToRefSet(new_entry); - } + _context.add(field); } if (p>=0) diff --git a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackContextTest.java b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackContextTest.java index 46a5cdc7803..2f4c488eac9 100644 --- a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackContextTest.java +++ b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackContextTest.java @@ -215,26 +215,26 @@ public class HpackContextTest // Add a single entry entry[0]=ctx.add(field[0]); - // Check new entry is 1 + // Check new entry is 62 assertEquals(1,ctx.size()); - assertEquals(1,ctx.index(entry[0])); - assertEquals(entry[0],ctx.get(1)); + assertEquals(62,ctx.index(entry[0])); + assertEquals(entry[0],ctx.get(62)); - // and statics have moved up 1 - assertEquals(":authority",ctx.get(1+1).getHttpField().getName()); - assertEquals(3+1,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+1).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+1).getHttpField().getName()); - assertEquals(null,ctx.get(62+1)); + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+0+ctx.size())); // Add 4 more entries for (int i=1;i<=4;i++) entry[i]=ctx.add(field[i]); - // Check newest entry is at 1 oldest at 5 + // Check newest entry is at 62 oldest at 66 assertEquals(5,ctx.size()); - int index=5; + int index=66; for (int i=0;i<=4;i++) { assertEquals(index,ctx.index(entry[i])); @@ -242,18 +242,18 @@ public class HpackContextTest index--; } - // and statics have moved up 5 - assertEquals(":authority",ctx.get(1+5).getHttpField().getName()); - assertEquals(3+5,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+5).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+5).getHttpField().getName()); - assertEquals(null,ctx.get(62+5)); + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+0+ctx.size())); // add 1 more entry and this should cause an eviction! entry[5]=ctx.add(field[5]); // Check newest entry is at 1 oldest at 5 - index=5; + index=66; for (int i=1;i<=5;i++) { assertEquals(index,ctx.index(entry[i])); @@ -264,19 +264,19 @@ public class HpackContextTest assertNull(ctx.get(field[0])); assertEquals(0,ctx.index(entry[0])); - // and statics have moved up just 5 - assertEquals(":authority",ctx.get(1+5).getHttpField().getName()); - assertEquals(3+5,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+5).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+5).getHttpField().getName()); - assertEquals(null,ctx.get(62+5)); + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+0+ctx.size())); // Add 4 more entries for (int i=6;i<=9;i++) entry[i]=ctx.add(field[i]); // Check newest entry is at 1 oldest at 5 - index=5; + index=66; for (int i=5;i<=9;i++) { assertEquals(index,ctx.index(entry[i])); @@ -295,7 +295,7 @@ public class HpackContextTest for (int i=10;i<=52;i++) entry[i]=ctx.add(new HttpField("n"+i,"v"+i)); - index=5; + index=66; for (int i=48;i<=52;i++) { assertEquals(index,ctx.index(entry[i])); @@ -304,210 +304,6 @@ public class HpackContextTest } } - - @Test - public void testRefSetAddStatic() - { - try - { - HpackContext ctx = new HpackContext(4096); - - HttpField methodGet = new HttpField(":method","GET"); - Entry entry = ctx.get(methodGet); - ctx.addToRefSet(entry); - fail(); - } - catch(IllegalStateException e) - {} - } - - @Test - public void testRefSetAddEvicted() - { - try - { - HpackContext ctx = new HpackContext(38); - HttpField field0 = new HttpField("foo","bar"); - HttpField field1 = new HttpField("xxx","yyy"); - Entry entry = ctx.add(field0); - ctx.add(field1); - ctx.addToRefSet(entry); - fail(); - } - catch(IllegalStateException e) - {} - } - - @Test - public void testRefSetEmptyIteration() - { - HpackContext ctx = new HpackContext(4096); - for (Entry entry: ctx.getReferenceSet() ) - fail("unexpected:"+entry); - Iterator iter = ctx.iterateReferenceSet(); - assertFalse(iter.hasNext()); - - try - { - iter.next(); - fail(); - } - catch(NoSuchElementException e) - { - } - - try - { - iter.remove(); - fail(); - } - catch(NoSuchElementException e) - { - } - - } - - - @Test - public void testRefSet() - { - // Only enough space for 5 entries - HpackContext ctx = new HpackContext(38*5); - - HttpField[] field = - { - new HttpField("fo0","b0r"), - new HttpField("fo1","b1r"), - new HttpField("fo2","b2r"), - new HttpField("fo3","b3r"), - new HttpField("fo4","b4r"), - new HttpField("fo5","b5r"), - new HttpField("fo6","b6r"), - new HttpField("fo7","b7r"), - new HttpField("fo8","b8r"), - new HttpField("fo9","b9r"), - new HttpField("foA","bAr"), - }; - Entry[] entry = new Entry[field.length]; - - // Add 5 entries - for (int i=0;i<=4;i++) - entry[i]=ctx.add(field[i]); - - // Add 3 entries to reference set - ctx.addToRefSet(ctx.get(3)); - ctx.addToRefSet(ctx.get(1)); - ctx.addToRefSet(ctx.get(5)); - - // check isInReferenceSet - assertTrue(ctx.get(1).isInReferenceSet()); - assertFalse(ctx.get(2).isInReferenceSet()); - assertTrue(ctx.get(3).isInReferenceSet()); - assertFalse(ctx.get(4).isInReferenceSet()); - assertTrue(ctx.get(5).isInReferenceSet()); - - // iterate ref set - HashSet fields = new HashSet<>(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(3,fields.size()); - assertTrue(fields.contains(field[0])); - assertTrue(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); - - // duplicate add ignored - ctx.addToRefSet(ctx.get(1)); - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(3,fields.size()); - assertTrue(fields.contains(field[0])); - assertTrue(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); - - // remove entry - ctx.get(3).removeFromRefSet(); - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(2,fields.size()); - assertTrue(fields.contains(field[0])); - assertTrue(fields.contains(field[4])); - - // check isInReferenceSet - assertTrue(ctx.get(1).isInReferenceSet()); - assertFalse(ctx.get(2).isInReferenceSet()); - assertFalse(ctx.get(3).isInReferenceSet()); - assertFalse(ctx.get(4).isInReferenceSet()); - assertTrue(ctx.get(5).isInReferenceSet()); - - // iterator remove - Iterator iter=ctx.iterateReferenceSet(); - iter.next(); - iter.remove(); - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(1,fields.size()); - - // Add 5 new entries to cause evictions - for (int i=5;i<=9;i++) - entry[i]=ctx.add(field[i]); - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(0,fields.size()); - - } - - @Test - public void testRefSetClear() - { - // Only enough space for 5 entries - HpackContext ctx = new HpackContext(38*5); - - HttpField[] field = - { - new HttpField("fo0","b0r"), - new HttpField("fo1","b1r"), - new HttpField("fo2","b2r"), - new HttpField("fo3","b3r"), - new HttpField("fo4","b4r"), - new HttpField("fo5","b5r"), - new HttpField("fo6","b6r"), - new HttpField("fo7","b7r"), - new HttpField("fo8","b8r"), - new HttpField("fo9","b9r"), - new HttpField("foA","bAr"), - }; - Entry[] entry = new Entry[field.length]; - - // Add 5 entries - for (int i=0;i<=4;i++) - entry[i]=ctx.add(field[i]); - - // Add 3 entries to reference set - ctx.clearReferenceSet(); - ctx.addToRefSet(ctx.get(3)); - ctx.addToRefSet(ctx.get(1)); - ctx.addToRefSet(ctx.get(5)); - - // iterate ref set - HashSet fields = new HashSet<>(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(3,fields.size()); - assertTrue(fields.contains(field[0])); - assertTrue(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); - - // Clear set - ctx.clearReferenceSet(); - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(0,fields.size()); - } @Test public void testResize() @@ -539,7 +335,7 @@ public class HpackContextTest assertEquals(5,ctx.size()); // check indexes - int index=5; + int index=66; for (int i=0;i<=4;i++) { assertEquals(index,ctx.index(entry[i])); @@ -547,89 +343,54 @@ public class HpackContextTest index--; } - // and statics have moved up 5 - assertEquals(":authority",ctx.get(1+5).getHttpField().getName()); - assertEquals(3+5,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+5).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+5).getHttpField().getName()); - assertEquals(null,ctx.get(62+5)); + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+ctx.size())); - // Add 3 entries to reference set - ctx.addToRefSet(ctx.get(3)); - ctx.addToRefSet(ctx.get(1)); - ctx.addToRefSet(ctx.get(5)); - - - - // iterate ref set - HashSet fields = new HashSet<>(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(3,fields.size()); - assertTrue(fields.contains(field[0])); - assertTrue(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); // resize so that only 2 entries may be held ctx.resize(38*2); assertEquals(2,ctx.size()); // check indexes - index=2; + index=63; for (int i=3;i<=4;i++) { assertEquals(index,ctx.index(entry[i])); assertEquals(entry[i],ctx.get(index)); index--; } - - // and statics have moved up 2 - assertEquals(":authority",ctx.get(1+2).getHttpField().getName()); - assertEquals(3+2,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+2).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+2).getHttpField().getName()); - assertEquals(null,ctx.get(62+2)); - - // check reference set - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(1,fields.size()); - assertFalse(fields.contains(field[0])); - assertFalse(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); - + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+ctx.size())); + // resize so that 6.5 entries may be held ctx.resize(38*6+19); assertEquals(2,ctx.size()); - // check indexes - index=2; + index=63; for (int i=3;i<=4;i++) { assertEquals(index,ctx.index(entry[i])); assertEquals(entry[i],ctx.get(index)); index--; } - - // and statics have moved up 2 - assertEquals(":authority",ctx.get(1+2).getHttpField().getName()); - assertEquals(3+2,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+2).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+2).getHttpField().getName()); - assertEquals(null,ctx.get(62+2)); - - // check reference set - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(1,fields.size()); - assertFalse(fields.contains(field[0])); - assertFalse(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); + + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+ctx.size())); // Add 5 entries @@ -639,29 +400,21 @@ public class HpackContextTest assertEquals(6,ctx.size()); // check indexes - index=6; + index=67; for (int i=4;i<=9;i++) { assertEquals(index,ctx.index(entry[i])); assertEquals(entry[i],ctx.get(index)); index--; } + + // and statics have moved up 0 + assertEquals(":authority",ctx.get(1+0).getHttpField().getName()); + assertEquals(3+0,ctx.index(ctx.get(methodPost))); + assertEquals(methodPost,ctx.get(3+0).getHttpField()); + assertEquals("www-authenticate",ctx.get(61+0).getHttpField().getName()); + assertEquals(null,ctx.get(62+ctx.size())); - // and statics have moved up 6 - assertEquals(":authority",ctx.get(1+6).getHttpField().getName()); - assertEquals(3+6,ctx.index(ctx.get(methodPost))); - assertEquals(methodPost,ctx.get(3+6).getHttpField()); - assertEquals("www-authenticate",ctx.get(61+6).getHttpField().getName()); - assertEquals(null,ctx.get(62+6)); - - // check reference set - fields.clear(); - for (Entry e: ctx.getReferenceSet() ) - fields.add(e.getHttpField()); - assertEquals(1,fields.size()); - assertFalse(fields.contains(field[0])); - assertFalse(fields.contains(field[2])); - assertTrue(fields.contains(field[4])); } @Test diff --git a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackDecoderTest.java b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackDecoderTest.java index 9fcb6ac5e9e..495fa90638e 100644 --- a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackDecoderTest.java +++ b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackDecoderTest.java @@ -27,6 +27,7 @@ import org.eclipse.jetty.http.HttpMethod; import org.eclipse.jetty.http.HttpScheme; import org.eclipse.jetty.http.MetaData; import org.eclipse.jetty.util.TypeUtil; +import org.junit.Ignore; import org.junit.Test; import static org.junit.Assert.assertEquals; @@ -41,6 +42,7 @@ public class HpackDecoderTest { @Test + @Ignore public void testDecodeD_3() { HpackDecoder decoder = new HpackDecoder(4096,8192); @@ -91,6 +93,7 @@ public class HpackDecoderTest } @Test + @Ignore public void testDecodeD_4() { HpackDecoder decoder = new HpackDecoder(4096,8192); diff --git a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackEncoderTest.java b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackEncoderTest.java index 8286ab345c3..227dc434c86 100644 --- a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackEncoderTest.java +++ b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackEncoderTest.java @@ -79,34 +79,15 @@ public class HpackEncoderTest // All are in the header table Assert.assertEquals(4,encoder.getContext().size()); - - // All are in the reference set - HashSet refSet = new HashSet<>(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(4,refSet.size()); - for (int i=0;i<=3;i++) - Assert.assertTrue(refSet.contains(field[i])); - + // encode exact same fields again! BufferUtil.clearToFill(buffer); encoder.encode(buffer,new FinalMetaData(HttpVersion.HTTP_2,fields)); BufferUtil.flipToFlush(buffer,0); - // nothing should be encoded! - assertThat(buffer.remaining(),Matchers.is(0)); - // All are in the header table Assert.assertEquals(4,encoder.getContext().size()); - // All are in the reference set - refSet.clear(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(4,refSet.size()); - for (int i=0;i<=3;i++) - Assert.assertTrue(refSet.contains(field[i])); - // Add 4 more fields for (int i=4;i<=7;i++) fields.add(field[i]); @@ -122,14 +103,6 @@ public class HpackEncoderTest // max header table size reached Assert.assertEquals(5,encoder.getContext().size()); - // last 5 in reference set - refSet.clear(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(5,refSet.size()); - for (int i=3;i<=7;i++) - Assert.assertTrue(refSet.contains(field[i])); - // remove some fields for (int i=0;i<=7;i+=2) @@ -146,18 +119,6 @@ public class HpackEncoderTest // max header table size reached Assert.assertEquals(5,encoder.getContext().size()); - // last 5 in reference set - refSet.clear(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(4,refSet.size()); - for (int i=0;i<=7;i++) - { - if (i%2==1) - Assert.assertTrue(refSet.contains(field[i])); - else - Assert.assertFalse(refSet.contains(field[i])); - } // remove another fields fields.remove(field[1].getName()); @@ -173,18 +134,6 @@ public class HpackEncoderTest // max header table size reached Assert.assertEquals(5,encoder.getContext().size()); - // last 5 in reference set - refSet.clear(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(3,refSet.size()); - for (int i=2;i<=7;i++) - { - if (i%2==1) - Assert.assertTrue(refSet.contains(field[i])); - else - Assert.assertFalse(refSet.contains(field[i])); - } // re add the field @@ -201,40 +150,8 @@ public class HpackEncoderTest // max header table size reached Assert.assertEquals(5,encoder.getContext().size()); - // last 5 in reference set - refSet.clear(); - for (Entry entry : encoder.getContext().getReferenceSet()) - refSet.add(entry.getHttpField()); - Assert.assertEquals(4,refSet.size()); - for (int i=0;i<=7;i++) - { - if (i%2==1) - Assert.assertTrue(refSet.contains(field[i])); - else - Assert.assertFalse(refSet.contains(field[i])); - } } - @Test - public void testDoNotReferenceStatics() - { - HpackEncoder encoder = new HpackEncoder(38*5); - ByteBuffer buffer = BufferUtil.allocate(4096); - - HttpFields fields = new HttpFields(); - fields.put(":method","POST"); - - // encode - BufferUtil.clearToFill(buffer); - encoder.encode(buffer,new FinalMetaData(HttpVersion.HTTP_2,fields)); - BufferUtil.flipToFlush(buffer,0); - - // something was encoded! - assertThat(buffer.remaining(),Matchers.greaterThan(0)); - - // empty header table - Assert.assertEquals(0,encoder.getContext().size()); - } @Test public void testNeverIndexSetCookie() diff --git a/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackPerfTest.java b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackPerfTest.java new file mode 100644 index 00000000000..e910ef98642 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackPerfTest.java @@ -0,0 +1,133 @@ +// +// ======================================================================== +// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. +// ------------------------------------------------------------------------ +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the Eclipse Public License v1.0 +// and Apache License v2.0 which accompanies this distribution. +// +// The Eclipse Public License is available at +// http://www.eclipse.org/legal/epl-v10.html +// +// The Apache License v2.0 is available at +// http://www.opensource.org/licenses/apache2.0.php +// +// You may elect to redistribute this code under either of these licenses. +// ======================================================================== +// + + +package org.eclipse.jetty.http2.hpack; + +import java.io.File; +import java.io.FileReader; +import java.io.FilenameFilter; +import java.nio.ByteBuffer; +import java.util.Map; + +import org.eclipse.jetty.http.FinalMetaData; +import org.eclipse.jetty.http.HttpFields; +import org.eclipse.jetty.http.HttpVersion; +import org.eclipse.jetty.toolchain.test.MavenTestingUtils; +import org.eclipse.jetty.util.BufferUtil; +import org.eclipse.jetty.util.ajax.JSON; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + + +public class HpackPerfTest +{ + int _maxHeaderTableSize=16*1024; + int _unencodedSize; + int _encodedSize; + + @Before + public void before() + { + _unencodedSize=0; + _encodedSize=0; + } + + @After + public void after() + { + System.err.printf("headertable=%d unencoded=%d encoded=%d%n",_maxHeaderTableSize,_unencodedSize,_encodedSize); + } + + @Test + public void simpleTest() throws Exception + { + runStories(_maxHeaderTableSize,new HpackEncoder(_maxHeaderTableSize,_maxHeaderTableSize)); + } + + private void runStories(int maxHeaderTableSize, HpackEncoder encoder) throws Exception + { + // Find files + File data = MavenTestingUtils.getTestResourceDir("data"); + String[] files = data.list(new FilenameFilter() + { + @Override + public boolean accept(File dir, String name) + { + return name.startsWith("story_"); + } + }); + + // Parse JSON + Map[] stories = new Map[files.length]; + int i=0; + for (String story : files) + stories[i++]=(Map)JSON.parse(new FileReader(new File(data,story))); + + ByteBuffer buffer = BufferUtil.allocate(256*1024); + + // Encode all the requests + encodeStories(buffer,stories,"request",encoder); + + // clear table + BufferUtil.clearToFill(buffer); + encoder.encodeMaxHeaderTableSize(buffer,0); + encoder.encodeMaxHeaderTableSize(buffer,maxHeaderTableSize); + BufferUtil.flipToFlush(buffer,0); + + // Encode all the responses + encodeStories(buffer,stories,"response",encoder); + + } + + private void encodeStories(ByteBuffer buffer,Map[] stories, String type, HpackEncoder encoder) throws Exception + { + for (Map story : stories) + { + if (type.equals(story.get("context"))) + { + // System.err.println(story); + Object[] cases = (Object[])story.get("cases"); + for (Object c : cases) + { + // System.err.println(" "+c); + Object[] headers = (Object[])((Map)c).get("headers"); + // System.err.println(" "+headers); + HttpFields fields = new HttpFields(); + for (Object header:headers) + { + Map h = (Map)header; + Map.Entry e = h.entrySet().iterator().next(); + fields.add(e.getKey(),e.getValue()); + _unencodedSize+=e.getKey().length()+e.getValue().length(); + + } + + BufferUtil.clearToFill(buffer); + encoder.encode(buffer,new FinalMetaData(HttpVersion.HTTP_2,fields)); + BufferUtil.flipToFlush(buffer,0); + _encodedSize+=buffer.remaining(); + + } + } + } + } + + +} diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_00.json b/jetty-http2/http2-hpack/src/test/resources/data/story_00.json new file mode 100644 index 00000000000..44d521f3fc0 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_00.json @@ -0,0 +1,53 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yahoo.co.jp" + }, + { + ":path": "/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yahoo.co.jp" + }, + { + ":path": "/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/cmn/logo-ns-130528.png" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_01.json b/jetty-http2/http2-hpack/src/test/resources/data/story_01.json new file mode 100644 index 00000000000..54aab3bbcbc --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_01.json @@ -0,0 +1,52 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":scheme": "https" + }, + { + ":authority": "example.com" + }, + { + ":path": "/" + }, + { + ":method": "GET" + }, + { + "user-agent": "hpack-test" + }, + { + "cookie": "xxxxxxx1" + }, + { + "x-hello": "world" + } + ] + }, + { + "headers": [ + { + ":scheme": "https" + }, + { + ":authority": "example.com" + }, + { + ":path": "/" + }, + { + ":method": "GET" + }, + { + "user-agent": "hpack-test" + }, + { + "cookie": "xxxxxxx2" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_02.json b/jetty-http2/http2-hpack/src/test/resources/data/story_02.json new file mode 100644 index 00000000000..434857916ab --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_02.json @@ -0,0 +1,339 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "amazon.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/gno/beacon/BeaconSprite-US-01._V401903535_.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/img12/other/disaster-relief/300-column/sandy-relief_300x75._V400689491_.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.amazon.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/img12/shoes/sales_events/11_nov/1030_AccessoriesPROMO_GWright._V400626950_.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/Automotive/rotos/Duracell600_120._V192204764_.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "g-ecx.images-amazon.com" + }, + { + ":path": "/images/G/01/ui/loadIndicators/loadIndicator-large._V192195480_.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ecx.images-amazon.com" + }, + { + ":path": "/images/I/41HZ-ND-SUL._SL135_.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.amazon.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_03.json b/jetty-http2/http2-hpack/src/test/resources/data/story_03.json new file mode 100644 index 00000000000..3d7e5bed2a0 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_03.json @@ -0,0 +1,342 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "baidu.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "baidu.com" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/img/baidu_sylogo1.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/cache/global/img/gs.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/global/js/tangram-1.3.4c1.0.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/global/js/home-1.8.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/user/js/u-1.3.4.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/img/i-1.0.0.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_04.json b/jetty-http2/http2-hpack/src/test/resources/data/story_04.json new file mode 100644 index 00000000000..3d7e5bed2a0 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_04.json @@ -0,0 +1,342 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "baidu.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "baidu.com" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/img/baidu_sylogo1.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/cache/global/img/gs.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/global/js/tangram-1.3.4c1.0.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/global/js/home-1.8.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/cache/user/js/u-1.3.4.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s1.bdstatic.com" + }, + { + ":path": "/r/www/img/i-1.0.0.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.baidu.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.baidu.com" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_05.json b/jetty-http2/http2-hpack/src/test/resources/data/story_05.json new file mode 100644 index 00000000000..dfcd8e1004a --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_05.json @@ -0,0 +1,366 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "geo.craigslist.org" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/about/sites/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/styles/countries.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.craigslist.org/about/sites/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/js/formats.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.craigslist.org/about/sites/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/js/jquery-1.4.2.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.craigslist.org/about/sites/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "shoals.craigslist.org" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.craigslist.org/about/sites/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/styles/craigslist.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://shoals.craigslist.org/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A; cl_def_lang=en; cl_def_hp=shoals" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/js/formats.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://shoals.craigslist.org/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A; cl_def_lang=en; cl_def_hp=shoals" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.craigslist.org" + }, + { + ":path": "/js/homepage.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://shoals.craigslist.org/" + }, + { + "cookie": "cl_b=AB2BKbsl4hGM7M4nH5PYWghTM5A; cl_def_lang=en; cl_def_hp=shoals" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_06.json b/jetty-http2/http2-hpack/src/test/resources/data/story_06.json new file mode 100644 index 00000000000..74dac51ef2e --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_06.json @@ -0,0 +1,342 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ebay.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.ebay.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ebay-stories.com" + }, + { + ":path": "/wp-content/uploads/2012/11/Iso-65.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "rover.ebay.com" + }, + { + ":path": "/roversync/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + }, + { + "cookie": "ebay=%5Esbf%3D%23%5E; dp1=bpbf/%238000000000005276504d^u1p/QEBfX0BAX19AQA**5276504d^; cssg=c67883f113a0a56964e646c6ffaa1abe; s=CgAD4ACBQlm5NYzY3ODgzZjExM2EwYTU2OTY0ZTY0NmM2ZmZhYTFhYmUBSgAYUJZuTTUwOTUxY2NkLjAuMS4zLjE1MS4zLjAuMeN+7JE*; nonsession=CgAFMABhSdlBNNTA5NTFjY2QuMC4xLjEuMTQ5LjMuMC4xAMoAIFn7Hk1jNjc4ODNmMTEzYTBhNTY5NjRlNjQ2YzZmZmFhMWFjMQDLAAFQlSPVMX8u5Z8*" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.ebaystatic.com" + }, + { + ":path": "/aw/pics/s.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.ebaystatic.com" + }, + { + ":path": "/aw/pics/mops/2012_doodles/Holiday/DS3/ImgWeek_1_Penguin_Small_150x30.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.ebaystatic.com" + }, + { + ":path": "/aw/pics/globalHeader/facebook/g12.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.ebaystatic.com" + }, + { + ":path": "/aw/pics/globalHeader/twitter/g12.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.ebaystatic.com" + }, + { + ":path": "/aw/pics/globalHeader/icon_mobile_gray_11x16.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "srx.main.ebayrtm.com" + }, + { + ":path": "/rtm" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.ebay.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_07.json b/jetty-http2/http2-hpack/src/test/resources/data/story_07.json new file mode 100644 index 00000000000..cabe2c30a51 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_07.json @@ -0,0 +1,345 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yb/r/GsNJNwuI-UM.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yY/r/u8iA3kXb8Y1.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yI/r/qANVTsC52fp.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yt/r/FZaMKqARgC6.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yZ/r/jlKDoX15kHG.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yO/r/_MRarphcCIq.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yP/r/CRkiDDWTd1u.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yX/x/Qq6L1haQrYr.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://static.ak.fbcdn.net/rsrc.php/v2/yI/r/qANVTsC52fp.css" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/yN/r/EarbWo_mDU-.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.facebook.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "static.ak.fbcdn.net" + }, + { + ":path": "/rsrc.php/v2/y7/x/9jt7oVdF7z3.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://static.ak.fbcdn.net/rsrc.php/v2/yO/r/_MRarphcCIq.css" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_08.json b/jetty-http2/http2-hpack/src/test/resources/data/story_08.json new file mode 100644 index 00000000000..f0fefde517f --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_08.json @@ -0,0 +1,363 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "flickr.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.flickr.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BX=c99r6jp89a7no&b=3&s=q4; localization=en-us%3Bus%3Bus" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "us.adserver.yahoo.com" + }, + { + ":path": "/a" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.flickr.com/" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; k_visit=1; MSC=t=1351947310X; CH=AgBQlRQgADwDIAAbDSAAGrIgADpuIAAoriAALMQgAAs0IAA7CCAAJ0MgABo3; ucs=bnas=0" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.flickr.com" + }, + { + ":path": "/images/share-this-icons-sprite.png.v6" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BX=c99r6jp89a7no&b=3&s=q4; localization=en-us%3Bus%3Bus" + }, + { + "referer": "http://www.flickr.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.flickr.com" + }, + { + ":path": "/images/flickr-sprite.png.v4" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.flickr.com/" + }, + { + "cookie": "BX=c99r6jp89a7no&b=3&s=q4; localization=en-us%3Bus%3Bus" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.flickr.com" + }, + { + ":path": "/flanal_event.gne" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BX=c99r6jp89a7no&b=3&s=q4; localization=en-us%3Bus%3Bus; ywadp10001561398679=1956875541" + }, + { + "referer": "http://www.flickr.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "y.analytics.yahoo.com" + }, + { + ":path": "/fpc.pl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.flickr.com/" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; k_visit=1; MSC=t=1351947310X; CH=AgBQlRQgADwDIAAbDSAAGrIgADpuIAAoriAALMQgAAs0IAA7CCAAJ0MgABo3; ucs=bnas=0" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "d.yimg.com" + }, + { + ":path": "/ce/soup/soup_generated_fragment.gne" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.flickr.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "geo.yahoo.com" + }, + { + ":path": "/b" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.flickr.com/" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; k_visit=1; MSC=t=1351947310X; CH=AgBQlRQgADwDIAAbDSAAGrIgADpuIAAoriAALMQgAAs0IAA7CCAAJ0MgABo3; ucs=bnas=0" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.flickr.com" + }, + { + ":path": "/photos/nasacommons/4940913342/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "BX=c99r6jp89a7no&b=3&s=q4; localization=en-us%3Bus%3Bus; ywadp10001561398679=1956875541; fl_v=souhp; fpc10001561398679=Qvv1ikW_|aUqazlyMaa|fses10001561398679=|aUqazlyMaa|Qvv1ikW_|fvis10001561398679=Zj1odHRwJTNBJTJGJTJGd3d3LmZsaWNrci5jb20lMkYmdD0xMzUxOTUwMDc1JmI9JTJGaW5kZXhfc291cC5nbmU=|8M1871YYH0|8M1871YYH0|8M1871YYH0|8|8M1871YYH0|8M1871YYH0" + }, + { + "referer": "http://www.flickr.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_09.json b/jetty-http2/http2-hpack/src/test/resources/data/story_09.json new file mode 100644 index 00000000000..b922bc78106 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_09.json @@ -0,0 +1,345 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "linkedin.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.linkedin.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/concat/common/js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.linkedin.com" + }, + { + ":path": "/analytics/noauthtracker" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "x-requested-with": "XMLHttpRequest" + }, + { + "referer": "http://www.linkedin.com/" + }, + { + "cookie": "bcookie=\"v=2&bae845a5-83ed-4590-becf-f0f3d586432b\"; leo_auth_token=\"GST:UDbWFFpLLdcS6gHJ7NJa3XYRsc7W_gDwutbWnlWLfo7G_2Y4jfLH-H:1351948419:4b5c0f1309310a9b659b97d8960e64fdd635526b\"; JSESSIONID=\"ajax:0608630266152992729\"; visit=\"v=1&G\"; X-LI-IDC=C1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "s.c.lnkd.licdn.com" + }, + { + ":path": "/scds/common/u/img/favicon_v3.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.linkedin.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_10.json b/jetty-http2/http2-hpack/src/test/resources/data/story_10.json new file mode 100644 index 00000000000..686aa684bd4 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_10.json @@ -0,0 +1,339 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "msn.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.msn.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ads1.msads.net" + }, + { + ":path": "/library/primedns.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stj.s-msn.com" + }, + { + ":path": "/primedns.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "blu.stc.s-msn.com" + }, + { + ":path": "/as/wea3/i/en-us/law/39.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stj.s-msn.com" + }, + { + ":path": "/primedns.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stc.s-msn.com" + }, + { + ":path": "/br/sc/i/ff/adchoices_gif2.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stb00.s-msn.com" + }, + { + ":path": "/i/80/53CAC6A10B6248682CF221B24A92.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stb01.s-msn.com" + }, + { + ":path": "/i/E0/A6C312635EF0A355668C820EB5343.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "col.stb00.s-msn.com" + }, + { + ":path": "/i/BB/B1F619A1AD4D4AA6B0648BDBBCDEED.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.msn.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_11.json b/jetty-http2/http2-hpack/src/test/resources/data/story_11.json new file mode 100644 index 00000000000..cc86a093107 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_11.json @@ -0,0 +1,369 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "nytimes.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "t.pointroll.com" + }, + { + ":path": "/PointRoll/Track/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.bbc.co.uk/news/business-20178000" + }, + { + "cookie": "PRbu=EzZdduhgq; PRgo=BBBAAFMnA; PRti4CD975E46CAEA=B" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "t.pointroll.com" + }, + { + ":path": "/PointRoll/Track/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.bbc.co.uk/news/business-20178000" + }, + { + "cookie": "PRbu=EzZdduhgq; PRgo=BBBAAFMnA; PRti4CD975E46CAEA=B" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/packages/css/multimedia/bundles/projects/2012/HPLiveDebateFlex.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/js/app/common/slideshow/embeddedSlideshowBuilder.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/css/0.1/screen/slideshow/modules/slidingGallery.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/adx/images/ADS/31/46/ad.314668/NYT_MBM_IPHON_LEFT_Oct11.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/packages/js/multimedia/bundles/projects/2012/HPLiveDebateFlex.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/packages/js/multimedia/data/FilmStripPromo/2012_election_filmstrip.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "graphics8.nytimes.com" + }, + { + ":path": "/packages/js/elections/2012/debates/videostrip/filmstrip.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.nytimes.com/" + }, + { + "cookie": "RMID=007f010022166047bee9002b; adxcs=-" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_12.json b/jetty-http2/http2-hpack/src/test/resources/data/story_12.json new file mode 100644 index 00000000000..3b27fd7f96d --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_12.json @@ -0,0 +1,369 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "pinterest.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/164311086374323731_DhZSfIfc_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/161637074097583855_SNjDRMKe_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/273593746083022624_FCoEkXsC_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/52917364342893663_qtPmJgkx_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/116952921544035902_KyTWinzm_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/283445370267774252_AttBMVfT_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/237142736599025827_ufDEHdRe_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/224194887669533381_UBmi659g_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "media-cache-lt0.pinterest.com" + }, + { + ":path": "/upload/274156696036479907_A1ezgnsj_b.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://pinterest.com/" + }, + { + "cookie": "_pinterest_sess=\"eJyLMnSMyghISi53cnEMyqgo9ElPya0M1jdw9/S0tY8vycxNtfUN8TX0Dck28A9JrvQPtLVVK04tLs5MsfXM9az0C3HKicpKN/JzSa/yrQrKiswKNY3MijSJzMrI8M1KN/bNDTT1rQo08Uy3tQUAm3EkCA==\"" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_13.json b/jetty-http2/http2-hpack/src/test/resources/data/story_13.json new file mode 100644 index 00000000000..a692cb52650 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_13.json @@ -0,0 +1,342 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "qq.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/followme.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/sosologo.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/festival/da18search.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/festival/da18bodybg05.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/loginall_1.2.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/aikanLoading1.1.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/joke/Koala/Qfast1.0.1.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mat1.gtimg.com" + }, + { + ":path": "/www/images/qq2012/mobileNews.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "img1.gtimg.com" + }, + { + ":path": "/v/pics/hv1/241/117/1186/77149726.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.qq.com/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_14.json b/jetty-http2/http2-hpack/src/test/resources/data/story_14.json new file mode 100644 index 00000000000..c07d85f9d5f --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_14.json @@ -0,0 +1,339 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "sina.com.cn" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.sina.com.cn" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "news.sina.com.cn" + }, + { + ":path": "/js/87/20121024/201218ConfTop.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "int.dpool.sina.com.cn" + }, + { + ":path": "/iplookup/iplookup.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i3.sinaimg.cn" + }, + { + ":path": "/video/2012/1103/U7805P167DT20121103211853.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i3.sinaimg.cn" + }, + { + ":path": "/home/2012/1102/U6041P30DT20121102122146.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i3.sinaimg.cn" + }, + { + ":path": "/home/deco/2009/0330/logo_home.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "d1.sina.com.cn" + }, + { + ":path": "/shh/lechan/20121016sina/logo1.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i0.sinaimg.cn" + }, + { + ":path": "/home/2012/1103/U8551P30DT20121103063734.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i1.sinaimg.cn" + }, + { + ":path": "/home/2012/1101/U6648P30DT20121101141432.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.sina.com.cn/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_15.json b/jetty-http2/http2-hpack/src/test/resources/data/story_15.json new file mode 100644 index 00000000000..1bd29a32859 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_15.json @@ -0,0 +1,336 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "taobao.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.taobao.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.taobao.com" + }, + { + ":path": "/index_global.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "a.tbcdn.cn" + }, + { + ":path": "/p/fp/2011a/assets/space.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "a.tbcdn.cn" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "a.tbcdn.cn" + }, + { + ":path": "/p/fp/2011hk/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "a.tbcdn.cn" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "a.tbcdn.cn" + }, + { + ":path": "/p/fp/2010c/js/fp-direct-promo-min.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "img01.taobaocdn.com" + }, + { + ":path": "/tps/i1/T1fqY2XilfXXahsVgc-1000-40.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "img01.taobaocdn.com" + }, + { + ":path": "/tps/i1/T1rZiwXgtfXXXXXXXX-110-135.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.taobao.com/index_global.php" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_16.json b/jetty-http2/http2-hpack/src/test/resources/data/story_16.json new file mode 100644 index 00000000000..e638e7d21f9 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_16.json @@ -0,0 +1,375 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "en.wikipedia.org" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "centralnotice_bucket=1; clicktracking-session=eJko6IiUcEm69ehQfaakQlJfiLy9lShNP; mediaWiki.user.bucket%3Aext.articleFeedback-tracking=10%3Atrack; mediaWiki.user.id=EM83jsjaqPzIMLwBTiKF3aLiiTKeweez; mediaWiki.user.bucket%3Aext.articleFeedback-options=8%3Ashow" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "en.wikipedia.org" + }, + { + ":path": "/wiki/Main_Page" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "centralnotice_bucket=1; clicktracking-session=eJko6IiUcEm69ehQfaakQlJfiLy9lShNP; mediaWiki.user.bucket%3Aext.articleFeedback-tracking=10%3Atrack; mediaWiki.user.id=EM83jsjaqPzIMLwBTiKF3aLiiTKeweez; mediaWiki.user.bucket%3Aext.articleFeedback-options=8%3Ashow" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Wed, 31 Oct 2012 17:52:04 GMT" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Thu, 01 Nov 2012 09:33:27 GMT" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Sat, 03 Nov 2012 12:53:27 GMT" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Wed, 31 Oct 2012 17:52:04 GMT" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Thu, 01 Nov 2012 09:33:27 GMT" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "upload.wikimedia.org" + }, + { + ":path": "/wikipedia/en/c/ca/Kanthirava_cropped.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Fri, 02 Nov 2012 23:46:59 GMT" + }, + { + "if-none-match": "288bdb2fd5e5a4f7272f58fcb083a7e1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "upload.wikimedia.org" + }, + { + ":path": "/wikipedia/commons/thumb/d/d2/Dancing_girl_ajanta_%28cropped%29.jpg/72px-Dancing_girl_ajanta_%28cropped%29.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Tue, 30 Oct 2012 17:37:15 GMT" + }, + { + "if-none-match": "6e8d56df9be35494b4d9f0ea72ed1a3e" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bits.wikimedia.org" + }, + { + ":path": "/en.wikipedia.org/load.php" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://en.wikipedia.org/wiki/Main_Page" + }, + { + "if-modified-since": "Sat, 03 Nov 2012 12:53:27 GMT" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_17.json b/jetty-http2/http2-hpack/src/test/resources/data/story_17.json new file mode 100644 index 00000000000..50fa4ca87fc --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_17.json @@ -0,0 +1,348 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yahoo.co.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yahoo.co.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/clr/1/clr-121025.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp/logo.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_1.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/weather/general/transparent_s/clouds.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/weather/general/transparent_s/sun.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_2.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/premium/contents/bnr/2012/50x50/0928_store_supernatural.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_18.json b/jetty-http2/http2-hpack/src/test/resources/data/story_18.json new file mode 100644 index 00000000000..43377fba2d3 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_18.json @@ -0,0 +1,351 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yahoo.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "d.yimg.com" + }, + { + ":path": "/hd/ch7news/7_world/1103_0700_nat_elephant_sml_1898chj-1898chl.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "au.yahoo.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "d.yimg.com" + }, + { + ":path": "/mi/ywa.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yui.yahooapis.com" + }, + { + ":path": "/combo" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "secure-au.imrworldwide.com" + }, + { + ":path": "/cgi-bin/m" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "chart.finance.yahoo.com" + }, + { + ":path": "/instrument/1.0/%5Eaxjo/chart;range=5d/image;size=179x98" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; session_start_time=1351947275160; k_visit=1; push_time_start=1351947295160" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "chart.finance.yahoo.com" + }, + { + ":path": "/instrument/1.0/%5Eaord/chart;range=5d/image;size=179x98" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; session_start_time=1351947275160; k_visit=1; push_time_start=1351947295160" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "chart.finance.yahoo.com" + }, + { + ":path": "/instrument/1.0/audusd=x/chart;range=5d/image;size=179x98" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + }, + { + "cookie": "B=4m2rqu589a507&b=3&s=1v; session_start_time=1351947275160; k_visit=1; push_time_start=1351947295160" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "cm.au.yahoo.overture.com" + }, + { + ":path": "/js_flat_1_0/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://au.yahoo.com/?p=us" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_19.json b/jetty-http2/http2-hpack/src/test/resources/data/story_19.json new file mode 100644 index 00000000000..fe8dd3a237b --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_19.json @@ -0,0 +1,345 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.ru" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yandex.ru" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yabs.yandex.ru" + }, + { + ":path": "/count/Vnw_3zF2dkO40002Zhl8KGa5KPK2cmPfMeYpO2zG0vAeOuAefZIAgoA2KAe2fPOOP96yq4ba1fDKGQC1hlDVeQN8GfVD17e7" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + }, + { + "cookie": "t=p; yandexuid=6410453771351949451" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yabs.yandex.ru" + }, + { + ":path": "/count/Vnw_3mft8wq40000Zhl8KGa5KP6yq4ba1fDKhlDVeQN8GfVD17a3=qcOn49K2cmPfMcbQagXZWgYAgoA2KAMM66IcD7W3" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + }, + { + "cookie": "t=p; yandexuid=6410453771351949451" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.st" + }, + { + ":path": "/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.st" + }, + { + ":path": "/www/1.359/www/i/yandex3.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.st" + }, + { + ":path": "/morda-logo/i/logo.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "mc.yandex.ru" + }, + { + ":path": "/watch/722545" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + }, + { + "cookie": "t=p; yandexuid=6410453771351949451" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.st" + }, + { + ":path": "/www/1.359/www/pages-desktop/www-css/_www-css.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yandex.st" + }, + { + ":path": "/www/_/_r7pp-b-hKoDbgyGYy0IB3wlkno.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yandex.ru/" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_20.json b/jetty-http2/http2-hpack/src/test/resources/data/story_20.json new file mode 100644 index 00000000000..f86f11a052c --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_20.json @@ -0,0 +1,5674 @@ +{ + "context": "request", + "cases": [ + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yahoo.co.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yahoo.co.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/clr/1/clr-121025.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp/logo.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_1.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/weather/general/transparent_s/clouds.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/weather/general/transparent_s/sun.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_2.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/premium/contents/bnr/2012/50x50/0928_store_supernatural.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_3.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/bookstore/common/special/2012/0829_05/banner/84x84_5.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/500052/1080894/20121029/meulz5rknmobtjfqmyz8-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/70506/1082209/20121024/ffmwiwdybofwysftxna1-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/yahoo/javascript/yfa_visual5_tbp.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yahoo.co.jp" + }, + { + ":path": "/javascript/fp_base_bd_ga_5.0.42.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/yahoo/javascript/csc/20060824/lib2obf_b6.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/pr/tb_bg-120110.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/uhd/homepage_bg-120123.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/sicons/bookstore16.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/sicons/movie16.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/sicons/game16.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/cmn/pic_all-121004.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/sicons/fortune16.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/emg/disaster_ttl2.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/video-topics/rec/1211/03_e01.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/clr/1/clr-121025.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://k.yimg.jp/images/top/sp2/clr/1/clr-121025.css" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/cmp/comp_all-121012.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "k.yimg.jp" + }, + { + ":path": "/images/top/sp2/spotlight/2011/1031o.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "news.c.yimg.jp" + }, + { + ":path": "/images/topics/20121103-00000193-sph-000-thumb.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2237/1080330/20121103/bg6so7sbgcqenc9py6xk-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "www.yahoo.co.jp" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/images/security/pf/yjsecure.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/js/yjaxc.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "dailynews.yahoo.co.jp" + }, + { + ":path": "/fc/sports/nippon_series/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://www.yahoo.co.jp/" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJTOPICSFBREAD=d=juTus3MJdA6fAPKQn3MJyoWvkTaY6I2RngPiVKE3BMv8AFX.C4TMg0utwM_uXg_sKn7y2yDVFKE-&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "dailynews.yahoo.co.jp" + }, + { + ":path": "/fc/js/fb_pc.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJTOPICSFBREAD=d=juTus3MJdA6fAPKQn3MJyoWvkTaY6I2RngPiVKE3BMv8AFX.C4TMg0utwM_uXg_sKn7y2yDVFKE-&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1073618/20121029/ypxcyyekc_ruhypdisqu-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/fc.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/icon/photo.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/mh/news.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/30/1077242/20121029/ixbislu9ygczxzdkfnpt-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/facebook/news_Facebook_76x76.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/rapid/1.5.0/ult.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/new2.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/nestopics_icon_40.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/yahoo/javascript/yfa_visual5.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/193/1072227/20121029/uyzwkpexjszyi2zgct4p-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085127/20121102/dalvv9p9fw9tribawawe-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085124/20121102/bz9rzgnremydaxbp4ihb-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/editor/topics_pr_linkimg_l2.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "lpt.c.yimg.jp" + }, + { + ":path": "/im_sigg537mI30DS9hWeZeGpWl75Q---x200-y190-q90/amd/20121103-00000542-sanspo-000-view.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "amd.c.yimg.jp" + }, + { + ":path": "/im_siggHulEjLwgzPyrVDkZ9oNPng---x200-y133-q90/amd/20121031-00005828-yj_corptrend-000-51670401-view.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "amd.c.yimg.jp" + }, + { + ":path": "/im_siggrMDL3ZpnqnwM4Z1FYvhX2Q---x200-y133-q90/amd/20121101-00005830-yj_corptrend-000-51751400-view.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/css/import_ver2.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/commerce/js/libs/jquery/core/1.4.2/jquery.min.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/yui/jp/uhd/olympic/1.0.2/img/uhdChnk.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/yn_gnavi_sprite_20120926.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/social/btnMx.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/ytopics_sprite_icons.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/ytopics_sprite_backgrounds.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/relTabLeft.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/relTabRight.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/bullet_list.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/yui/jp/uft/1.0.0/img/utfChnk.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/accountTitleBg.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/social/sprite_icoSns16.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/topics/wiki/trendTitleBg.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/topics/css/import_ver2.css?date=20121029" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/yahoo/javascript/csc/20060824/lib2obf_b4.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ah.yimg.jp" + }, + { + ":path": "/bdv/164354/1084075/20121101/4feasfvz47csxcoydlvl-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "platform.twitter.com" + }, + { + ":path": "/widgets.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "platform.twitter.com" + }, + { + ":path": "/widgets/tweet_button.1351848862.html" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "connect.facebook.net" + }, + { + ":path": "/ja_JP/all.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "bkskapi.dailynews.yahoo.co.jp" + }, + { + ":path": "/detail" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJTOPICSFBREAD=d=juTus3MJdA6fAPKQn3MJyoWvkTaY6I2RngPiVKE3BMv8AFX.C4TMg0utwM_uXg_sKn7y2yDVFKE-&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "platform.twitter.com" + }, + { + ":path": "/widgets/follow_button.1351848862.html" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.twitter.com" + }, + { + ":path": "/t.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/tweet_button.1351848862.html" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "cdn.api.twitter.com" + }, + { + ":path": "/1/urls/count.json" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/tweet_button.1351848862.html" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "r.twimg.com" + }, + { + ":path": "/jot" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/tweet_button.1351848862.html" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "cdn.api.twitter.com" + }, + { + ":path": "/1/users/show.json" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/follow_button.1351848862.html" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "p.twitter.com" + }, + { + ":path": "/f.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/follow_button.1351848862.html" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "r.twimg.com" + }, + { + ":path": "/jot" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://platform.twitter.com/widgets/follow_button.1351848862.html" + } + ] + }, + { + "headers": [ + { + ":method": "POST" + }, + { + ":scheme": "http" + }, + { + ":authority": "ocsp.verisign.com" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "115" + }, + { + "content-type": "application/ocsp-request" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "dailynews.yahoo.co.jp" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJTOPICSFBREAD=d=juTus3MJdA6fAPKQn3MJyoWvkTaY6I2RngPiVKE3BMv8AFX.C4TMg0utwM_uXg_sKn7y2yDVFKE-&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/css/yj2.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/clear.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/cobranding/sanspo.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/json/jsr_class_1_1.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/hl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://dailynews.yahoo.co.jp/fc/sports/nippon_series/?1351933494" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/socialModule/realtimeSearch_1_0-min.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/jquery/jquery.template.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/socialModule/facebook_1_3_1-min.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "amd.c.yimg.jp" + }, + { + ":path": "/im_siggvNnG417_XZJF5TsJPh7FFQ---x200-y190-q90/amd/20121103-00000542-sanspo-000-4-view.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/70506/1082210/20121024/0ffcv4drh8ir07jvroju-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1082189/20121029/2n1tdzicd8j7eotfexbi-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/jquery/jquery.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/widgets/widgets_1_1.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085127/20121102/ilaj2_d_zo_9bjginqty-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085124/20121102/vval_chos32k_7okick9-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/30/1072134/20121029/qv2c_lhjbra0qr5ps55w-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/css/master-news.css" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "text/css,*/*;q=0.1" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/news_socialbutton.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/media/ymui/img/lineWide_4x1.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/yn_sprite_icons.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/media/ymui/img/carrrot_2.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/media/ymui/img/photoNew_45x15.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/sprite_bgRTSearchBox.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/sprite_icoTwitter.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/yn_sprite_background.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/ranking.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/v1/yn_gnavi_sprite.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/yui/jp/ult/arrow.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/listing/tool/yjaxc/yjaxc-iframe.html" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "realtime.search.yahooapis.jp" + }, + { + ":path": "/v1/post" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/widgets/tweet_button.html" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/listing/tool/yjaxc/yjaxc-iframe.html?src0=http%3A%2F%2Fyjaxc.yahoo.co.jp%2Foi%3Fs%3Danemos_news01295%26i%3D2078709534%26w%3D%26apg%3D1%26t%3Dj%26u%3Dhttp%253A%252F%252Fheadlines.yahoo.co.jp%252Fhl%253Fa%253D20121103-00000542-sanspo-base%26ref%3Dhttp%253A%252F%252Fdailynews.yahoo.co.jp%252Ffc%252Fsports%252Fnippon_series%252F%253F1351933494%26enc%3DEUC-JP%26spaceId%3D%26jisx0402%3D%26type%3D%26crawlUrl%3D&src1=http%3A%2F%2Fyjaxc.yahoo.co.jp%2Fjs%2Fyjaxc-internal-banner.js%3Fimgurl%3Dhttp%253A%252F%252Fah.yimg.jp%252Fimages%252Fim%252Finnerad%252F%26imgpath%3Dbnr1_ss_1_300-250.jpg%26clickurl%3Dhttp%253A%252F%252Frd.yahoo.co.jp%252Fbzc%252Fsds%252F97648%252Fevt%253D97648%252F*http%253A%252F%252Flisting.yahoo.co.jp%252Fy_promo%252Flisting01%252F%253Fo%253DJP1350" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/sc/show" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ah.yimg.jp" + }, + { + ":path": "/bdv/164354/1080825/20121101/hii0znrxvsbx0dt01k_g-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/widgets/images/tweet.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/lib/news/widgets/tweet_button.html?_=1351949189638&count=none&id=twitter_tweet_button_2&lang=ja&original_referer=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base&redirect=&text=%E5%B7%A8%E4%BA%BA%E3%81%8C%EF%BC%93%E5%B9%B4%E3%81%B6%E3%82%8A%E6%97%A5%E6%9C%AC%E4%B8%80%EF%BC%81%E5%BE%A9%E5%B8%B0%E3%81%AE%E9%98%BF%E9%83%A8%E3%81%8C%E6%B1%BA%E5%8B%9D%E6%89%93%EF%BC%88%E3%82%B5%E3%83%B3%E3%82%B1%E3%82%A4%E3%82%B9%E3%83%9D%E3%83%BC%E3%83%84%EF%BC%89%20-%20Y!%E3%83%8B%E3%83%A5%E3%83%BC%E3%82%B9&url=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/widgets/images/tweet_ja.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/lib/news/widgets/tweet_button.html?_=1351949189638&count=none&id=twitter_tweet_button_2&lang=ja&original_referer=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base&redirect=&text=%E5%B7%A8%E4%BA%BA%E3%81%8C%EF%BC%93%E5%B9%B4%E3%81%B6%E3%82%8A%E6%97%A5%E6%9C%AC%E4%B8%80%EF%BC%81%E5%BE%A9%E5%B8%B0%E3%81%AE%E9%98%BF%E9%83%A8%E3%81%8C%E6%B1%BA%E5%8B%9D%E6%89%93%EF%BC%88%E3%82%B5%E3%83%B3%E3%82%B1%E3%82%A4%E3%82%B9%E3%83%9D%E3%83%BC%E3%83%84%EF%BC%89%20-%20Y!%E3%83%8B%E3%83%A5%E3%83%BC%E3%82%B9&url=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/lib/news/widgets/tweet_button.html" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "puffer.c.yimg.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "puffer.c.yimg.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "puffer.c.yimg.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "puffer.c.yimg.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/images/im/imgim/pc2/im1001149230pcmr1.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/listing/tool/yjaxc/yjaxc-iframe.html?src0=http%3A%2F%2Fyjaxc.yahoo.co.jp%2Foi%3Fs%3Danemos_news01295%26i%3D2078709534%26w%3D%26apg%3D1%26t%3Dj%26u%3Dhttp%253A%252F%252Fheadlines.yahoo.co.jp%252Fhl%253Fa%253D20121103-00000542-sanspo-base%26ref%3Dhttp%253A%252F%252Fdailynews.yahoo.co.jp%252Ffc%252Fsports%252Fnippon_series%252F%253F1351933494%26enc%3DEUC-JP%26spaceId%3D%26jisx0402%3D%26type%3D%26crawlUrl%3D&src1=http%3A%2F%2Fyjaxc.yahoo.co.jp%2Fjs%2Fyjaxc-internal-banner.js%3Fimgurl%3Dhttp%253A%252F%252Fah.yimg.jp%252Fimages%252Fim%252Finnerad%252F%26imgpath%3Dbnr1_ss_1_300-250.jpg%26clickurl%3Dhttp%253A%252F%252Frd.yahoo.co.jp%252Fbzc%252Fsds%252F97648%252Fevt%253D97648%252F*http%253A%252F%252Flisting.yahoo.co.jp%252Fy_promo%252Flisting01%252F%253Fo%253DJP1350" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "urls.api.twitter.com" + }, + { + ":path": "/1/urls/count.json" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/lib/news/widgets/tweet_button.html?_=1351949189638&count=none&id=twitter_tweet_button_2&lang=ja&original_referer=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base&redirect=&text=%E5%B7%A8%E4%BA%BA%E3%81%8C%EF%BC%93%E5%B9%B4%E3%81%B6%E3%82%8A%E6%97%A5%E6%9C%AC%E4%B8%80%EF%BC%81%E5%BE%A9%E5%B8%B0%E3%81%AE%E9%98%BF%E9%83%A8%E3%81%8C%E6%B1%BA%E5%8B%9D%E6%89%93%EF%BC%88%E3%82%B5%E3%83%B3%E3%82%B1%E3%82%A4%E3%82%B9%E3%83%9D%E3%83%BC%E3%83%84%EF%BC%89%20-%20Y!%E3%83%8B%E3%83%A5%E3%83%BC%E3%82%B9&url=http%3A%2F%2Fheadlines.yahoo.co.jp%2Fhl%3Fa%3D20121103-00000542-sanspo-base" + }, + { + "cookie": "pid=v3:1351947306477664316206054; k=10.35.101.123.1351947536129989; guest_id=v1%3A135194753658491573; __utma=43838368.2140315505.1351947542.1351947542.1351947542.1; __utmb=43838368.2.10.1351947542; __utmz=43838368.1351947542.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "puffer.c.yimg.jp" + }, + { + ":path": "/" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/favicon.ico" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJNEWSCOMMENT=d=06yLIwT4EjfCUHM_ZATPTTC.be6FwFeXux__KeWeqlDK.dHwKDQYqgJFHj9.HJlNGmTwWgk.h4h.sU8V_TDfRcrHwDjLWrrsKoxSuxiWaUP8PvEUAbJUe9xIk79LoWKr6tlDjWRkyBVLbqWqtJB_axSkadUO&v=1; YJNEWSFB=d=g52f45b4EjeJqzak676NkVYuFf6EMD66FMZIfmpIG32ywhp.ZRx6EAf7vGDLjqk7eQGKmGgvFcgo&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/hl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?a=20121103-00000542-sanspo-base" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJNEWSCOMMENT=d=06yLIwT4EjfCUHM_ZATPTTC.be6FwFeXux__KeWeqlDK.dHwKDQYqgJFHj9.HJlNGmTwWgk.h4h.sU8V_TDfRcrHwDjLWrrsKoxSuxiWaUP8PvEUAbJUe9xIk79LoWKr6tlDjWRkyBVLbqWqtJB_axSkadUO&v=1; YJNEWSFB=d=g52f45b4EjeJqzak676NkVYuFf6EMD66FMZIfmpIG32ywhp.ZRx6EAf7vGDLjqk7eQGKmGgvFcgo&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/images/tech/bcn1.js" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/3124/1073472/20121029/mkgcwzthl_hbpnxy_tno-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1074517/20121029/kqo8rgbu_aykmxxf3cqf-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/media/ymui/img/carrrot_5.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://i.yimg.jp/images/news/v1/css/master-news.css?v11" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085127/20121102/crs1gvpzl74_ilnbd8yl-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/bylines/v201209/main/bnr/bnr_300x90.png" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/twitter/tw_spo_300_60.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/193/1074340/20121029/rhnusvihwpg9khhap9vn-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/1862/1083691/20121030/fk8wxszqyglpfwkac5kl-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/hl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=moto&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJNEWSCOMMENT=d=06yLIwT4EjfCUHM_ZATPTTC.be6FwFeXux__KeWeqlDK.dHwKDQYqgJFHj9.HJlNGmTwWgk.h4h.sU8V_TDfRcrHwDjLWrrsKoxSuxiWaUP8PvEUAbJUe9xIk79LoWKr6tlDjWRkyBVLbqWqtJB_axSkadUO&v=1; YJNEWSFB=d=g52f45b4EjeJqzak676NkVYuFf6EMD66FMZIfmpIG32ywhp.ZRx6EAf7vGDLjqk7eQGKmGgvFcgo&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1082190/20121029/_xhxh5ukdv3s6oigo4bq-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1075880/20121029/vstketkrv3fci_zfj0fb-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/30/1072203/20121029/rzqkxhmakk4bokrlm87_-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "i.yimg.jp" + }, + { + ":path": "/images/news/module/md20120709_gsearch.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "content.yieldmanager.edgesuite.net" + }, + { + ":path": "/atoms/71/f8/fb/ee/71f8fbeed96e2ac38d4638d6c6e2ece4.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/hl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=socc&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJNEWSCOMMENT=d=06yLIwT4EjfCUHM_ZATPTTC.be6FwFeXux__KeWeqlDK.dHwKDQYqgJFHj9.HJlNGmTwWgk.h4h.sU8V_TDfRcrHwDjLWrrsKoxSuxiWaUP8PvEUAbJUe9xIk79LoWKr6tlDjWRkyBVLbqWqtJB_axSkadUO&v=1; YJNEWSFB=d=g52f45b4EjeJqzak676NkVYuFf6EMD66FMZIfmpIG32ywhp.ZRx6EAf7vGDLjqk7eQGKmGgvFcgo&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1073618/20121029/tldo4m5hcuajwtl9ebr7-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/3514/1070875/20121102/di3ufilunjw9ul9nrygs-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "amd.c.yimg.jp" + }, + { + ":path": "/im_siggSTQFSGS6B_ulqQXD.kRB.g---x150-y83-q90/amd/20121103-00000687-yom-000-1-thumb.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/30/1072095/20121029/_wzyz3fszhqvouc6tuav-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "content.yieldmanager.edgesuite.net" + }, + { + ":path": "/atoms/23/03/f1/77/2303f17798f0116b59cd53fbb5f89873.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "headlines.yahoo.co.jp" + }, + { + ":path": "/hl" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "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" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=base&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b; YJNEWSCOMMENT=d=06yLIwT4EjfCUHM_ZATPTTC.be6FwFeXux__KeWeqlDK.dHwKDQYqgJFHj9.HJlNGmTwWgk.h4h.sU8V_TDfRcrHwDjLWrrsKoxSuxiWaUP8PvEUAbJUe9xIk79LoWKr6tlDjWRkyBVLbqWqtJB_axSkadUO&v=1; YJNEWSFB=d=g52f45b4EjeJqzak676NkVYuFf6EMD66FMZIfmpIG32ywhp.ZRx6EAf7vGDLjqk7eQGKmGgvFcgo&v=1" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1074517/20121029/qym5s_fuonkwfh4vw608-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/71629/1073614/20121029/wnskbirfjfjyqqjwjnx3-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "yjaxc.yahoo.co.jp" + }, + { + ":path": "/oi" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "*/*" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + }, + { + "cookie": "B=76j09a189a6h4&b=3&s=0b" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/2959/1085124/20121102/71ewr2thlfq_2yiqyhjw-a.gif" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/30/1072106/20121029/hczia9w6zzi3jskznvxo-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + } + ] + }, + { + "headers": [ + { + ":method": "GET" + }, + { + ":scheme": "http" + }, + { + ":authority": "ai.yimg.jp" + }, + { + ":path": "/bdv/26008/1077726/20121029/zuabaglgdswip3wx_faw-a.jpg" + }, + { + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0" + }, + { + "accept": "image/png,image/*;q=0.8,*/*;q=0.5" + }, + { + "accept-language": "en-US,en;q=0.5" + }, + { + "accept-encoding": "gzip, deflate" + }, + { + "connection": "keep-alive" + }, + { + "referer": "http://headlines.yahoo.co.jp/hl?c=spo&t=l" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_21.json b/jetty-http2/http2-hpack/src/test/resources/data/story_21.json new file mode 100644 index 00000000000..86b67a6a2be --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_21.json @@ -0,0 +1,15422 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "301" + }, + { + "date": "Sat, 03 Nov 2012 13:04:26 GMT" + }, + { + "server": "Server" + }, + { + "location": "http://www.amazon.com/" + }, + { + "content-length": "230" + }, + { + "keep-alive": "timeout=2, max=20" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html; charset=iso-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "6577" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 17:58:47 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 19 Oct 2012 23:59:58 GMT" + }, + { + "age": "932740" + }, + { + "x-amz-cf-id": "whiC_hNmBgrO48K-Fv1AqlFY-Cig61exld9QXg99v4RwPo9kzfqE9Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 26 Sep 2012 22:18:37 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 25 Sep 2012 20:26:21 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3249950" + }, + { + "x-amz-cf-id": "LClrkUlr2-9oeIoNwP-CxxGuMmJQguT1mVNFchiptNXT2gkurFa1cw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3774" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 23:02:44 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 30 Oct 2012 23:02:44 GMT" + }, + { + "age": "309703" + }, + { + "x-amz-cf-id": "0SnGIpF0HloiJDtBSskp0LPclCOdy-cBHBsP3LTUdBy-0l2hmYRW2w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:26 GMT" + }, + { + "server": "Server" + }, + { + "set-cookie": "skin=noskin; path=/; domain=.amazon.com; expires=Sat, 03-Nov-2012 13:04:26 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-amz-id-1": "0HE6SZ5H5Z4Y71SA54J9" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "x-amz-id-2": "MqdgMKxu1H6fgZ4cXY/fMQyxCVupVtmdiA3mTqc2n4+baHA/4MFE3DtVsBH6B4hp" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 11 Sep 2012 13:31:51 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 12 Sep 2008 10:13:34 GMT" + }, + { + "age": "4577556" + }, + { + "x-amz-cf-id": "AvgiZt6QvGiJjVptinxMWssqdE82ATuSxl0D-EfQqkg6iVMBCgJkdQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "7813" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 07:00:01 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 03:41:23 GMT" + }, + { + "age": "108266" + }, + { + "x-amz-cf-id": "C0P4ip7yqOsc3niS_9Bd5ONzppJ1_dduEL7eXeMlCIsohE0Nad0iCw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2503" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 16:46:38 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 02 Jun 2010 17:55:54 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "29362669" + }, + { + "x-amz-cf-id": "T5hInOb6hUOq4NSYTVt8TjsCSGRUHafPxwGkS5jiNGzpLmixDUmWug==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "7441" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 14:59:28 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:01:41 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3103499" + }, + { + "x-amz-cf-id": "8puqnUMeyh0E9DCrrjWoD5tD9GjqgGyr6aMyg--qLs2ztEb3QIj9HQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4127" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 21:46:40 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 12 Sep 2012 23:45:20 GMT" + }, + { + "age": "3165467" + }, + { + "x-amz-cf-id": "LModLJjBuUU3HjY0zayadcTVs_lDPQK-oIK3WWYJl9ykREzfNIm9Mw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3135" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 16 Sep 2012 13:49:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 13 Sep 2012 04:46:34 GMT" + }, + { + "age": "4144497" + }, + { + "x-amz-cf-id": "6OFsf9nPu-D4_yWQy3sINzNayyg6fm625JfZVcPmqYdOicciN0i5rg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3039" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 04 Mar 2012 12:44:05 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Fri, 02 Mar 2012 18:46:04 GMT" + }, + { + "age": "21082822" + }, + { + "x-amz-cf-id": "r7y3D04cQyZW1pY59rhfKoWDuC9yHfp5enkf0y9a6BKaF_6PcDVg7g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4222" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 16 Jul 2012 17:01:48 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 22 Jun 2009 12:02:10 GMT" + }, + { + "age": "9489759" + }, + { + "x-amz-cf-id": "VmOehiu6mDUBpTHylminnvdcSz7Pz3bwA_dNil6iko3qIIKu4pvwQg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1711" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 28 Nov 2011 02:10:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 15 Nov 2007 04:25:55 GMT" + }, + { + "age": "29501626" + }, + { + "x-amz-cf-id": "wDhU0erCw0YoyRgAjloixwiytE5IdFT-rCT5ITwxPx5uFgGAv50Y9Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3721" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 18 Nov 2011 22:23:31 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 04 Jan 2011 18:48:20 GMT" + }, + { + "age": "30292856" + }, + { + "x-amz-cf-id": "YXNG-nYMiEVi0gaRGKrCIfNODPvIKOE5L-dzPeXzyYh1LuQTLjvdSA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "24369" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 07:00:00 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 03:43:42 GMT" + }, + { + "age": "21867" + }, + { + "x-amz-cf-id": "2asasoycqewuj5Fwn6w6mjCvOMdZQZLZhNhdl44Yyo1-AI9hQ7bFfg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1216" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 28 Jul 2012 05:05:57 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 28 Feb 2011 18:36:12 GMT" + }, + { + "age": "8495910" + }, + { + "x-amz-cf-id": "6h3O56dcjyQ3aM_m5a8_ir-VgVzDCmcwyIUXFSYcLFIQISyj5Q46vA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "47767" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 14:52:48 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 08 Oct 2012 22:30:55 GMT" + }, + { + "age": "1289499" + }, + { + "x-amz-cf-id": "sO6PqD2yEqaPpl5EvNYnGspKuhuAXsV3jf-Ya1imW1287RLowvVQTQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4613" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 27 Nov 2011 23:44:52 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 21:42:35 GMT" + }, + { + "age": "29510375" + }, + { + "x-amz-cf-id": "qv844DZxuLlk-LGj1-AJNpjz_LOzLR2cGsrHaLRm9jAHtj0ynP66dQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3934" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 00:01:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 28 Sep 2012 13:30:37 GMT" + }, + { + "age": "1256566" + }, + { + "x-amz-cf-id": "JW5QyuWGDa5ik9AIEsBmnV6YrytP9At48rtnwWjKkn77rXOj8cx9WA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1344" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 00:59:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Wed, 24 Oct 2012 18:51:08 GMT" + }, + { + "age": "43497" + }, + { + "x-amz-cf-id": "IKlxWmc8byHH_FJFiboqtD71dz0H-GkBay3SaG26MwMCXfLft_HgYw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 15 Aug 2012 22:51:53 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=624307871" + }, + { + "expires": "Mon, 16 Aug 2032 07:55:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:27 GMT" + }, + { + "content-length": "5354" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 13:25:50 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630462932" + }, + { + "expires": "Tue, 26 Oct 2032 13:39:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:27 GMT" + }, + { + "content-length": "3658" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 23 Oct 2012 08:00:53 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=629882804" + }, + { + "expires": "Tue, 19 Oct 2032 20:31:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:27 GMT" + }, + { + "content-length": "7632" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4804" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 21:53:07 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 29 Oct 2012 21:10:04 GMT" + }, + { + "age": "227481" + }, + { + "x-amz-cf-id": "bdyVYgf7boW90khU9D9kSQ4rt8H41h_yufp79zDL_rVA8a9brz2IwA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "148" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 15 Jul 2012 13:57:33 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 01 Aug 2011 23:32:56 GMT" + }, + { + "age": "9587215" + }, + { + "x-amz-cf-id": "Gv6tJh4vJVFIOBxlsPYY_n-mupZYOqsq0_IXHTz6WS89qWAryOKy8g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "356" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 01:43:37 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 21 Jul 2011 20:40:59 GMT" + }, + { + "age": "3151251" + }, + { + "x-amz-cf-id": "A4eNx4xBAu8rDK_SSjVdCoYo59rIc5aBFph1neHeq97ohGyzANNfoA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "6986" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 30 Sep 2012 10:59:49 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:06:32 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2945079" + }, + { + "x-amz-cf-id": "BCz8ITjlEUNn-tAfee5IQYTwG9afocm__16MmahSICmeqky8tmv-qA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:28 GMT" + }, + { + "server": "Server" + }, + { + "set-cookie": "skin=noskin; path=/; domain=.amazon.com; expires=Sat, 03-Nov-2012 13:04:26 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-amz-id-1": "0HE6SZ5H5Z4Y71SA54J9" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "x-amz-id-2": "MqdgMKxu1H6fgZ4cXY/fMQyxCVupVtmdiA3mTqc2n4+baHA/4MFE3DtVsBH6B4hp" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "x-amzn-requestid": "ffd52343-25b6-11e2-ac17-5765013d7795" + }, + { + "cache-control": "max-age=29030400, public" + }, + { + "content-length": "1140" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "296" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:28 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "5728" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 10 Oct 2012 01:33:28 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 22 Oct 2011 00:40:50 GMT" + }, + { + "age": "8903" + }, + { + "x-amz-cf-id": "odznSvAIyfv7NmqZX6A2oTHE_IX5rh889vBaPKfwpg3AMo9k3ScXcA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "6951" + }, + { + "date": "Sat, 03 Nov 2012 13:04:28 GMT" + }, + { + "server": "Server" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "17849" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "ZgdRydvxV2Z5YPfl9vhZZTYWMOX7vl8vIt9RuMTlm258HbYgx1yMhHsXiVTR5T1w" + }, + { + "x-amz-request-id": "135182B51618D297" + }, + { + "date": "Wed, 18 Jul 2012 22:57:25 GMT" + }, + { + "last-modified": "Wed, 18 Jul 2012 22:43:26 GMT" + }, + { + "etag": "\"08b0f3794e1b5e9a927698e159741c50\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "50666" + }, + { + "x-amz-cf-id": "4wcVhu3OEiWfFvYvE3GH5UYO4KY8UpnlLcJRRRqZh0Q1zELrmrAmsA==" + }, + { + "via": "1.0 c33edbf5459a4a44749c2cb5ecdb3fca.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 30 Oct 2012 02:31:02 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630422753" + }, + { + "expires": "Tue, 26 Oct 2032 02:30:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:27 GMT" + }, + { + "content-length": "54217" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1827" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 22:12:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 12 Mar 2012 23:57:13 GMT" + }, + { + "age": "3163891" + }, + { + "x-amz-cf-id": "wU_0sJ4VJxKBN-1nsDAgg_KUmfVbpaaGyo7YelU9wE9JmGGGKQ92EQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1134" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 09 Oct 2012 18:09:17 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 12 Mar 2012 23:57:13 GMT" + }, + { + "age": "2141712" + }, + { + "x-amz-cf-id": "SoQLSlLwLn_jdEOyiXGwginYyKphpwUS6-dbQ3wpPqBJIRg6mOrKvQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "636" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 16:53:05 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 02 Jun 2010 22:18:48 GMT" + }, + { + "age": "1195884" + }, + { + "x-amz-cf-id": "twHfjXTW5hFlDA9KoqKVBWXyksHgSNg4Vhy3mstETvyPHr3CpZq6_Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "246" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 26 Jul 2012 10:28:32 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 02 Jun 2010 22:19:30 GMT" + }, + { + "age": "8649357" + }, + { + "x-amz-cf-id": "GuAxInIiaQe4FRi5wBUXvlgCqbiXlqBaFsFj_nccpovWEb1sePoPdQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "server": "Server" + }, + { + "set-cookie": "skin=noskin; path=/; domain=.amazon.com; expires=Sat, 03-Nov-2012 13:04:26 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-amz-id-1": "05FGR6EKSNDPZCE5TRJQ" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "x-amz-id-2": "Tjab3PJkvWGMyS25sjt7CpJ2clcWTx72Uj5PrdRHrCIku2pHj7RnTwl293ZTfYMX" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "x-amzn-requestid": "ffd52343-25b6-11e2-ac17-5765013d7795" + }, + { + "cache-control": "max-age=29030400, public" + }, + { + "content-length": "1140" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 04 Sep 2012 11:58:23 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=625532809" + }, + { + "expires": "Mon, 30 Aug 2032 12:11:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "content-length": "656" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 01 Oct 2012 10:33:01 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=628540179" + }, + { + "expires": "Mon, 04 Oct 2032 07:34:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "content-length": "2251" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 21 Sep 2012 09:55:10 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=627262883" + }, + { + "expires": "Sun, 19 Sep 2032 12:45:52 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "content-length": "1098" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 11:48:59 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630506046" + }, + { + "expires": "Wed, 27 Oct 2032 01:38:35 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "content-length": "1342" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "content-length": "1101" + }, + { + "last-modified": "Mon, 09 Jul 2012 16:40:17 GMT" + }, + { + "content-type": "image/png" + }, + { + "cache-control": "public, max-age=621651328" + }, + { + "expires": "Fri, 16 Jul 2032 13:59:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2424" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 18 Oct 2012 18:56:17 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 07 Oct 2011 03:33:58 GMT" + }, + { + "age": "1361293" + }, + { + "x-amz-cf-id": "MRpSS6BPNijyVanqgR6mydKxGphIrKl9jTmcGgiX2DmcWgVdFwTQ2w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3802" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 08:34:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 31 Jan 2012 23:51:01 GMT" + }, + { + "age": "1312203" + }, + { + "x-amz-cf-id": "ohsa-VbEM_mSc8EnpAEXEtU6Nk599gGxk2FtaVe9QKvloqbwSCbxNA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "2" + }, + { + "date": "Sat, 03 Nov 2012 13:04:29 GMT" + }, + { + "nncoection": "close" + }, + { + "server": "Server" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0RMJJXGT1KVEMXX3VSJP" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "NqGNEb/SfkxLIfbOv73h5JBBcLVNGjGLK9GCNJwg5TW2rI8DxuXtaszrL5UZhTYZ" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "set-cookie": "skin=noskin; path=/; domain=.amazon.com; expires=Sat, 03-Nov-2012 13:04:26 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-amz-id-1": "12MZRY3TA9X8CDYHBV5T" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "x-amz-id-2": "mlslIMHpZawNFsGF0x1LVEqrRVG3ckOj+P3RRTLmw7Th6oLI75FjRKiMc9ln/2lK" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "x-amzn-requestid": "ffd52343-25b6-11e2-ac17-5765013d7795" + }, + { + "cache-control": "max-age=29030400, public" + }, + { + "content-length": "1140" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "28988" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 08:13:25 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 23 Jul 2012 20:35:57 GMT" + }, + { + "age": "1227065" + }, + { + "x-amz-cf-id": "mNIt-n16LCJdi8mcEtro9XVeAtGNT2eusOQLsXk2aBoA_LGn9iuGbQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "30231" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 06:32:33 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 00:00:59 GMT" + }, + { + "age": "196317" + }, + { + "x-amz-cf-id": "FIDb9FCQOTap3p4J66TlrId8wIZ_I0Uw8DgL3KGyPEN5FIgqZ4BPpA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "25698" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 10:39:32 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 19 Sep 2012 17:12:28 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3119098" + }, + { + "x-amz-cf-id": "hKKlixQii0vlb9a_DiDDphY3LEUoIv24q9VfC3UOtpnJV37uLWUpmw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26311" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 16:56:42 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 15 Oct 2012 20:13:30 GMT" + }, + { + "age": "245268" + }, + { + "x-amz-cf-id": "lpU11IQ1j_7om8_FVILszZ1CEV-8zAg172J2ph8lsbqt3hrfJnS7eQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "34586" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 25 Oct 2012 21:34:09 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 16:33:14 GMT" + }, + { + "age": "747021" + }, + { + "x-amz-cf-id": "DNbatysenX2LUU6xkuO3lGcxhDVX2DG5CzqVUpLHPw-L-eSRtn7_vw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "x-amzn-requestid": "014c3370-25b7-11e2-b46a-73e2a83196ed" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "53" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0RMJJXGT1KVEMXX3VSJP" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "NqGNEb/SfkxLIfbOv73h5JBBcLVNGjGLK9GCNJwg5TW2rI8DxuXtaszrL5UZhTYZ" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/x-icon" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Tue, 21 Sep 2010 17:37:41 GMT" + }, + { + "etag": "\"4486-7c5a6340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "2590" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "35541" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 07:00:01 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 24 Aug 2012 15:19:22 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "367469" + }, + { + "x-amz-cf-id": "kpSB8Aj4s2QcAS66S2b7mB-wlCfwmdJWltC0f0sPcsiYvcEbitBpoQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "31343" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 26 Oct 2012 21:17:40 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 18:24:45 GMT" + }, + { + "age": "661610" + }, + { + "x-amz-cf-id": "i3CTyh6smISPVQ7LqJU5PQ5QUwHdPuZiSswgKhn1iRrMR73x5YQglg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "30919" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 16:31:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 23 Aug 2012 22:11:01 GMT" + }, + { + "age": "1283583" + }, + { + "x-amz-cf-id": "m8mt86i5hOEx1AMpRbo6qBzFxqJqTLek8zyWFYjxj2NFT6p2yRbnZw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 22 Oct 2012 15:20:43 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630213450" + }, + { + "expires": "Sat, 23 Oct 2032 16:22:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "content-length": "3978" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Sat, 02 Jun 2012 17:24:51 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=617973507" + }, + { + "expires": "Fri, 04 Jun 2032 00:22:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "content-length": "2352" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 28 Sep 2012 07:05:33 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=628204224" + }, + { + "expires": "Thu, 30 Sep 2032 10:14:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "content-length": "2192" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 29 Oct 2012 00:31:19 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630455624" + }, + { + "expires": "Tue, 26 Oct 2032 11:38:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "content-length": "1783" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "content-length": "3742" + }, + { + "last-modified": "Wed, 13 Jun 2012 19:39:59 GMT" + }, + { + "content-type": "text/css" + }, + { + "cache-control": "public, max-age=618388596" + }, + { + "expires": "Tue, 08 Jun 2032 19:41:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "359" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 23 Jan 2012 18:47:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 12 Aug 2011 13:43:43 GMT" + }, + { + "age": "20390" + }, + { + "x-amz-cf-id": "K1hCWmx7ReBxsX55XuAkjHXE0mRsJjI50uNKE5GUBq4SdF4TzxN--A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-id=A7PYmy2fB0qZnFwhmisdExM|t; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "20" + }, + { + "content-type": "text/plain" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "217" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "158" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "nncoection": "close" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "160" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "content-location": "http://spe.atdmt.com/images/pixel.gif" + }, + { + "expires": "0" + }, + { + "p3p": "CP=\"NOI DSP COR CUR ADM DEV TAIo PSAo PSDo OUR BUS UNI PUR COM NAV INT DEM STA PRE OTC\"" + }, + { + "set-cookie": "MUID=38CD881268FB628E3D318C1F6BFB6289; expires=Monday, 03-Nov-2014 00:00:00 GMT; path=/; domain=.atdmt.com" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "313" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "content-location": "http://spe.atdmt.com/images/pixel.gif" + }, + { + "expires": "0" + }, + { + "p3p": "CP=\"NOI DSP COR CUR ADM DEV TAIo PSAo PSDo OUR BUS UNI PUR COM NAV INT DEM STA PRE OTC\"" + }, + { + "set-cookie": "MUID=39C1843BD7CB679E06238036D4CB670B; expires=Monday, 03-Nov-2014 00:00:00 GMT; path=/; domain=.atdmt.com" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "6951" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "server": "Server" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "17849" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "ZgdRydvxV2Z5YPfl9vhZZTYWMOX7vl8vIt9RuMTlm258HbYgx1yMhHsXiVTR5T1w" + }, + { + "x-amz-request-id": "135182B51618D297" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "last-modified": "Wed, 18 Jul 2012 22:43:26 GMT" + }, + { + "etag": "\"08b0f3794e1b5e9a927698e159741c50\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "50669" + }, + { + "x-amz-cf-id": "UB_lB5ijt678Q2wJ3BJ-U_cVvtSnWAVfUTXcCKhh-QAhIQ9BCb3djQ==" + }, + { + "via": "1.0 c33edbf5459a4a44749c2cb5ecdb3fca.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "x-amzn-requestid": "01a883c0-25b7-11e2-ac1e-e97d81479c85" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "53" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "server": "Server" + }, + { + "set-cookie": "skin=noskin; path=/; domain=.amazon.com; expires=Sat, 03-Nov-2012 13:04:26 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-amz-id-1": "05PW0GT01QWP44EFKF0E" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "x-amz-id-2": "GCho/mJOD51Oufijqw6gqph1/1sIiACGCKJXKh2zpMaDj6u5gA1ggWuscsW3aojI" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "x-amzn-requestid": "ffd52343-25b6-11e2-ac17-5765013d7795" + }, + { + "cache-control": "max-age=29030400, public" + }, + { + "content-length": "1140" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "content-length": "187" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "a+sM7JnK1z8XJALH7//6/PrXIyqStu8OXpFxVoaX6gaWUfZFD47Fr2QQUa/fp7AI" + }, + { + "x-amz-request-id": "1388995ECC503151" + }, + { + "date": "Mon, 22 Oct 2012 17:26:53 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2011-11-07T21:33:44.000Z" + }, + { + "x-amz-meta-md5-hash": "a20db430a00109d80184570ec2b5d38e" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Tue, 08 Nov 2011 18:37:11 GMT" + }, + { + "etag": "\"a20db430a00109d80184570ec2b5d38e\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "157059" + }, + { + "x-amz-cf-id": "Ls6I3zhLRw-y0K8aIUpki-XaifKyUBIlqjKRtAaQI11Yw135jA8Ahg==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "content-length": "232" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "j62Ubwkhgqe/6HUlxy6AgFFF3a9toD+TP5OG4thryUyvAuIRkEPZznTcEkslc2vu" + }, + { + "x-amz-request-id": "D24296DC343E3D4D" + }, + { + "date": "Mon, 22 Oct 2012 17:26:53 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2012-08-30T18:01:46.000Z" + }, + { + "x-amz-meta-md5-hash": "ac923fb65b36b7e6df1b85ed9a2eeb25" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Thu, 30 Aug 2012 18:02:23 GMT" + }, + { + "etag": "\"ac923fb65b36b7e6df1b85ed9a2eeb25\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "157059" + }, + { + "x-amz-cf-id": "u4HxdeiPj2Z69lQ7aky8PwR3bIL1DI2LZviCrEidCeKNRXIzSU04Hw==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "content-length": "246" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "A8pOeFTyzWm76hXU6FfLkQf4c9wZCOf1QF9R4TGkjXEInQJp6farkkg0WB0HfwcK" + }, + { + "x-amz-request-id": "4B032A9637D718D5" + }, + { + "date": "Mon, 22 Oct 2012 17:26:53 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2011-11-08T18:38:37.000Z" + }, + { + "x-amz-meta-md5-hash": "abb0183baa0ea995b47dcc0e9972095a" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Tue, 08 Nov 2011 18:41:02 GMT" + }, + { + "etag": "\"abb0183baa0ea995b47dcc0e9972095a\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "157059" + }, + { + "x-amz-cf-id": "o02bJWU_jSE66IwLSFs3qnpdALQRgcE53RerA0FNaohnIpayFuIBWg==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "content-length": "227" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "9LJz7DXOJVq1v+6jQBPW+PKANy+8UBrktRUpS5ldd7n64fM5B0dvTEVk3oKOAaQj" + }, + { + "x-amz-request-id": "7E12EE38DC5DE3F0" + }, + { + "date": "Fri, 26 Oct 2012 20:55:51 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2012-04-11T18:59:01.000Z" + }, + { + "x-amz-meta-md5-hash": "e45b8e1074fb65e447d6d8a91eff8a94" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Wed, 11 Apr 2012 18:59:43 GMT" + }, + { + "etag": "\"e45b8e1074fb65e447d6d8a91eff8a94\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "662921" + }, + { + "x-amz-cf-id": "B6N7v4ZLzrFyVRVxNchTyVO2unOzJHIK39q8SJis7c6pWrIOw4rC1Q==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "content-length": "236" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "3TVcuu6MQ87em+GdI+9z27lbDxXU5i9H9Zz9GIbm33BZo9vPgIC/AkilBK5tF75Q" + }, + { + "x-amz-request-id": "F105689791C8CFC6" + }, + { + "date": "Fri, 26 Oct 2012 20:55:51 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2012-05-18T18:46:04.000Z" + }, + { + "x-amz-meta-md5-hash": "b1178d4fb4111d1058a187cf31c95ab9" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Fri, 18 May 2012 18:47:11 GMT" + }, + { + "etag": "\"b1178d4fb4111d1058a187cf31c95ab9\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "662921" + }, + { + "x-amz-cf-id": "sKPhYUyawRrJWnfWsyGL2s3ckBnoapJQYfxvp1W3KVKwMiUhkEK51w==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "p3p": "CP=\"CUR ADM OUR NOR STA NID\"" + }, + { + "connection": "close" + }, + { + "location": "http://s.amazon-adsystem.com/ecm3?ex=openx.com&id=40a611fe-06f9-cb74-26a8-7b5edc1205e7" + }, + { + "content-length": "0" + }, + { + "set-cookie": "i=cbdc52da-b3d4-4f79-bc70-3121d006fdfa; version=1; path=/; domain=.openx.net; max-age=63072000;" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "server": "TRP Apache-Coyote/1.1" + }, + { + "p3p": "CP=\"NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "location": "http://s.amazon-adsystem.com/ecm3?id=&ex=rubiconproject.com&status=no-user-id" + }, + { + "content-length": "0" + }, + { + "cache-control": "private" + }, + { + "set-cookie": "SERVERID=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/" + }, + { + "keep-alive": "timeout=5, max=200" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/plain; charset=UTF-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "10979" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 21 Oct 2012 02:44:45 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 06 Mar 2012 22:20:25 GMT" + }, + { + "age": "1160386" + }, + { + "x-amz-cf-id": "F1Bnl4JS9Kyz-O5cpuXeg0_j5GumDg2Qt1wp0zonzvxPGICjmUSeMg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1526" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 21 Oct 2012 09:00:12 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 15 Jul 2011 19:42:36 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1137859" + }, + { + "x-amz-cf-id": "JGLRgB6lNjaxDdggNb9JkO58_vLkHmUReZ84GjyLh10FHCjDZ1d15Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "content-type": "image/gif" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "server": "Server" + }, + { + "content-type": "image/gif" + }, + { + "nncoection": "close" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 20 Apr 2012 10:05:40 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=614707622" + }, + { + "expires": "Tue, 27 Apr 2032 05:11:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:30 GMT" + }, + { + "content-length": "1095" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "11117" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 29 Oct 2012 16:56:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 24 Sep 2012 20:44:19 GMT" + }, + { + "age": "418061" + }, + { + "x-amz-cf-id": "5o_BiUaTAD5lYQsK4IV5TzqQ5cWYNQbnt0xLwze5jS-445EERctTFg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "31461" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 17 Oct 2012 18:29:24 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 09 Oct 2012 22:41:15 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1449307" + }, + { + "x-amz-cf-id": "tw9-4WwNBPYcd_2n5w02SSvFLzYSQr7PgoWnUBoekvj_CAvLUtzicg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 01 Sep 2009 21:16:26 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=618550558" + }, + { + "expires": "Thu, 10 Jun 2032 16:40:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "content-length": "3215" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 20 Oct 2011 08:30:59 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613322830" + }, + { + "expires": "Sun, 11 Apr 2032 04:31:41 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "content-length": "3542" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2045" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 16 Jul 2012 05:26:37 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 13 Jul 2011 21:50:54 GMT" + }, + { + "age": "9531474" + }, + { + "x-amz-cf-id": "vjhm9zt0l4ak9rTfcaqoDHHqCVyjy5BT-0EXxKy0Qu1D7GuQLeuwKQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "location": "http://s.amazon-adsystem.com/ecm3?ex=doubleclick.net&google_gid=CAESEDp6zTGnEVOFXTsUTIntlOo&google_cver=1" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "server": "Cookie Matcher" + }, + { + "content-length": "310" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 29 May 2009 20:56:27 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613357164" + }, + { + "expires": "Sun, 11 Apr 2032 14:03:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "content-length": "739" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "content-type": "image/gif" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "23861" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 09 Oct 2012 23:49:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 23:23:03 GMT" + }, + { + "age": "2121273" + }, + { + "x-amz-cf-id": "6igCzs5zDRpfl3uREE8U8b7UsUeKiOXlnR5OwfDF4SRDwMzu4n2Hxw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "expires": "Sun, 04 Nov 2012 06:26:14 GMT" + }, + { + "last-modified": "Wed, 05 Sep 2012 21:17:19 GMT" + }, + { + "etag": "\"19309a1-2b15-e65bd5c0\"" + }, + { + "cache-control": "max-age=172800" + }, + { + "server": "Apache/2.2.3 (Red Hat)" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\", CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\"" + }, + { + "content-length": "3891" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"http://tag.admeld.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR BUS DSP ALL COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/ecm3?id=bfd291d0-29a4-4e30-a3a2-90bfcce51d8f&ex=admeld.com" + }, + { + "content-length": "275" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "meld_sess=bfd291d0-29a4-4e30-a3a2-90bfcce51d8f;expires=Sun, 05 May 2013 03:59:31 GMT;path=/;domain=tag.admeld.com;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:32 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "content-type": "image/gif" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "content-length": "9834" + }, + { + "last-modified": "Tue, 14 Aug 2012 08:19:30 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "public, max-age=623720235" + }, + { + "expires": "Mon, 09 Aug 2032 12:41:46 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 25 Feb 2009 15:49:48 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=580546798" + }, + { + "expires": "Thu, 10 Jun 2032 16:40:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:31 GMT" + }, + { + "content-length": "349" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26111" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 20:57:01 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 20:57:01 GMT" + }, + { + "age": "144451" + }, + { + "x-amz-cf-id": "14X7FbQwII7W32KG_B6UnQzAAN04K4czIvpQXldrJky1-W_FKI0wsA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "expires": "Mon, 29 Oct 2012 20:03:22 GMT" + }, + { + "last-modified": "Tue, 10 Jul 2012 09:55:27 GMT" + }, + { + "etag": "\"1930a25-22c7-badbe1c0\"" + }, + { + "cache-control": "max-age=90400000, public" + }, + { + "server": "Apache/2.2.3 (Red Hat)" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\", CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\"" + }, + { + "content-length": "2708" + }, + { + "content-type": "application/x-javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:04:32 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 18 Apr 2012 10:47:18 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=623739489" + }, + { + "expires": "Mon, 09 Aug 2032 18:02:41 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:32 GMT" + }, + { + "content-length": "2622" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:33 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 20:03:15 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 20:03:15 GMT" + }, + { + "etag": "EDAADA0BBD2E54186FB78DECDB80E1E00940A39A" + }, + { + "cache-control": "max-age=283721,public,no-transform,must-revalidate" + }, + { + "x-ocsp-reponder-id": "t8edcaocsp2" + }, + { + "content-length": "471" + }, + { + "connection": "close" + }, + { + "content-type": "application/ocsp-response" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:33 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 16:35:33 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 16:35:33 GMT" + }, + { + "etag": "179CA2EEF2B7FE96BC99C52D47B1A6E9E36FF3A7" + }, + { + "cache-control": "max-age=357659,public,no-transform,must-revalidate" + }, + { + "x-ocsp-reponder-id": "t8edcaocsp2" + }, + { + "content-length": "471" + }, + { + "connection": "close" + }, + { + "content-type": "application/ocsp-response" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:32 GMT" + }, + { + "server": "Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.2" + }, + { + "set-cookie": "KADUSERCOOKIE=A682BC39-E933-4AED-86D3-69AAE2AAD12F; domain=pubmatic.com; expires=Sun, 03-Nov-2013 13:04:32 GMT; path=/" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\"" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:33 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "content-type": "image/gif" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:33 GMT" + }, + { + "server": "Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e-fips-rhel5 mod_fastcgi/2.4.2" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\"" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 22 Oct 2010 19:31:50 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=583595968" + }, + { + "expires": "Mon, 09 Aug 2032 18:02:41 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:34 GMT" + }, + { + "content-length": "355" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 16 Oct 2012 21:06:15 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630485187" + }, + { + "expires": "Tue, 26 Oct 2032 19:51:01 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:34 GMT" + }, + { + "content-length": "3398" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "24345" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 10 Oct 2012 00:37:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 23:23:04 GMT" + }, + { + "age": "2118435" + }, + { + "x-amz-cf-id": "tLO5krWbCYmRm9LIjXDN76fC2DJhTSiML3Wx7P5GT_QflWQzjjyLSw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 09 Apr 2012 04:08:58 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613372173" + }, + { + "expires": "Sun, 11 Apr 2032 18:14:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:34 GMT" + }, + { + "content-length": "3972" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "21733" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 21 Oct 2012 01:33:35 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 08 Oct 2012 20:03:10 GMT" + }, + { + "age": "1164660" + }, + { + "x-amz-cf-id": "boy0DjYIiv9QiDUAB5IT03oJw0Oe-TzQq2zaLbbC8-MCS_l6Jrzf5g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:55:45 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630608237" + }, + { + "expires": "Thu, 28 Oct 2032 06:01:52 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:35 GMT" + }, + { + "content-length": "17650" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "23996" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 24 Oct 2012 00:39:53 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 08 Oct 2012 16:18:49 GMT" + }, + { + "age": "908682" + }, + { + "x-amz-cf-id": "qC_RVL0YLxYoBvaZ0uqbs2VI6jEgUk34Rk19qpGdS2VsFUS3KkWYMg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "21582" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 18:47:58 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 08 Oct 2012 20:03:11 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1275397" + }, + { + "x-amz-cf-id": "vHqKStRXJPYsiKzS0tTwY_1XKiks6HvwJGT9UArSlfAs6OnCYHQ7lA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "22139" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 18 Oct 2012 09:05:16 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 08 Oct 2012 20:03:12 GMT" + }, + { + "age": "1396759" + }, + { + "x-amz-cf-id": "3iqSry0i3VhqyuBUo-iRW3UgESSNBQ3lv4YeFtxPi_-Acv46jt6IAw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "849" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 07:28:18 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 16 Jul 2011 00:30:22 GMT" + }, + { + "age": "3216977" + }, + { + "x-amz-cf-id": "jh36SMSXaXj_TeRR9z4Vs8-cbbEoHRGJkz-zWwqnTDkn3mU7WYIILw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 17 Jan 2012 01:18:38 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613357224" + }, + { + "expires": "Sun, 11 Apr 2032 14:04:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:35 GMT" + }, + { + "content-length": "2305" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2645" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 16 Oct 2012 14:50:28 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 22 Oct 2010 23:53:27 GMT" + }, + { + "age": "1548848" + }, + { + "x-amz-cf-id": "RYwtx5a09etraZHlO8Ut-TcazsQhaIMlHsC_JTzCEXAYeXfmbh0AWA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 22 May 2012 10:05:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=623739489" + }, + { + "expires": "Mon, 09 Aug 2032 18:02:44 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:35 GMT" + }, + { + "content-length": "656" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "590" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 19 Jul 2012 07:06:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 06 Oct 2010 20:47:18 GMT" + }, + { + "age": "9266297" + }, + { + "x-amz-cf-id": "jMk_WLA7tRGazvX3ieenZ8uPLkOB1NVjnlmuRGPRPfUGpdfopJWMug==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "618" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 17:16:59 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 14 Sep 2012 15:15:31 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1280857" + }, + { + "x-amz-cf-id": "gsm-rW_jbFRe2Ne92Oddd13REiBnDzo9k53P59LW-6WZhjFKi2gpcg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "6409" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 06 Oct 2012 05:21:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 25 Apr 2012 05:07:39 GMT" + }, + { + "age": "2446958" + }, + { + "x-amz-cf-id": "RenD1oaMDB7WDA0nJBiT78PBjnjUmYU-NT3-eSlLX03q5vM16mQthg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "13915" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 05:57:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 29 Oct 2012 19:21:14 GMT" + }, + { + "age": "371215" + }, + { + "x-amz-cf-id": "y-qky_uSUebpzoYKGYMa1lzGeUux4fgnmRhwkgvrXQn78lG5AhfFmA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 22 May 2012 06:41:37 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=621353717" + }, + { + "expires": "Tue, 13 Jul 2032 03:19:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:36 GMT" + }, + { + "content-length": "1580" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4456" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 05:26:53 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:26:32 GMT" + }, + { + "age": "286663" + }, + { + "x-amz-cf-id": "QAWFAFoQqqdK6bsebuU01EfGVCwSV_HjtTaLA-hlTAAOA6d4Wsz4wg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2951" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 18:38:41 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:26:34 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "66355" + }, + { + "x-amz-cf-id": "Aubb5MuBO28D2I8jIDVYWmI2-8g4Tt0cpl6beMcpVSNTX5gZMv4wgQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4666" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 17:58:34 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 17:58:34 GMT" + }, + { + "age": "155162" + }, + { + "x-amz-cf-id": "OBft3yppuSTyI5o52ZSa5lfbjZWp3ShzF8-dM45Pf0qkJIYh24nQtQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5192" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 16:39:49 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 11:12:38 GMT" + }, + { + "age": "69923" + }, + { + "x-amz-cf-id": "Y6S4ynuqdWWDNdGNvXNtU6fnNBBOoJLWVPdhgnyEnTTMDvI_4XuMzQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5529" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 03:41:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 03:15:26 GMT" + }, + { + "age": "293004" + }, + { + "x-amz-cf-id": "ShMwoXym8XNH4S1fFX15TBcjBioYagCJaBprDbqaOtJjOiNkWdeg7g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3629" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 23:15:49 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 23 Jun 2012 21:37:13 GMT" + }, + { + "age": "1259327" + }, + { + "x-amz-cf-id": "HlyMS446sa886uO7DjJyUavWa-mHH0XLcyzUrb49K-G4mkqMbSOsIA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3509" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 25 May 2012 23:03:05 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 24 May 2012 18:35:18 GMT" + }, + { + "age": "13960891" + }, + { + "x-amz-cf-id": "-IZ-Kzdl4oTM776x_-SdI-Sf-rdBE0xeKYvmj2otONB4guu3l0lNsA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4879" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 04:39:14 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 03:14:55 GMT" + }, + { + "age": "289522" + }, + { + "x-amz-cf-id": "UnkzEKXd4DwGvLUL-8-afWzVHMcB4T-tYr9-HLWFRsfbiIvYylwIxA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2809" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 17:24:44 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Tue, 11 Sep 2012 11:41:25 GMT" + }, + { + "age": "70792" + }, + { + "x-amz-cf-id": "ApQSczR7vg5QCdxHZR6hBm1pbl-hGvpxOz6MPp9eCEoBx99I8-atXg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1979" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 18:13:18 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 18:13:18 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "240678" + }, + { + "x-amz-cf-id": "WvvSWSGbGBRHrBf0RFjJ3qJ_o4y9yJuT8SeGDq1dpYvwTANrwyr-Ow==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6942" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 17:58:34 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 01 Nov 2012 17:58:34 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "155162" + }, + { + "x-amz-cf-id": "XA_j3mVwjsJMTgHec3EMMTJ547z0XmIPH8hlMt5tuM1OEe2Kuo_A8g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1854" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 03:41:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 03:15:25 GMT" + }, + { + "age": "293004" + }, + { + "x-amz-cf-id": "rPNUJ_0Y4uE0WKLOFZddVt9Pt-15ixc8M9WYFxZcxUq204PEfNtVuw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3661" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 16:20:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 11 Sep 2012 21:41:22 GMT" + }, + { + "age": "161026" + }, + { + "x-amz-cf-id": "10WYvTpJNEH0MAP3wne0pXXNE8ZnAI4eVJA3EDPrJ6TF3rv0YJJK_A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2729" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 23:43:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 01 Jun 2011 05:24:35 GMT" + }, + { + "age": "70759" + }, + { + "x-amz-cf-id": "kb2nMqvt29Qj3LdcwS6ww1KobMLzUlJWjzEzfJ49hrIYV9AchOannQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3916" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 17:24:44 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 07 Sep 2012 09:03:37 GMT" + }, + { + "age": "70792" + }, + { + "x-amz-cf-id": "JJZDbMR4RLNK_HVvTbUnNaDilC24pIBmtY7BRd5JkQybHgLPJLr2Bw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2103" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 18:14:15 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 18:14:15 GMT" + }, + { + "age": "240621" + }, + { + "x-amz-cf-id": "AG9h0_9ASRuhaLjhB4fsbvE6ktpeabI5v9S-fSJ_K1SOdr8skxsQ8A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2120" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 18:29:52 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 18:15:06 GMT" + }, + { + "age": "239684" + }, + { + "x-amz-cf-id": "3V9zS2t71NKOHjc-zbQieHw8D15BF88HM5DVQY9j5z7qaxE8JDHbyA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2065" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 17:25:28 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 17:48:33 GMT" + }, + { + "age": "70748" + }, + { + "x-amz-cf-id": "Nkglfv_cx2pdr2EZJF0D475iF5L5LK6Fxcq0dUDPSxCVHftCYtgHng==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2131" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 18:14:15 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 18:14:15 GMT" + }, + { + "age": "240621" + }, + { + "x-amz-cf-id": "Xp7P1ZCF0IjKGtBRruIMsC780cNrxhNJ5960ejB13uXf3su3MHM7PQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2962" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 07:00:00 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:49:53 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "194676" + }, + { + "x-amz-cf-id": "peTzFJr516_fOBQY5OC91FWEamWDNAqIh8_l1VUiaqrMRgGupou75w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4626" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 07:00:02 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:49:52 GMT" + }, + { + "age": "194674" + }, + { + "x-amz-cf-id": "VMe4jZb7miZ0G-rv3uBPNmdTpYUIYgkj8UaXTHlFZ8sd2SONziLchg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3581" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 17:29:39 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:29:39 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "243297" + }, + { + "x-amz-cf-id": "DQkavQgzFQLKNbG-YUMaAIW1JOadibOwvA_xdhashOIKLfpQuAn2gA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5534" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 05:49:57 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:49:53 GMT" + }, + { + "age": "285279" + }, + { + "x-amz-cf-id": "Quota3IS8N_cDOH-5AgNf6IoirJJCjYpEsTfXJKx-QYO8uoPPsgF5Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3336" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 07:03:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:03:12 GMT" + }, + { + "age": "280884" + }, + { + "x-amz-cf-id": "nKFIlcQrEACy_wNDwvMk7o4wDqwiqg22gTbbx1GgRtKIfeQCY4rAUg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3660" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 07:05:38 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:04:35 GMT" + }, + { + "age": "280738" + }, + { + "x-amz-cf-id": "5flYXqijU45smYJrbpa6DyFQK79BKOC75IH_AD_gBLabCf2_f6JJ4w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3631" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 07:03:29 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:03:29 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "280867" + }, + { + "x-amz-cf-id": "9zt7Ykby0o5nJUdXmLURwVG97OcVN7UDmlxqqBAr6-kpce1NUZ3vHQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4831" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 31 Oct 2012 07:02:44 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:02:44 GMT" + }, + { + "age": "280912" + }, + { + "x-amz-cf-id": "arnnoA4osVhZ9WWxe1rw1kH36LVZpueZhg5Ij7p06zynPPuP_PbhAg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "71" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 21 Oct 2012 07:10:55 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:53:07 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1144421" + }, + { + "x-amz-cf-id": "otV5h9P0a9-ozjyL5asNyiDOMvE4cnJFvEUCY1qCIkCO1BlYJsF-fQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4528" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 26 Oct 2012 23:30:10 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 13 Oct 2012 00:03:47 GMT" + }, + { + "age": "653666" + }, + { + "x-amz-cf-id": "zat2zuNOe5PZPMKX9J5IIEc2EvGHW2wIWsGnPPG6NWdX7cWtkKBL3Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "4305" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 02 Nov 2012 19:34:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 18:07:44 GMT" + }, + { + "age": "63009" + }, + { + "x-amz-cf-id": "P_0GsZlh-uhXRNgmMVIxDRrsh8CWCBHEX0sNhI9WcxKsR6VpK8qf1A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "8307" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 07:00:07 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 19:02:26 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "194669" + }, + { + "x-amz-cf-id": "_1G9P5_LnBwk_k5A76Q4cs4aOE-c9Y2U6KPOYakVoWIblaFat2Quuw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3817" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 21:23:14 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 18 Oct 2012 22:25:34 GMT" + }, + { + "age": "1006882" + }, + { + "x-amz-cf-id": "b-rYDPAafNePCeY3rEXSUu_SHu_vhZoVf-W-90RHYbQi7NMrF7IuVw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "14262" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 26 Oct 2012 19:54:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 26 Oct 2012 19:43:52 GMT" + }, + { + "age": "666617" + }, + { + "x-amz-cf-id": "DYBg6QCNjA9V6sSGrhw4w4QT--gzcIbkjjJZKjphipyO-cYwRK1p8w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:36 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0D7SZ3NDXXQ10K0Y1P2W" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "Yhw+pyNdxXVfOz+enqEPz5i4xubYpPznUk/Z7jiBcq/rnwK5Kwv0df5Ff+b2ROcL" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Tue, 21 Sep 2010 17:37:41 GMT" + }, + { + "etag": "\"4486-7c5a6340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "2590" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "5639" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 16:30:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 23 Oct 2012 16:30:51 GMT" + }, + { + "age": "938026" + }, + { + "x-amz-cf-id": "O6Rt-cRJLPLokVndpOyGdTuWoLI6bPqiRt_TrdmIiYayIHUPbzY__A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "14998" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 20:28:09 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 30 Oct 2012 20:28:09 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "318987" + }, + { + "x-amz-cf-id": "LmtQ4CHgGq-tu05FlE0VnrOXiq0ALsXRzmG89ZFrPGFrzAJOWjQADw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "5391" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 23:27:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 19 Oct 2012 17:44:45 GMT" + }, + { + "age": "308215" + }, + { + "x-amz-cf-id": "B9874IgNcW6Dl_iw2J-uxdH_JRYl-xRAXmd-Fx2sDQjm3zOmOAGS6A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "14682" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 00:57:21 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 30 Oct 2012 21:44:15 GMT" + }, + { + "age": "216435" + }, + { + "x-amz-cf-id": "JNivNWPfMlDwvI1crpnpaAtSZ9ynv0-1kJNOR3Kmfy-pFt3R00dHPQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "14468" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 07:00:12 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 24 Oct 2012 03:52:02 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "194664" + }, + { + "x-amz-cf-id": "u_bSf4kdjci5AymBMUSnaNCb7yBkMN4vlmaw6b2yHQaKkeC6bOoqXQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "17329" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 07:00:57 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 20 Apr 2012 19:39:30 GMT" + }, + { + "age": "194619" + }, + { + "x-amz-cf-id": "8NlR_O7HCbbYd6sWYXsaGIxoNNX3kno3ZaIkqqgmHYk3r7P0msD2hA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "5249" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 11 Oct 2012 22:47:04 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 13 Sep 2012 19:26:45 GMT" + }, + { + "age": "1952252" + }, + { + "x-amz-cf-id": "P3861d5dz7qGT13WJVUssV0-8x_VFQt4TtyhgjHZkDhDFHeoBpixcA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 25 Jun 2010 18:22:49 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=623879811" + }, + { + "expires": "Wed, 11 Aug 2032 09:01:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:36 GMT" + }, + { + "content-length": "2903" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 28 Sep 2012 00:00:56 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630492875" + }, + { + "expires": "Tue, 26 Oct 2032 21:59:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:37 GMT" + }, + { + "content-length": "1467" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 30 Oct 2012 03:41:46 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630506567" + }, + { + "expires": "Wed, 27 Oct 2032 01:47:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:37 GMT" + }, + { + "content-length": "4150" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 22 May 2012 06:41:37 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=621353716" + }, + { + "expires": "Tue, 13 Jul 2032 03:19:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:37 GMT" + }, + { + "content-length": "1580" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 17 Jun 2009 18:26:49 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613395574" + }, + { + "expires": "Mon, 12 Apr 2032 00:44:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:37 GMT" + }, + { + "content-length": "856" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 30 Oct 2012 02:32:26 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630557957" + }, + { + "expires": "Wed, 27 Oct 2032 16:03:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:36 GMT" + }, + { + "content-length": "74964" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3564" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 21 Oct 2012 19:37:21 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 12 Sep 2012 12:02:28 GMT" + }, + { + "age": "1099637" + }, + { + "x-amz-cf-id": "UnPWM9TK0CYPiYCFO7JpmgG2mEPdetqHfd_sfHtz7tBC7MdT1QthvQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4267" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 04:55:12 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 12 Oct 2012 19:55:09 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "374966" + }, + { + "x-amz-cf-id": "cjoJQzghJEJQidTuBdcGV7vefvG_4fs26RZ_XZHGp3J47Hsqk_mYqA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:23:58 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630506503" + }, + { + "expires": "Wed, 27 Oct 2032 01:46:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:37 GMT" + }, + { + "content-length": "115718" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1104" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 19:46:04 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 02 Jun 2010 22:12:17 GMT" + }, + { + "age": "1271916" + }, + { + "x-amz-cf-id": "CWh3NmGhidrPUirYTJeaMy1q9wfohhNrJcJHsnvLdnXf-hfmvNt_Eg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "6577" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 17:59:58 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 23 Oct 2012 17:58:26 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2532" + }, + { + "x-amz-cf-id": "h2X5ptCOi7LbCmEDN_-FkzuUX3O9fZGO3nRZaYiuaVmjsZJVea0KlA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "469" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 21 May 2012 18:57:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 17 May 2012 16:40:47 GMT" + }, + { + "age": "76922" + }, + { + "x-amz-cf-id": "cTNh37gW3aRYzh0_ymNAgRrpHgiKNyjCHWwWepii3kfSm2mifkCOuQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1628" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 17 May 2012 00:31:56 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 15 May 2012 05:09:34 GMT" + }, + { + "age": "35944" + }, + { + "x-amz-cf-id": "Lg2DdGTzo_5b8Nxk_htSqW7FB2nLWjG6cKbaOt8zmZY66pVw8K4fCA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "356" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 16 May 2012 19:42:46 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 15 May 2012 05:09:34 GMT" + }, + { + "age": "3065596" + }, + { + "x-amz-cf-id": "1OH_QkiX-oKt7sV0toMi-aqqotKtLvRU2cjdTLewhf5rcVlqqk1ODg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Miss from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:40 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0D7SZ3NDXXQ10K0Y1P2W" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "Yhw+pyNdxXVfOz+enqEPz5i4xubYpPznUk/Z7jiBcq/rnwK5Kwv0df5Ff+b2ROcL" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "application/json" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Tue, 21 Sep 2010 17:37:41 GMT" + }, + { + "etag": "\"4486-7c5a6340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "2590" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "x-amzn-requestid": "070e59c2-25b7-11e2-9647-1185f0fe0569" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:40 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0D7SZ3NDXXQ10K0Y1P2W" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "Yhw+pyNdxXVfOz+enqEPz5i4xubYpPznUk/Z7jiBcq/rnwK5Kwv0df5Ff+b2ROcL" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "application/json" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Tue, 21 Sep 2010 17:37:41 GMT" + }, + { + "etag": "\"4486-7c5a6340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "2590" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "x-amzn-requestid": "0727fc26-25b7-11e2-bb20-cf84a5272b25" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4885" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 07:00:03 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 07 Aug 2012 04:35:28 GMT" + }, + { + "age": "21877" + }, + { + "x-amz-cf-id": "IporfETtFCxA5v41bAp-pDjDCP4cWlKwkoaOGvvvrxS1Mw1yvUBlGQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1543" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 11 Sep 2012 13:00:00 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 02 Jul 2010 18:12:37 GMT" + }, + { + "age": "4579480" + }, + { + "x-amz-cf-id": "-6t8SJvNBh6dZt3rUiRrjIVqnnVJiFbFC-QSFxcqJYuBXrzKAWWdoQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "592" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 20:03:59 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:37:57 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1011641" + }, + { + "x-amz-cf-id": "8vWzDFif0eREdPSdflEYZlgYAymCWdiDYl8Kv7KC_Fl0ALuKJG_4ag==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1646" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 16 Feb 2012 06:11:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 13 Oct 2010 20:47:21 GMT" + }, + { + "age": "22575162" + }, + { + "x-amz-cf-id": "3RdIhQfLO9XOQFa49YXot07-NIDImEld2xoGH4X9880KTfwAGihvfQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:37:51 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 22:37:51 GMT" + }, + { + "content-type": "application/ocsp-response" + }, + { + "content-transfer-encoding": "binary" + }, + { + "content-length": "1596" + }, + { + "cache-control": "max-age=379990, public, no-transform, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:04:41 GMT" + }, + { + "nncoection": "close" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Wed, 31 Oct 2012 20:27:41 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 20:27:41 GMT" + }, + { + "content-type": "application/ocsp-response" + }, + { + "content-transfer-encoding": "binary" + }, + { + "content-length": "1596" + }, + { + "cache-control": "max-age=372180, public, no-transform, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:04:41 GMT" + }, + { + "nncoection": "close" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0ZHTZBAADKEZ1K4EGBW6" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "yJRRI8wh/xPuc4C3nBZz5KNXS1OE9OJu63P/XksiIWL9W09cknSsgC8WWr29GiDY" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Tue, 21 Sep 2010 17:37:41 GMT" + }, + { + "etag": "\"4486-7c5a6340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "2590" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "x-amzn-requestid": "0727fc26-25b7-11e2-bb20-cf84a5272b25" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1ZH0W43SZ47AMV593QDH" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "wGMRjKh1Pt/o44qHjshIvp7ZIPt2LK8Cze7/o3+/lfgxPUcgTEKCAZBzlDIoLoet" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "452" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "480" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Wed, 31 Oct 2012 18:39:58 GMT" + }, + { + "date": "Fri, 02 Nov 2012 22:20:44 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 22:20:44 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "43420" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "53038" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1543" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 12 Aug 2011 13:43:43 GMT" + }, + { + "age": "20402" + }, + { + "x-amz-cf-id": "6gJoa6bOvFtigUntTCjVHju-EqLbWnHKw6eJPDdiGK6ocghu7-S_cg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 24 May 2012 09:43:11 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=621326683" + }, + { + "expires": "Mon, 12 Jul 2032 19:49:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:42 GMT" + }, + { + "content-length": "4823" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:47 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0DHCSP7QGSTG72H1QPRB" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "iwlAGigQepIxbg6chfZtqXoGGw6vBTgxU/ol+ayO5+ttKg7WcjWBSrPG+7aY5Eey" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:48 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "06NWT8YAYSXDSXHFEBX3" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "+dgTelR5Pvj5ApOpupZ5c4EXyGBnWsp/CtTohBqWXrKuiSIBT+ZSU/92HDHIoBxS" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2393" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 30 Sep 2012 01:55:28 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 15 Dec 2009 04:00:19 GMT" + }, + { + "age": "2977760" + }, + { + "x-amz-cf-id": "iMEciUEJFtmANuUhvSWuNQKwQ56xFPVzicWdjaUIS7KD_SS41vr3pQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "599" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 14:12:09 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:32:16 GMT" + }, + { + "age": "3106359" + }, + { + "x-amz-cf-id": "tN10_L-OYWE-jbnsbpustU_nkePz1Ht2dF12FZfdzo8SDh6xAzABhw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3457" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 16:44:30 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 06 Aug 2012 02:14:57 GMT" + }, + { + "age": "332418" + }, + { + "x-amz-cf-id": "nAZvrqCa80oBwwxAEUWbmmOUITdcLIDdCpFL12zOCAKgSf4n0wfGcQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3174" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 08 Mar 2012 01:24:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 15 Oct 2010 14:25:35 GMT" + }, + { + "age": "20777998" + }, + { + "x-amz-cf-id": "o4ZBTBwVKGrCOxAmevzGBdf3GXvw24E_Ibo53uEwUJbXc2EdAiOMyQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "601" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 30 Sep 2012 13:45:07 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:33:44 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2935181" + }, + { + "x-amz-cf-id": "_ELm77X7wvQxQ8ccnoUS-_woGWJlpaS6DF6N2WkCaQSwNycPUCFD4A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3446" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 05 Jan 2012 14:17:10 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Thu, 10 Feb 2011 01:27:46 GMT" + }, + { + "age": "26174858" + }, + { + "x-amz-cf-id": "-Kkrw4riucQdic2OO_FiGGTwkrKyhvjx0Mcpi0Tz7UmWTD6LAmwHeg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3793" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 26 Oct 2012 19:06:32 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 07 Aug 2012 03:08:01 GMT" + }, + { + "age": "669496" + }, + { + "x-amz-cf-id": "X6dyQ-kDIuminUqGxtG-vyD7eZ70sWXg-ltBtWE0KkdI8OEM-Mpleg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "609" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 25 Sep 2012 16:01:58 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 15:54:14 GMT" + }, + { + "age": "3358970" + }, + { + "x-amz-cf-id": "b_pAd8eX4r8HYc3jV3dhKukKkfwIrYz-zWqHjipfMmhJSE_781h1oQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3653" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 01 Feb 2012 02:46:14 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "23883514" + }, + { + "x-amz-cf-id": "bjtvmLGP6K92dIdVA6duj28yhxkrL38nJMkNCptOUGcR-vblR3Dgog==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3268" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 16:12:38 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:47 GMT" + }, + { + "age": "939130" + }, + { + "x-amz-cf-id": "NjXCi6TD-dhpmdMViBrtzqn_DEt71fFljKydDm_2OCDAPJEMAg5xnA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2974" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 30 Oct 2012 09:47:16 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 03 Apr 2012 10:20:17 GMT" + }, + { + "age": "357452" + }, + { + "x-amz-cf-id": "Z_49skoUilBV6g2nhKUJZO1CTvzkPUHD_SDUxrSh1etd8GS3FknVlQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3246" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 26 Oct 2012 04:05:23 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Tue, 02 Feb 2010 23:26:50 GMT" + }, + { + "age": "723565" + }, + { + "x-amz-cf-id": "0SbSlmo1oQR1EZaPujBcrkn2rp6-JwnKeWPjRJuZmV1Z6bYwy17-7Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3677" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 23:48:37 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:14:18 GMT" + }, + { + "age": "998171" + }, + { + "x-amz-cf-id": "kIXZdAY5Fnpheu46XC3kSBlJD9BzYrmLWTcGFXMEBT4VLXyNpe1SPw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2600" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 14 Dec 2011 20:22:55 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 28 Sep 2011 08:02:37 GMT" + }, + { + "age": "28053713" + }, + { + "x-amz-cf-id": "jdbN9e43yR0jKrrOZUnGZIUGi2GCJHSK3n2VKaDm3XT7Xy-Rj8OqNQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1489" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 18 Jul 2012 14:38:05 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 04 Jun 2010 01:32:52 GMT" + }, + { + "age": "9325603" + }, + { + "x-amz-cf-id": "X3VwQpWnMPHQC7MJRw6T-DaBIBalsbD0mGV4Ng9yHU5gBejjAez0dA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:48 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1C1W41NW5TYBHBJNXB7G" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "AatuyevJiRUtb6/2d9LbJJ3EZwL4Qi5oAN43fcnZTs+cBfpfR5xhWX4o6c4AFjko" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:48 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "101M70TJ0XKDRA31P9ZW" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "8Q84WjUy4qxnCmekXyK0cOh2MgfmCnF2jlIdsknvZNKQIyUhsXloJp0QYIhPIFFw" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:49 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0R7WZ6VQ04KDQ1RKBSDK" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "iCw5Tdn11Ug6Qn1eOt4uOA+JEPcRxl56zUcXJAWRQ7+nE2ZJ4m5XU7DWbrWSX6Jj" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4760" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 09:19:33 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 27 Jul 2012 14:32:32 GMT" + }, + { + "age": "1309517" + }, + { + "x-amz-cf-id": "wn_k8I4g86z9xU39JO_mi8Znx5qLGm-YEKtqp9bzQUcLva6y9aPWWg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3348" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 14 Sep 2012 14:36:02 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 20 Jul 2012 14:38:01 GMT" + }, + { + "age": "4314528" + }, + { + "x-amz-cf-id": "FEA_NXcSb4YgiTvDGcoQ8YzVOim-T7ZoGwBNe_-tBm3HybITjhj1bw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "587" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 15:34:28 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 15:54:16 GMT" + }, + { + "age": "1200622" + }, + { + "x-amz-cf-id": "vmJhsk3IfjzGGQAAi64eB8PuL0vI87SwHahTEYuBFlmrsmi_dxZ-IA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5691" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 09 Oct 2012 04:35:25 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Thu, 13 Sep 2012 17:48:15 GMT" + }, + { + "age": "2190565" + }, + { + "x-amz-cf-id": "UiucrnKNxdras37pId8z-tCHGNPWFMZJXLOIxPAsl_08EFRty9FxZA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4764" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 16 Oct 2012 16:34:25 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 04 Oct 2012 02:17:34 GMT" + }, + { + "age": "1542625" + }, + { + "x-amz-cf-id": "quvhesbVUpq0D4qHZPiMZU_LBC4xAEbnNL5tNfJoazAENn82wpjOFA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "588" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 12:35:39 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:41:22 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3112151" + }, + { + "x-amz-cf-id": "RNt3gJPkHWBNRTsYRS0r-qEJUzHeKw0wd8LRUaKmPjRoB_txmvKk0g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3687" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 25 Jul 2012 15:43:46 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 13 Jul 2012 14:50:09 GMT" + }, + { + "age": "8716864" + }, + { + "x-amz-cf-id": "P_VlWy_DI7Q9lOv31mLocJxGBGCO3x_Flg_jDhAwOvSOlHxhfkj4hA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5547" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 21 Mar 2012 20:01:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 21 Mar 2012 14:44:09 GMT" + }, + { + "age": "19587818" + }, + { + "x-amz-cf-id": "gVRXsClGSK87EC1y6EX-0j9CO-BL95NF-urXdrKWurV1eDIRau04Cw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4020" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 09:18:15 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 13 Oct 2012 21:42:50 GMT" + }, + { + "age": "1309595" + }, + { + "x-amz-cf-id": "mvpI8qWvGHh__TojWYI7VYmcaawpJ27bnnPJ08ozq7UlLXJiYycA4g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4769" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 08 Oct 2012 21:18:35 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 31 Jul 2012 08:49:37 GMT" + }, + { + "age": "2216775" + }, + { + "x-amz-cf-id": "d8GIZ1IcSWZMBXJ8HsZ_vts4ysREuGFsNrOBA_iB5au7tUOZqueqQQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1759" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 01:27:26 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 12 Jan 2009 18:19:36 GMT" + }, + { + "age": "3238644" + }, + { + "x-amz-cf-id": "bTf74h2ZtQt_I09t6RmrbYg-97o_HtttusNHsh-MGb8gUA51AY7Twg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "17741" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 12 Oct 2012 14:19:15 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Wed, 19 May 2010 09:51:41 GMT" + }, + { + "age": "1896338" + }, + { + "x-amz-cf-id": "UYx91fWWjcOHKIO2wY26UNYf5EQYYW4g5IWOLayy-_r3LBCjQQsV6w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 26 Mar 2012 20:19:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630656332" + }, + { + "expires": "Thu, 28 Oct 2032 19:23:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:53 GMT" + }, + { + "content-length": "2126" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Tue, 17 Jul 2012 05:47:45 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=627946664" + }, + { + "expires": "Mon, 27 Sep 2032 10:42:37 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:53 GMT" + }, + { + "content-length": "1518" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 04 Nov 2009 06:54:44 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613395773" + }, + { + "expires": "Mon, 12 Apr 2032 00:47:46 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:53 GMT" + }, + { + "content-length": "2288" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 21 Sep 2012 07:31:02 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=626993061" + }, + { + "expires": "Thu, 16 Sep 2032 09:49:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:53 GMT" + }, + { + "content-length": "2752" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 29 Oct 2012 04:13:23 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630408896" + }, + { + "expires": "Mon, 25 Oct 2032 22:39:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:53 GMT" + }, + { + "content-length": "18249" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "796" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 12 Oct 2012 10:45:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Wed, 19 May 2010 09:51:41 GMT" + }, + { + "age": "1909174" + }, + { + "x-amz-cf-id": "9MHc1JZ7kR7Xm1k_06GjXXBjMfsbYsbpxH549UlaToDw3PtOlOpJng==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:52 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "05Y7M552RGFYHV8MY341" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "oGWKRn1W+jjcnVaAmsQPuDLm0eqlACpITrO3bAh2oWT2VrepfzlHFl5s2S6e8ah5" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "pragma": "no-cache" + }, + { + "x-sap-pg": "photo_display_on_website" + }, + { + "cache-control": "no-cache" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "expires": "-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2358" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 21 Nov 2011 14:41:51 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "30061382" + }, + { + "x-amz-cf-id": "rRtoTrePiEQnYeC12h_GTXYCVfIghwtr3bSzq5YQmQ2ZGyWgspVhvQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2343" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 28 Nov 2011 00:30:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 06 Apr 2010 23:10:58 GMT" + }, + { + "age": "29507652" + }, + { + "x-amz-cf-id": "47jA2MZ4Sw4DCikN2VyaaWmwTHmqX3rU2MwTeNh7e1Jz_UoUPpYraQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3059" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 05 Jan 2012 13:26:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 10 Feb 2011 01:27:46 GMT" + }, + { + "age": "26177906" + }, + { + "x-amz-cf-id": "WYavyIQcFAiZj--Zhj4aZuRfOIHvmeL3UfzvuuRJG_cspyZyEBTZvw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1090" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 06:05:00 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 06 Apr 2010 23:10:58 GMT" + }, + { + "age": "25193" + }, + { + "x-amz-cf-id": "8VDa9TCRS7VKfaAxdyPoMxc3nU5HHd7-ochC_jBjm5Htnl-jkMkuTA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "730" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 25 Jul 2012 12:42:51 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 31 Jan 2011 08:00:09 GMT" + }, + { + "age": "8727722" + }, + { + "x-amz-cf-id": "QrXHFzwiaMq4tNw6xz1x_Fy8OExfQwsb9eYgNg9x5of9ynYhiimfqg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1271" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 05 Jan 2012 19:58:22 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:47 GMT" + }, + { + "age": "26154391" + }, + { + "x-amz-cf-id": "zfueMiQqfM6t_I7CSioRWzJ6Ja4aCnQfweQZmxivqYZ8HJfnkGedAQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1333" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 08 Feb 2012 22:12:29 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 10 Feb 2011 01:27:46 GMT" + }, + { + "age": "23208744" + }, + { + "x-amz-cf-id": "ELEGmBCM3aCsE_CitSFuw5Z_9oO1nINZ1Td8UGwaW5JQqOgNgrbAgw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1361" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 07 Mar 2012 21:41:49 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Fri, 07 Oct 2011 06:20:36 GMT" + }, + { + "age": "20791384" + }, + { + "x-amz-cf-id": "pOqim5pkNLfn0oKxi7ICFEmFFenUh0PbL_R9Lb9h6TpuGt0tRp4z8Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3006" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 13 Oct 2011 00:59:11 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 02 Feb 2010 23:33:20 GMT" + }, + { + "age": "33480342" + }, + { + "x-amz-cf-id": "G9CB0PE2to9TXhCktQwgI5sW6rlvjeiIaljq43R1hfimZv_emDTQ5Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3051" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 22 Nov 2011 21:04:40 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:47 GMT" + }, + { + "age": "29952013" + }, + { + "x-amz-cf-id": "8B2pTWiByqir35Y8C9JwI9kCzXLE0qdWzMliO7vI6X4z0IPFb7OJSw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3784" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 24 Jan 2012 22:05:08 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 21 May 2010 10:34:44 GMT" + }, + { + "age": "24505185" + }, + { + "x-amz-cf-id": "iiwiqgcVCWG_cRsMapSsC7zbtuul0T9eNy4NjAklVsbJhZbhbNP0Hw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2439" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 20 Nov 2011 13:48:40 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 28 Sep 2011 08:02:37 GMT" + }, + { + "age": "30150973" + }, + { + "x-amz-cf-id": "N3_BBMhFY33Y_cabN1aZofeaRTYY2qxgxIlyDqqnyzTHoBb-HQQ4kA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3087" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 10:10:03 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 25 Jul 2011 21:08:27 GMT" + }, + { + "age": "1047291" + }, + { + "x-amz-cf-id": "pUS_TqP5ZtROVGDGuR-eDXw0ijzMiGzziwONZiQwoWOmwMrlTnRUiQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3377" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 12:55:04 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 05 Jun 2009 14:46:00 GMT" + }, + { + "age": "1037390" + }, + { + "x-amz-cf-id": "U8QzlM0myAnVtennCypCEE35AVBn9P7vU8rfVC-qdIV19u_F-61loA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 28 Sep 2012 12:16:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:15:32 GMT" + }, + { + "age": "3113322" + }, + { + "x-amz-cf-id": "yRMGD1lIFrzR7iBctL75xllVcgCY4oq5vxpU8vyBYtYIhDG4wgfhhw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2639" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 11 Jan 2011 12:36:42 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 21 Dec 2010 20:23:19 GMT" + }, + { + "age": "57198492" + }, + { + "x-amz-cf-id": "KUP-5JnHht-4Vm9AI5uL23vWqItT_PCAoTXYhS67UcTYyHi9H4qomw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "53" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 29 Sep 2012 16:43:06 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 23:12:42 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3010908" + }, + { + "x-amz-cf-id": "9nFbAiM9DpxC3cnA__WbfWVECGjZkkgmC6B1r2D6H_pZUeOJpmckKw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1266" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 13 Dec 2011 01:03:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 12 Dec 2011 22:30:22 GMT" + }, + { + "age": "28209671" + }, + { + "x-amz-cf-id": "4XS4NQ5jtAPsXr8uz5LSIhit3YaYLOacfgxTqaJdmgGUSVeVX3L52w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "549" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 17 Sep 2012 06:10:41 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 04:41:18 GMT" + }, + { + "age": "4085653" + }, + { + "x-amz-cf-id": "8cM2EbSq2xMoZmAuqaRNnHUXo5fFEkwP993iO66WXR8cQhYdXav_-A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2309" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 00:31:48 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 18 Sep 2012 23:01:43 GMT" + }, + { + "age": "1081986" + }, + { + "x-amz-cf-id": "I_rWsREl-5AOAKtcn3LicFnMAMonpKIxSr1BGia7JpyGrtD-VJlFAw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4689" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 10 Oct 2012 00:37:12 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 15 Jul 2011 19:43:59 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2118462" + }, + { + "x-amz-cf-id": "zJr0j4xcaVnqbt7keScwtlVcaVTMpKQyOnG62dfi3bC2Yn7ZUU8hmQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "304" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 24 Aug 2012 23:48:39 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 18 Jul 2008 22:54:46 GMT" + }, + { + "age": "6095775" + }, + { + "x-amz-cf-id": "PKmkuepDkCjjY62A77yQuYuUte5c2Ty-_6DlKmAvhcwzRsHyn5nIrQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "3183" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 03:20:41 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:20:32 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3231853" + }, + { + "x-amz-cf-id": "OwAw73zfegmW_QHY-kswWa1c-b8oV4xZ-5eevFXbZxfqoKPE6umE4Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "859" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 15:34:26 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Tue, 22 May 2012 07:35:03 GMT" + }, + { + "age": "163828" + }, + { + "x-amz-cf-id": "lfeQCmQ-LTseaf2mLmw-Ec-MgECRsFNyDab6oODONovNp3KBwaWuNQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "904" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 15:34:26 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 21 Apr 2011 09:50:08 GMT" + }, + { + "age": "163828" + }, + { + "x-amz-cf-id": "fx4kuYG47HcKaHNWoFHoUpVuQ9sWagCnJ3Kox-WAsGeI9bLRuIFkZA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "988" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 15:34:26 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 11 Apr 2012 09:49:52 GMT" + }, + { + "age": "163828" + }, + { + "x-amz-cf-id": "pdz_b69t7pq2FxRxED3J9qfLWu_VlLnSgt3UkrYI2IsWgh0cxAcbRg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "7477" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 13:03:42 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:06:13 GMT" + }, + { + "age": "1296072" + }, + { + "x-amz-cf-id": "IpXkwhJGWUHRMnyRAQVIxqffI1_ZEyW-nzUYrSWrfr8R_Y1uuGRCCQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "702" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 14 Sep 2012 15:53:26 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 12 Oct 2011 01:31:30 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "4309888" + }, + { + "x-amz-cf-id": "HsG6bJczHwzkieHglmFzE2QCmzLxTaLPXXnAy-N55tzbuvrtZRCzCw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "7983" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 12:29:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 15 Jul 2011 19:44:12 GMT" + }, + { + "age": "1298127" + }, + { + "x-amz-cf-id": "sCXON_3fv6WubL7uLSJaIqpVlCgjIetJyv1h_hMdF4cY17dhW5AtuQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "21587" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 07:42:49 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 27 Sep 2012 18:42:30 GMT" + }, + { + "age": "1315325" + }, + { + "x-amz-cf-id": "T9aSuzcFAaMOSl0BfGK1RZtk2bHJRFveb6whI8ExXPmes7P1gEIr_g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "14808" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 14 Sep 2012 19:42:20 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sat, 02 Jun 2012 16:25:51 GMT" + }, + { + "age": "4296154" + }, + { + "x-amz-cf-id": "0V2zXn_NrH1y0_eQiJhavI_iThDjEBl3W8rbz6WK2bL14yhUFFMzMg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "929" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 15:34:26 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sun, 20 Jun 2010 09:46:10 GMT" + }, + { + "age": "163828" + }, + { + "x-amz-cf-id": "kSSVSJhWVu77d7bZr26ow7tGxAtxQIJKxzBSnMTb-BvsXBOXCVvmrQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "170" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "content-type": "text/html" + }, + { + "content-length": "246" + }, + { + "connection": "keep-alive" + }, + { + "x-amz-id-2": "A8pOeFTyzWm76hXU6FfLkQf4c9wZCOf1QF9R4TGkjXEInQJp6farkkg0WB0HfwcK" + }, + { + "x-amz-request-id": "4B032A9637D718D5" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "x-amz-meta-jets3t-original-file-date-iso8601": "2011-11-08T18:38:37.000Z" + }, + { + "x-amz-meta-md5-hash": "abb0183baa0ea995b47dcc0e9972095a" + }, + { + "cache-control": "max-age=864000" + }, + { + "last-modified": "Thu, 30 Aug 2012 18:02:23 GMT" + }, + { + "etag": "\"ac923fb65b36b7e6df1b85ed9a2eeb25\"" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "AmazonS3" + }, + { + "age": "157082" + }, + { + "x-amz-cf-id": "QZJcXJG7Ji8wu-0D789ZbWAnaHnVN-XBUkupFYbHTmHhHcHrJq7P9Q==" + }, + { + "via": "1.0 06b38b2ddcbb45c8e33db161a2316149.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "451" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 05 Oct 2012 15:21:37 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=628223582" + }, + { + "expires": "Thu, 30 Sep 2032 15:37:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "856" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 29 Oct 2012 04:12:21 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630383568" + }, + { + "expires": "Mon, 25 Oct 2032 15:37:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "6979" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 17 Oct 2012 16:08:26 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=629262241" + }, + { + "expires": "Tue, 12 Oct 2032 16:08:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "1860" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Mon, 18 May 2009 10:07:44 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=580533835" + }, + { + "expires": "Mon, 27 Sep 2032 10:42:37 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "810" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-lookup": "MISS from cdn-images.amazon.com:10080" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "516" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"http://tag.admeld.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR BUS DSP ALL COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/ecm3?id=bfd291d0-29a4-4e30-a3a2-90bfcce51d8f&ex=admeld.com" + }, + { + "content-length": "275" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "meld_sess=bfd291d0-29a4-4e30-a3a2-90bfcce51d8f;expires=Sun, 05 May 2013 03:59:31 GMT;path=/;domain=tag.admeld.com;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Thu, 27 Sep 2012 18:22:05 GMT" + }, + { + "date": "Fri, 02 Nov 2012 14:49:26 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:49:26 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "25380" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "80128" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR DSP COR\"" + }, + { + "location": "http://s.amazon-adsystem.com/iu3?d=amazon.com&a1=&a2=0101e39f75aa93465ee8202686e3f52bc2745bcaf2fc55ecfd1eae647167a83ecbb5&old_oo=0&n=1351947870865&dcc=t" + }, + { + "nncoection": "close" + }, + { + "set-cookie": "ad-privacy=0; Domain=.amazon-adsystem.com; Expires=Thu, 01-Jan-2037 00:00:01 GMT; Path=/" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "57" + }, + { + "content-type": "image/gif" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 28 Sep 2012 08:55:13 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=628633148" + }, + { + "expires": "Tue, 05 Oct 2032 09:24:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "16588" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 11 Apr 2012 19:05:24 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=617190640" + }, + { + "expires": "Tue, 25 May 2032 22:55:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "10742" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 25 May 2012 04:46:13 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=621621842" + }, + { + "expires": "Fri, 16 Jul 2032 05:48:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:55 GMT" + }, + { + "content-length": "3960" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 26 Oct 2012 09:03:20 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=630485970" + }, + { + "expires": "Tue, 26 Oct 2032 20:04:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:54 GMT" + }, + { + "content-length": "14019" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "16ZMB88V50KWWQXFQZNR" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "0PU9VNtv9/YHthxuwDwGQDz7kHY8GLhrhbQs/A0BbIf1y/GiCONyJttmltEgnDaZ" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "x-amzn-requestid": "10a7eef8-25b7-11e2-a2e0-8bdc8a85b675" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "53" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "16KH0V157G0TXXQVTR1Z" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "6Hy72ZQh4+twTqX90DijzRdHDpTv81nJLyxFZMBbjNHkb8qZfDO7y4+75uITFMjm" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2212" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 27 Sep 2012 04:09:18 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 03 Aug 2011 20:37:32 GMT" + }, + { + "age": "3228938" + }, + { + "x-amz-cf-id": "e_uegUCHnyG0CG1xWLrNCiBH1sC8uTUlb-e31fTCz2013GXiBQpv3g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1658" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 16 May 2012 17:46:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "14757493" + }, + { + "x-amz-cf-id": "rjUV7bECb3foXt-4i01sG21mlvMgo9nOu7EtcMeIYzyJSWWqNNlDOw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "16364" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 14 Dec 2011 03:17:38 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Fri, 04 Nov 2011 23:48:42 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "28115238" + }, + { + "x-amz-cf-id": "I6W0oRiMtuRDCDZetJr8DtOxr0nMh8QpK29mcgE2eMGEw69ogMaPdg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 13 Jul 2011 17:18:50 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=616029616" + }, + { + "expires": "Wed, 12 May 2032 12:25:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "content-length": "594" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0X3NVRPASEGRWVCHH1H3" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "+dgTelR5Pvj5ApOpupZ5c4EXyGBnWsp/CtTohBqWXrKuiSIBT+ZSU/92HDHIoBxS" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2902" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 27 Oct 2012 23:34:12 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 20 Jul 2012 15:59:40 GMT" + }, + { + "age": "567044" + }, + { + "x-amz-cf-id": "bYLWczW4h_oqRLXSyZdMo3kjSsqUZNWoGXrVLgvaIVqM8SXrlaPicA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3155" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 26 Jul 2012 09:16:33 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 19 Jul 2012 17:10:12 GMT" + }, + { + "age": "8653703" + }, + { + "x-amz-cf-id": "pxFBejzs4oRgmqxYc2s6mbS_QBknibmyPLQGd8Ejv-8cWl04HQGPtA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3536" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 27 May 2012 08:44:57 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 19 May 2011 14:46:28 GMT" + }, + { + "age": "13839599" + }, + { + "x-amz-cf-id": "vToxkdVmSZQS0V3iRZM-gCcaadczMLYZw_REFYGTBUn-HP5HfdAeDA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3143" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 06 Aug 2012 15:53:39 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 06 Aug 2012 03:38:02 GMT" + }, + { + "age": "7679477" + }, + { + "x-amz-cf-id": "752wgDaFeaq4IQjicHeqyUiLYIjEjsca-nvc2LB2o4jOXMT99M6E2g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3209" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 28 Feb 2012 22:53:21 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 21 Oct 2010 19:52:40 GMT" + }, + { + "age": "21478295" + }, + { + "x-amz-cf-id": "UDgO86Lg7vsbRr_HLz0bT_G-fu7CRAkkBmD_NFdclHEzx1CJpRhtKw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3210" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 27 Oct 2012 23:45:01 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Fri, 20 Jul 2012 15:59:43 GMT" + }, + { + "age": "566395" + }, + { + "x-amz-cf-id": "rEUppa210byJyTItTaRQ2r-jhwUwD4c2CKORz2AGJaLhjCZ_LQ2w9w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:56 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0ESJ91CM6R89TGWH3QJG" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "Mg+wYQrytsBDnHHKyZlGNrkR5GzVMXvkIuJkR86aYslzZP5CJX/EEO5A8c1v2Jk4" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "21282" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 01 Nov 2012 21:09:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 21:09:31 GMT" + }, + { + "age": "143714" + }, + { + "x-amz-cf-id": "jFqxNpOKI6HWPqTs3raLIRgnJcu3GReFRL3MjibUt9APw7R9CfzNqQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "439" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 19:18:25 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:16:17 GMT" + }, + { + "age": "1187193" + }, + { + "x-amz-cf-id": "5en8vtO00oTNRx5jsyJYxwuPMEVufg38JPIk7uytbZiFN77vUtBibg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:57 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1AB4PH2A91QH3YJJ2WCZ" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "V5wX099kS85XeVk46pZgvH7cjgKx1WawnTJkqYth5ykinf4em6ZqgNlZk9K/lPby" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "67" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 05:50:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:16:14 GMT" + }, + { + "age": "1062871" + }, + { + "x-amz-cf-id": "eIpkgqRGkyaTW4PSLscvrasxuDsM3f4NIrPYv6VI1sZt_IgixOKN_A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "861" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 07:26:29 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Sat, 24 Nov 2007 03:04:01 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "1316309" + }, + { + "x-amz-cf-id": "5MBwLvJE3E5vg0khYEnuWX6RGzCOtyfFmYYy2nuztIayL9O0paE0oA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 09:12:37 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 04 Jun 2010 01:44:17 GMT" + }, + { + "age": "964341" + }, + { + "x-amz-cf-id": "W5ENbtcrY4pVK3r7ND94JJHXcEjjBccP7Q77zOSiZQUgWtPBn75lHw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1598" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 15:51:07 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:16:29 GMT" + }, + { + "age": "1199631" + }, + { + "x-amz-cf-id": "nFYTABAConMh8T_fXHANG9_r3FjyUfnSBWjxeb2GqJKtgi_mNRIXMw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1657" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 25 Sep 2012 17:28:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:16:30 GMT" + }, + { + "age": "3353768" + }, + { + "x-amz-cf-id": "ssIfXXDbBp8rP_142eUVOboNUYX4Iood5RH_Qe9W7wP1xbkZp9MChw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3013" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 28 Nov 2011 22:24:05 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "29428853" + }, + { + "x-amz-cf-id": "vO0R09hZC6TnyhMNTV9jEegb2DgNmH-Z1KaQiyeSbsYm8eoBtHUnDw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "455" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "2522" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Apache" + }, + { + "dl_s": "a104" + }, + { + "x-host": "a104 D=1922" + }, + { + "p3p": "CP=\"ALL DSP COR PSAa PSDa OUR IND COM NAV INT LOC OTC\", policyref=\"http://ch.questionmarket.com/w3c/audit2007/p3p_DynamicLogic.xml\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "558" + }, + { + "keep-alive": "timeout=120, max=934" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html; charset=utf-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Apache" + }, + { + "dl_s": "a104" + }, + { + "x-host": "a103 D=213" + }, + { + "p3p": "CP=\"ALL DSP COR PSAa PSDa OUR IND COM NAV INT LOC OTC\", policyref=\"http://ch.questionmarket.com/w3c/audit2007/p3p_DynamicLogic.xml\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "78" + }, + { + "keep-alive": "timeout=120, max=941" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "cache-control": "post-check=0, pre-check=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "PL=_974702-1-83324420; expires=Sun, 03-Nov-2013 13:04:58 GMT; path=/; domain=.questionmarket.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Wed, 17 Oct 2012 17:29:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 05:34:15 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 05:34:15 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "27737" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "27043" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Apache" + }, + { + "dl_s": "a212" + }, + { + "x-host": "a212 D=715" + }, + { + "p3p": "CP=\"ALL DSP COR PSAa PSDa OUR IND COM NAV INT LOC OTC\", policyref=\"http://ch.questionmarket.com/w3c/audit2007/p3p_DynamicLogic.xml\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "43" + }, + { + "keep-alive": "timeout=120, max=973" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "cache-control": "post-check=0, pre-check=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "ES=974702-1d5qN-0; expires=Wed, 25-Dec-2013 05:04:58 GMT; path=/; domain=.questionmarket.com;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "x-amzn-requestid": "123b3889-25b7-11e2-8af6-a1b44f97a3ae" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "53" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1ZP9F4EGXPG1W1PYCNJK" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "AsL0eWMF3+3wScCyR0bGR31dSLss9n05o3uERrVw6pReE9DgHJ1jKFUl9eThTjRS" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "168BW4BHQH0ZXM7FXMPB" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "cEL12N93+m4WoEqFtPIfCFUi+syrhK4ihYi/vQREHqBRscgh343Rj/z+yvBSU/1C" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:04:58 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1PF1RSF1KPZFT8AG8QH3" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "BMEF9l9idgW7J6L5kAVCmgL1L1VX3ONDIY4c/R7+/waDULftLKfFOhjdf5bX9Jgw" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "76" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 25 Sep 2012 13:31:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 15:53:50 GMT" + }, + { + "age": "3367996" + }, + { + "x-amz-cf-id": "ecrxOwZyLIYoOI7n1HZdjAnEynOb8rnSjf9oMBvu9l-mcg-DvsQ5tA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2953" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 14 Oct 2012 20:13:59 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Fri, 18 Mar 2011 23:50:26 GMT" + }, + { + "age": "1702260" + }, + { + "x-amz-cf-id": "RRnk1cdyHejHw9mprrW3eHhVJDtMgC2-2Z_Ozk1TtfyHQbMGDRM1gQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2908" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 00:29:01 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:47 GMT" + }, + { + "age": "45358" + }, + { + "x-amz-cf-id": "dVVqpxaUvghScp5L3V8knNH7yD0rPX4f2QIUqHQG7hWgDw29J2DGyQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2684" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 29 Oct 2012 09:50:03 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 02 Feb 2010 23:26:50 GMT" + }, + { + "age": "443696" + }, + { + "x-amz-cf-id": "PlD1_xjVuo-YCz7_Za4wyP6LFVnojIw0t9xjXHByHBqF2ZeqI4b_qg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "879" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 08 Jul 2012 02:35:34 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:48 GMT" + }, + { + "age": "10232965" + }, + { + "x-amz-cf-id": "NFgWbhPAIPS6Aa_OA1MZi4RJV38Eh2JztiuONINXzMa0bG62le6jyA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "829" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 15:46:34 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:49 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "29366305" + }, + { + "x-amz-cf-id": "09OGcA01CtEV2DWxFMbKMdNmD6Wr6zUzXg6LlkVtCG84Y07dTLSY0Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "874" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 17:41:46 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:48 GMT" + }, + { + "age": "1192993" + }, + { + "x-amz-cf-id": "rwvtxrU_8yM4vEsn3LxI68PMeCTNAaI2pID_hvPOaXhJAUXpLcUqOQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "839" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 28 Jul 2012 16:53:55 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:48 GMT" + }, + { + "age": "8453464" + }, + { + "x-amz-cf-id": "jK_V3T8gBhnVX6aGpizNe84I03zSajHOTGC01MnF2N-ZKUFTuuznfg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "873" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 02 Oct 2012 10:07:50 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:48 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2775429" + }, + { + "x-amz-cf-id": "zP8uDh7oW4qGktFpCJQlKyzDvuaUlw8SfQPZeV2OLAF_FolwTs7PYA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "839" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 04 Oct 2012 03:38:14 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:48 GMT" + }, + { + "age": "2626005" + }, + { + "x-amz-cf-id": "zCUT7P4ddAsA_5EOdXS-ecWSi3Caf1GD9wdw37lzeKfQj2j9AmHUiQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "829" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 18 Feb 2012 00:35:57 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:46 GMT" + }, + { + "age": "22422542" + }, + { + "x-amz-cf-id": "QKTCegDFqVr3XC8HIuieCb-HlLFpsf1vJJyDKhTn9DFbJiLWVXQjLQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "874" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sun, 29 Jul 2012 00:33:38 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:47 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "8425881" + }, + { + "x-amz-cf-id": "FQmsZuwjmRdgwUM5HxTx27tY2H27QOrbg1DJdNz_RrAOa991o5Lvyw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:05:01 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "1KF6CJF0ZA3T90MCGE8X" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "EhBekXVsIWcz6GtFV9/VWJHMzQoVZUur+CK0EG1dAElJjqTWpGnJuKNs84/dLZ0q" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "394" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 23 Oct 2012 16:46:08 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:46:54 GMT" + }, + { + "age": "937134" + }, + { + "x-amz-cf-id": "L9oihLkhCsGUlU-3jqFLwWX3TyuBQLcp_cHchbBiCmtUA736X8Kphg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "627" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 11 Oct 2012 14:33:21 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:15:44 GMT" + }, + { + "age": "1981901" + }, + { + "x-amz-cf-id": "7ml4lF66qQTzIXFECW3ocZ5nG9vHHfuYDmXpdeBjLVSaQQolCys92A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "621" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 10 Oct 2012 11:21:25 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:15:46 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "2079817" + }, + { + "x-amz-cf-id": "CoLcmSXF2suFL6QBnOjjLxEUhf72VKlrplyC4RYJlfNREf6-Xi0pXw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2358" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 01:52:38 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "29416344" + }, + { + "x-amz-cf-id": "dRi8YsVC5rJM48lwap3Mh06QHVr9w6Oq0Pfg31QRRKiDl1QSIT3zdg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1594" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 10:14:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:15:59 GMT" + }, + { + "age": "1219843" + }, + { + "x-amz-cf-id": "1biuu9U97pslYVYAmMFhrwSwOBYVwXiLgwm1MRKI7_h7l2zmYZZEaQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 26 Sep 2012 22:18:37 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 25 Sep 2012 20:26:21 GMT" + }, + { + "age": "3249985" + }, + { + "x-amz-cf-id": "fX317kpOFNd5ZTVD5dUMrmSEeYRzqm4WpyDuKNG28yJ4O9eAvvazUw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1061" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 19 Oct 2012 11:04:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:18:05 GMT" + }, + { + "age": "1303243" + }, + { + "x-amz-cf-id": "mAtXqkAkC4DjophBzYEW5S6QprX5KyDZpPzyK9EozCLiukdFrBze5A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "850" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 19 Nov 2011 02:02:32 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:12:52 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "30279750" + }, + { + "x-amz-cf-id": "V9zouqOby7zTdw8N1UFD-7MjNT6Is1zC6qGyOi0cvSwTqMJZ1Qkygw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2561" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 01:47:15 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "1077467" + }, + { + "x-amz-cf-id": "S275mzRyfiEZwFTcPfyW0eoYH91UX_599Ev_ECgM6b_xOLfjspcbHg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "564" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 11:54:46 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 04 Jun 2010 01:27:32 GMT" + }, + { + "age": "29380216" + }, + { + "x-amz-cf-id": "R7S8on0vdk1HXxrim-2c2Zh8aNdO6mf4C0WS3tKHegaM2jWsiM5epQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1698" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 12:21:20 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:03:45 GMT" + }, + { + "age": "29378622" + }, + { + "x-amz-cf-id": "YvMqD5UqqFKzy1f2mFcHqX7aM_4HxOmRkYus-RhWfCdy_pqhPAEz_g==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "558" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 11:34:34 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Fri, 04 Jun 2010 01:27:17 GMT" + }, + { + "age": "1215028" + }, + { + "x-amz-cf-id": "cVa44QM2u8IAuUF9QEfpfnoTg8a0J18iQn7wd2DQr-jo-fY8BpiHkQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2268" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 28 Jul 2012 02:30:22 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:00:18 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "8505280" + }, + { + "x-amz-cf-id": "22Ju-KfgdJeRvZSlX5DsdLObbhPEZeBSd4Gc72ZIaWMiVqmbMkB3Bg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "161" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 25 Sep 2012 20:28:46 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:15:25 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "3342976" + }, + { + "x-amz-cf-id": "qmBPDk2JKVaJRpv7A4mhguHOgSAQ224UfofPNOhYc7AXsZ28LFXM-Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1567" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 29 Sep 2012 12:18:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:14:03 GMT" + }, + { + "age": "3026779" + }, + { + "x-amz-cf-id": "9apayreRLqLNv5SP9KNS5EuSvY5sPVDHoDgblKHgUdkUCoUDFfPCbw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2075" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 08 Feb 2012 03:25:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:19:09 GMT" + }, + { + "age": "23276352" + }, + { + "x-amz-cf-id": "x7eg4fYYkTWpaWFE4nN7BtaqRyiZfNva-voci7p3Xzbfipq19svpKQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1703" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 29 Nov 2011 09:32:04 GMT" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:14:39 GMT" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "age": "29388778" + }, + { + "x-amz-cf-id": "Sud7TM_0UEovovJxWwSbgeoYTXcAYAv14GhdR63hJZOjeBUYsvtKqQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"01-XuHrwcHL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2601" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 25 Jul 2012 12:53:34 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:17:36 GMT" + }, + { + "age": "8727088" + }, + { + "x-amz-cf-id": "mAk0OO6evBoCPjFxnJqirH_8vom2gwHEBysCZcqQfQejl1rp3OGD1Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1581" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 22 Oct 2012 11:57:50 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:13:01 GMT" + }, + { + "age": "1040832" + }, + { + "x-amz-cf-id": "Dib_HmcmgtWNGzNtGv3F6ZAXixIagykEiamEBmt2obULi0G_yrbohw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "cneonction": "close" + }, + { + "etag": "\"01+KP3cIDVL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "44" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 20 Oct 2012 02:45:35 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 16:13:49 GMT" + }, + { + "age": "1246767" + }, + { + "x-amz-cf-id": "wjm3efkQaATVWVoZIxXYwJ9h7_UJVQWBeywk_XevnjWO-aG5dXU1uw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Thu, 12 Mar 2009 22:20:15 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613385389" + }, + { + "expires": "Sun, 11 Apr 2032 21:54:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:05:02 GMT" + }, + { + "content-length": "1167" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"11Z3ZviGhqL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:05:02 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0N0ET7DXR0Z0S958XDT2" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "rVbwKM7uj9c8KPLYmRAVt4kYRdMGzqE9h6Tyc+UcXD6y0h6n5t1Qps2dG4l0erjn" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1419" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 21 Nov 2011 14:19:01 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:29 GMT" + }, + { + "age": "30062762" + }, + { + "x-amz-cf-id": "V720Rh4VXwLpavgc0gzogCAvcfu8eju-6aTUgkZ0KVqt2Dmee6LRbA==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3603" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 06:00:11 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Tue, 06 Apr 2010 23:10:58 GMT" + }, + { + "age": "25492" + }, + { + "x-amz-cf-id": "fQb0nipMtXJuYbIZySKBDRsrklJuv7qAkK8XsAxNdlaxuu3_Nb882A==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "610" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 10 Oct 2012 05:09:08 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 01:30:08 GMT" + }, + { + "age": "2102155" + }, + { + "x-amz-cf-id": "CaXyn6Of0tMpboI2JSReSog7OZegmXSk2HeG_0TZ-GXKneON61wt4Q==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"11+dlfeUrBL#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6063" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 28 Sep 2010 14:19:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Sun, 23 May 2010 07:31:32 GMT" + }, + { + "age": "66264320" + }, + { + "x-amz-cf-id": "Xi5psl_5u_FA8F_cxp1Bgg5JQqekzjzXubyxkq6OioH5vJa_xpl7bg==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3808" + }, + { + "connection": "keep-alive" + }, + { + "date": "Mon, 23 Jan 2012 20:55:29 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 28 Sep 2011 08:02:37 GMT" + }, + { + "age": "24595774" + }, + { + "x-amz-cf-id": "YCExo8QCW6i8b43rK1WKdbqGi4BBr67tDQvHKeByUOjFZWkYcGmSVw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4743" + }, + { + "connection": "keep-alive" + }, + { + "date": "Thu, 16 Feb 2012 18:43:39 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 21 Nov 2011 14:13:47 GMT" + }, + { + "age": "22530084" + }, + { + "x-amz-cf-id": "f-ZNWJJlfQWW0yKzQd7uCRUJaMBxf_uM7iH1fbKBNdQQggwy-fMhMQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5433" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 10 Apr 2012 03:22:11 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Wed, 15 Feb 2012 16:43:09 GMT" + }, + { + "age": "17919772" + }, + { + "x-amz-cf-id": "d_if579P0cd1V3nzUXiXXtDTylQLMz1X-zUPk2ry79G_nUYX-N0rAQ==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4449" + }, + { + "connection": "keep-alive" + }, + { + "date": "Fri, 23 Mar 2012 00:45:43 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "etag": "\"41YZLkI+UsL_SL135_#1\"" + }, + { + "last-modified": "Fri, 09 Sep 2011 07:00:28 GMT" + }, + { + "age": "19484360" + }, + { + "x-amz-cf-id": "XHbZSMpsPMFYPGHelyqQvYo133-6UF8nzLJrfmuubfb8md_c3wKN8w==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4065" + }, + { + "connection": "keep-alive" + }, + { + "date": "Tue, 25 Sep 2012 13:07:27 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Thu, 04 Feb 2010 16:43:55 GMT" + }, + { + "age": "3369456" + }, + { + "x-amz-cf-id": "cqvYtZEgzgfwS7oAvqOkuzRizhSe9arLcRGaP5nnF2izwecHSwS-Cw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"31-ris0UMaL_SL500_SS100_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4778" + }, + { + "connection": "keep-alive" + }, + { + "date": "Wed, 14 Sep 2011 17:50:19 GMT" + }, + { + "server": "Server" + }, + { + "cache-control": "max-age=630720000,public" + }, + { + "expires": "Wed, 18 May 2033 03:33:20 GMT" + }, + { + "last-modified": "Mon, 24 Aug 2009 16:48:22 GMT" + }, + { + "age": "35925284" + }, + { + "x-amz-cf-id": "wXY9DDbUrHJoSYufMPmtErRRutYkp32cOy1b07_NcZFdUScDaLORpw==" + }, + { + "via": "1.0 e0361d2450a4995d92d661bf6b825ede.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + }, + { + "etag": "\"41+6XVdi5mL_SX36_SY36_CR,0,0,36,36_#1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Server" + }, + { + "last-modified": "Wed, 22 Sep 2010 23:59:48 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=613358641" + }, + { + "expires": "Sun, 11 Apr 2032 14:29:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:05:02 GMT" + }, + { + "content-length": "22760" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:05:03 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0M6TJE3FZYTXRNRY512Y" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "uk/tDjh11RBjIvdv0Gj9JUCG/M9iirulGzM8OhRvjW/qch4hPreEf7n4VnzczAr6" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:05:03 GMT" + }, + { + "server": "Server" + }, + { + "x-amz-id-1": "0DNVGFVH4CF96QBN4TM9" + }, + { + "p3p": "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" + }, + { + "x-amz-id-2": "vE+1ySfLV/mErY5cd7s2NdxUOOOUvbYCVUyYCdjxcxbN3eyQRj3PwWhhDk9+xh+Q" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "session-id=178-5926262-3769435; path=/; domain=.amazon.com; expires=Tue, 01-Jan-2036 08:00:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_22.json b/jetty-http2/http2-hpack/src/test/resources/data/story_22.json new file mode 100644 index 00000000000..a2d70313964 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_22.json @@ -0,0 +1,14947 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:30 GMT" + }, + { + "server": "Apache" + }, + { + "cache-control": "max-age=86400" + }, + { + "expires": "Sun, 04 Nov 2012 12:56:30 GMT" + }, + { + "last-modified": "Tue, 12 Jan 2010 13:48:00 GMT" + }, + { + "etag": "\"51-4b4c7d90\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "81" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:30 GMT" + }, + { + "server": "Apache" + }, + { + "cache-control": "max-age=86400" + }, + { + "expires": "Sun, 04 Nov 2012 12:56:30 GMT" + }, + { + "last-modified": "Mon, 24 Jan 2011 11:52:00 GMT" + }, + { + "etag": "\"13e-4d3d67e0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "318" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/plain" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:32 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-length": "4034" + }, + { + "content-type": "text/html;charset=gbk" + }, + { + "cache-control": "private" + }, + { + "expires": "Sat, 03 Nov 2012 12:56:32 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "set-cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1; expires=Sat, 03-Nov-42 12:56:32 GMT; path=/; domain=.baidu.com" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:32 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 20 Jan 2011 07:15:35 GMT" + }, + { + "etag": "\"65e-49a41e65933c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "1630" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:32 GMT" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:32 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 19 Apr 2012 09:51:20 GMT" + }, + { + "etag": "\"5b-4be051d263600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "91" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:32 GMT" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:33 GMT" + }, + { + "server": "Apache" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "set-cookie": "BAIDUID=94A36D239683687B3C92793A22BA0C93:FG=1; expires=Sun, 03-Nov-13 12:56:33 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1" + }, + { + "last-modified": "Thu, 11 Aug 2011 07:44:31 GMT" + }, + { + "etag": "\"57d9-4aa35f79b95c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:33 GMT" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8000" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:33 GMT" + }, + { + "server": "Apache" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "set-cookie": "BAIDUID=129ADB92B43CFC527CA7FB93BCB8AB88:FG=1; expires=Sun, 03-Nov-13 12:56:33 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1" + }, + { + "last-modified": "Fri, 02 Nov 2012 06:54:50 GMT" + }, + { + "etag": "\"5555-4cd7d9cac8280\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:33 GMT" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7499" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:33 GMT" + }, + { + "server": "Apache" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "set-cookie": "BAIDUID=CC2AAA2AE3AF303A945CAF8E9945BC2D:FG=1; expires=Sun, 03-Nov-13 12:56:33 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1" + }, + { + "last-modified": "Thu, 20 Sep 2012 04:32:55 GMT" + }, + { + "etag": "\"26fa-4ca1a9df6cbc0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:33 GMT" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3586" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:33 GMT" + }, + { + "server": "Apache" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "set-cookie": "BAIDUID=6C1D358E43AAD143080C18E498033F71:FG=1; expires=Sun, 03-Nov-13 12:56:33 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1" + }, + { + "last-modified": "Thu, 30 Jun 2011 10:56:51 GMT" + }, + { + "etag": "\"25f-4a6ebc21c42c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "607" + }, + { + "cache-control": "max-age=315360000" + }, + { + "expires": "Tue, 01 Nov 2022 12:56:33 GMT" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/png" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:34 GMT" + }, + { + "server": "Apache" + }, + { + "content-length": "147" + }, + { + "content-type": "image/x-icon" + }, + { + "cache-control": "private" + }, + { + "expires": "Sat, 03 Nov 2012 12:56:32 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "set-cookie": "BAIDUID=B6136AC10EBE0A8FCD216EB64C4C1A5C:FG=1; expires=Sat, 03-Nov-42 12:56:32 GMT; path=/; domain=.baidu.com" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "connection": "Keep-Alive" + }, + { + "last-modified": "Mon, 24 Jan 2011 11:52:05 GMT" + }, + { + "etag": "\"13e-49a963a8e0340\"" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding,User-Agent" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "BAIDUID=7B3F07DA7EB7581C6AAAAC2399C0F469:FG=1; max-age=31536000; expires=Sun, 03-Nov-13 12:56:39 GMT; domain=.hao123.com; path=/; version=1" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "expires": "Sat, 03 Nov 2012 12:56:39 GMT" + }, + { + "cache-control": "max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 12:56:39 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"2880337125\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 14 Feb 2012 03:23:36 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "795" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"1970946457\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 21 Aug 2012 12:19:47 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "49" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"3508231446\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Wed, 12 Sep 2012 06:59:30 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "4465" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "5928" + }, + { + "cache-control": "max-age=31536000" + }, + { + "etag": "\"3116325809147476198\"" + }, + { + "expires": "Sun, 03 Nov 2013 02:09:15 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 02:07:33 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "10550" + }, + { + "cache-control": "max-age=31536000" + }, + { + "etag": "\"13813589230791420108\"" + }, + { + "expires": "Fri, 01 Nov 2013 10:53:47 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 06:05:04 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/css" + }, + { + "etag": "\"991580451\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:07:04 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "11081" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"2826587238\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 18 Sep 2012 06:59:28 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:41 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "1803" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"2820264983\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 18 Sep 2012 02:45:17 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:41 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "3703" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"779014302\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Mon, 06 Aug 2012 10:17:50 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:41 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "2053" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"439052966\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:07:03 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "38609" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1503293558\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:07:03 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:41 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "13174" + }, + { + "date": "Sat, 03 Nov 2012 12:56:41 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"790245820\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:07:03 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:40 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "33536" + }, + { + "date": "Sat, 03 Nov 2012 12:56:40 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1136345403\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Wed, 17 Oct 2012 17:08:02 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "3731" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1881822353\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 16 Oct 2012 15:28:36 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1007" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"55301462\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 19 Oct 2012 15:59:17 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2179" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "BAIDUID=7B3F07DA7EB7581C6AAAAC2399C0F469:FG=1; max-age=31536000; expires=Sun, 03-Nov-13 12:56:39 GMT; domain=.hao123.com; path=/; version=1" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"2082195828\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 18 Jan 2011 06:39:02 GMT" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"2082195828\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 18 Jan 2011 06:39:02 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"1129043035\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 19 Oct 2012 15:58:50 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1962" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "1076" + }, + { + "etag": "\"2330871933\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Fri, 13 Jul 2012 03:17:42 GMT" + }, + { + "expires": "Sat, 12 Jan 2013 11:31:05 GMT" + }, + { + "cache-control": "max-age=15552000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"2084456863\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 18 Jan 2011 03:02:19 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:43 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 12:56:43 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:44 GMT" + }, + { + "server": "ECOM Apache 1.0.13.0" + }, + { + "content-encoding": "gzip" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"1905870111\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Wed, 18 Nov 2009 09:44:09 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 12:56:44 GMT" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 12:56:44 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.0.15" + }, + { + "date": "Sat, 03 Nov 2012 12:57:18 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "No-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "set-cookie": "JSESSIONID=24206446514B3C020AC50919B9330503; Path=/" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "x-powered-by": "PHP/5.2.3" + }, + { + "cache-control": "max-age=259200" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Tue, 06 Nov 2012 12:56:46 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "set-cookie": "loc=1%7C%B1%B1%BE%A9%7C%B1%B1%BE%A9; expires=Tue, 06-Nov-2012 12:56:46 GMT; path=/; domain=.hao123.com" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "684" + }, + { + "date": "Sat, 03 Nov 2012 12:56:46 GMT" + }, + { + "server": "lighttpd" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "media": "media" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Fri, 26 Oct 2012 12:24:13 GMT" + }, + { + "last-modified": "Sat, 25 Apr 2009 07:04:00 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 12:56:46 GMT" + }, + { + "server": "apache" + }, + { + "content-length": "8992" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.0.0" + }, + { + "date": "Sat, 03 Nov 2012 12:56:47 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Thu, 01 Nov 2012 10:00:20 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "expires": "Sat, 03 Nov 2012 13:26:47 GMT" + }, + { + "cache-control": "max-age=1800" + }, + { + "set-cookie": "id58=05eNElCVFI9c8Hfk16UMAg==; expires=Tue, 01-Nov-22 12:56:47 GMT; domain=58.com; path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"CUR ADM OUR NOR STA NID\"" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1840151033\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 14 Feb 2012 03:23:36 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:47 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4959" + }, + { + "date": "Sat, 03 Nov 2012 12:56:47 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1236171233\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 14 Feb 2012 03:23:36 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:47 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4571" + }, + { + "date": "Sat, 03 Nov 2012 12:56:47 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "BAIDUID=7B3F07DA7EB7581C6AAAAC2399C0F469:FG=1; max-age=31536000; expires=Sun, 03-Nov-13 12:56:39 GMT; domain=.hao123.com; path=/; version=1" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "expires": "Tue, 29 Oct 2013 12:56:47 GMT" + }, + { + "cache-control": "max-age=31104000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 12:56:47 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-type": "image/x-icon" + }, + { + "etag": "\"567172269\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 01 Mar 2012 02:31:58 GMT" + }, + { + "content-length": "1150" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:54:27 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "last-modified": "Thu, 16 Aug 2012 08:37:54 GMT" + }, + { + "cache-control": "max-age=300" + }, + { + "content-encoding": "gzip" + }, + { + "age": "1" + }, + { + "x-via": "1.1 bjgm232:8102 (Cdn Cache Server V2.0), 1.1 stsz70:8105 (Cdn Cache Server V2.0), 1.1 gdyf13:9080 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Mon, 22 Oct 2012 04:02:33 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "22332" + }, + { + "last-modified": "Mon, 25 Apr 2011 10:41:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 gm240:8104 (Cdn Cache Server V2.0), 1.1 stcz163:8106 (Cdn Cache Server V2.0), 1.1 gdyf13:8184 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Fri, 26 Oct 2012 12:49:31 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "9309" + }, + { + "last-modified": "Mon, 25 Apr 2011 08:07:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 gm243:8106 (Cdn Cache Server V2.0), 1.1 stsz75:8104 (Cdn Cache Server V2.0), 1.1 gdyf16:9080 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.2.0" + }, + { + "date": "Sat, 03 Nov 2012 12:56:49 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 16 Aug 2012 08:37:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Fri, 26 Oct 2012 12:49:31 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "23163" + }, + { + "last-modified": "Mon, 25 Apr 2011 10:46:11 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 gm240:8101 (Cdn Cache Server V2.0), 1.1 stsz74:8080 (Cdn Cache Server V2.0), 1.1 gdyf17:8184 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Fri, 26 Oct 2012 12:49:21 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "281" + }, + { + "last-modified": "Mon, 25 Apr 2011 08:07:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 gm239:8102 (Cdn Cache Server V2.0), 1.1 stsz70:88 (Cdn Cache Server V2.0), 1.1 gdyf20:8184 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 04:29:06 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "183" + }, + { + "last-modified": "Wed, 11 Jan 2012 07:50:38 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 tjtg100:80 (Cdn Cache Server V2.0), 1.1 gm240:8106 (Cdn Cache Server V2.0), 1.1 stsz75:8107 (Cdn Cache Server V2.0), 1.1 gdyf18:8360 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.0.0" + }, + { + "date": "Sat, 03 Nov 2012 12:56:50 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Sun, 24 Apr 2011 02:10:42 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "expires": "Sat, 03 Nov 2012 13:26:50 GMT" + }, + { + "cache-control": "max-age=1800" + }, + { + "set-cookie": "id58=05eNElCVFI9c8Hfk16UMAg==; expires=Tue, 01-Nov-22 12:56:47 GMT; domain=58.com; path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"CUR ADM OUR NOR STA NID\"" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "35" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.2.3" + }, + { + "date": "Sat, 03 Nov 2012 12:56:50 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "35" + }, + { + "last-modified": "Tue, 16 Oct 2012 03:32:08 GMT" + }, + { + "connection": "keep-alive" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 18 Oct 2012 03:17:25 GMT" + }, + { + "server": "nginx/1.0.10" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "11545" + }, + { + "last-modified": "Mon, 25 Apr 2011 09:08:36 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1" + }, + { + "x-via": "1.1 gm240:8107 (Cdn Cache Server V2.0), 1.1 stcz158:8104 (Cdn Cache Server V2.0), 1.1 gdyf16:8184 (Cdn Cache Server V2.0)" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 12:56:51 GMT" + }, + { + "content-type": "text/html" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBAUID=cb23caae14130a0d384a57f1; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34115693691177833738110320" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.0.15" + }, + { + "date": "Sat, 03 Nov 2012 12:57:24 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "No-cache" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "set-cookie": "JSESSIONID=24206446514B3C020AC50919B9330503; Path=/" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "W/\"4286-1337327987000\"" + }, + { + "last-modified": "Fri, 18 May 2012 07:59:47 GMT" + }, + { + "content-length": "4286" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "5352" + }, + { + "cache-control": "max-age=31536000" + }, + { + "etag": "\"3854054371452794933\"" + }, + { + "expires": "Fri, 01 Nov 2013 07:42:36 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 07:18:44 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "20557" + }, + { + "last-modified": "Fri, 02 Nov 2012 01:59:00 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"1496242645\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Sun, 15 Aug 2010 16:00:00 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:52 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "content-length": "1574" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "13644" + }, + { + "last-modified": "Sat, 03 Nov 2012 03:33:51 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "8122" + }, + { + "last-modified": "Wed, 31 Oct 2012 06:49:50 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:51 GMT" + }, + { + "content-type": "text/html" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:28:20 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "19956" + }, + { + "last-modified": "Sat, 03 Nov 2012 06:36:26 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:23:32 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4240" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"464442779\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Sun, 15 Aug 2010 16:00:00 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:53 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "content-length": "231" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"531551641\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Sun, 15 Aug 2010 16:00:00 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:53 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "content-length": "339" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "server": "ECOM Apache 1.0.13.0" + }, + { + "content-encoding": "gzip" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "7748" + }, + { + "last-modified": "Fri, 02 Nov 2012 03:02:59 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBAUID=cb23caae14130a0d384a57f1; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34115693691177833738110320" + }, + { + "server": "Apache" + }, + { + "content-length": "29476" + }, + { + "last-modified": "Sat, 03 Nov 2012 03:31:40 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 01 Nov 2012 05:21:05 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7301" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "7993" + }, + { + "last-modified": "Thu, 01 Nov 2012 07:14:19 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "last-modified": "Thu, 14 Oct 2010 10:10:45 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 29 Oct 2010 06:30:56 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:02 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "35637" + }, + { + "last-modified": "Wed, 31 Oct 2012 04:22:40 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBAUID=cb23caae14130a0d384a57f1; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34115693691177833738110320" + }, + { + "server": "Apache" + }, + { + "content-length": "4997" + }, + { + "last-modified": "Thu, 21 Jun 2012 03:57:37 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Fri, 29 Jun 2012 10:13:16 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2267" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1480" + }, + { + "last-modified": "Mon, 21 May 2012 07:58:06 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "8922" + }, + { + "last-modified": "Mon, 22 Oct 2012 03:21:07 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "etag": "\"4172175030\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 23 Oct 2012 10:48:27 GMT" + }, + { + "content-length": "9393" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "9294" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:16:26 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "40299" + }, + { + "last-modified": "Fri, 02 Nov 2012 04:07:00 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:52 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:44 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8579" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "18605" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBAUID=cb23caae14130a0d384a57f1; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34115693691177833738110320" + }, + { + "server": "Apache" + }, + { + "content-length": "20099" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "18865" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:44 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "20123" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:44 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "server": "Apache" + }, + { + "location": "http://msg.baidu.com/msg/msg_dataGetmsgCount?from=msg" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "206" + }, + { + "connection": "close" + }, + { + "content-type": "text/html; charset=iso-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "17869" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "18072" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:44 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "21328" + }, + { + "last-modified": "Wed, 19 Jan 2011 09:16:11 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/gif" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1481" + }, + { + "last-modified": "Tue, 24 Jul 2012 03:59:23 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "220" + }, + { + "connection": "close" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "etag": "\"3965408141\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 16 Oct 2012 06:54:58 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:52 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "content-length": "39993" + }, + { + "date": "Sat, 03 Nov 2012 12:56:52 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "11279" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:44 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "22384" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBAUID=cb23caae14130a0d384a57f1; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34115693691177833738110320" + }, + { + "server": "Apache" + }, + { + "content-length": "20962" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "61444" + }, + { + "last-modified": "Wed, 31 Oct 2012 07:13:16 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:54 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "17732" + }, + { + "last-modified": "Fri, 02 Nov 2012 09:16:23 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 26 Oct 2012 12:58:13 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:53 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:53 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 11 Oct 2011 07:38:09 GMT" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "999" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "3949" + }, + { + "last-modified": "Mon, 27 Aug 2012 06:36:50 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1158" + }, + { + "last-modified": "Mon, 03 Sep 2012 03:47:57 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1008" + }, + { + "last-modified": "Mon, 27 Aug 2012 08:26:17 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:06 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3059" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "text/html; charset=GBK" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "TIEBA_USERTYPE=7a2a671a262b15b7e6f4819b; expires=Thu, 31-Dec-2020 15:59:59 GMT; path=/; domain=tieba.baidu.com" + }, + { + "location": "http://tieba.baidu.com/index.html" + }, + { + "tracecode": "34173872330388372234110320" + }, + { + "server": "Apache" + }, + { + "content-length": "20962" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:36:43 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:54 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "text/html; charset=GBK" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1158" + }, + { + "last-modified": "Mon, 03 Sep 2012 03:47:57 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34176809970478157322110320" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "607" + }, + { + "last-modified": "Tue, 24 Jul 2012 03:59:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2921" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2832" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3059" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2801" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2923" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:06 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "20220" + }, + { + "last-modified": "Tue, 30 Oct 2012 07:56:05 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2830" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2877" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2967" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:06 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "177" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:06 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "text/html; charset=GBK" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1158" + }, + { + "last-modified": "Mon, 03 Sep 2012 03:47:57 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:57 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34180192590438703882110320" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "7067" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:12:51 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "288" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "8236" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:13:06 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2842" + }, + { + "last-modified": "Tue, 17 May 2011 06:39:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:59 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"4291424757\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 21 Jun 2012 08:04:46 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:59 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3558" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/html" + }, + { + "etag": "\"4232694198\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 21 Jun 2012 08:04:45 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:59 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "10901" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=44849399" + }, + { + "expires": "Sun, 06 Apr 2014 15:06:58 GMT" + }, + { + "last-modified": "Thu, 31 Dec 2009 08:37:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=40280084" + }, + { + "expires": "Wed, 12 Feb 2014 17:51:43 GMT" + }, + { + "last-modified": "Fri, 16 Apr 2010 03:07:31 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12713623" + }, + { + "expires": "Sat, 30 Mar 2013 16:30:42 GMT" + }, + { + "last-modified": "Sat, 14 Jan 2012 05:49:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=33539862" + }, + { + "expires": "Tue, 26 Nov 2013 17:34:41 GMT" + }, + { + "last-modified": "Sun, 19 Sep 2010 03:41:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4405195" + }, + { + "expires": "Mon, 24 Dec 2012 12:36:54 GMT" + }, + { + "last-modified": "Tue, 24 Jul 2012 13:37:09 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "media": "media" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Fri, 26 Oct 2012 12:24:13 GMT" + }, + { + "last-modified": "Sat, 25 Apr 2009 07:04:00 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 12:56:58 GMT" + }, + { + "server": "apache" + }, + { + "content-length": "27159" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"2269828500\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 24 Aug 2010 14:26:41 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:59 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "571" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=25111771" + }, + { + "expires": "Wed, 21 Aug 2013 04:26:30 GMT" + }, + { + "last-modified": "Sat, 02 Apr 2011 05:57:56 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9297121" + }, + { + "expires": "Tue, 19 Feb 2013 03:29:00 GMT" + }, + { + "last-modified": "Mon, 02 Apr 2012 07:52:56 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=41820075" + }, + { + "expires": "Sun, 02 Mar 2014 13:38:14 GMT" + }, + { + "last-modified": "Thu, 11 Mar 2010 11:34:29 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10209204" + }, + { + "expires": "Fri, 01 Mar 2013 16:50:23 GMT" + }, + { + "last-modified": "Mon, 12 Mar 2012 05:10:10 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "etag": "eab7a0d6b87c3b4ed2c270c0380dbf29" + }, + { + "cache-control": "max-age=0, must-revalidate" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "application/javascript" + }, + { + "set-cookie": "HMACCOUNT=0F8500D919421ADB; Path=/; Domain=hm.baidu.com; Expires=Sun, 18 Jan 2038 00:00:00 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "connection": "close" + }, + { + "content-length": "5779" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=8515483" + }, + { + "expires": "Sun, 10 Feb 2013 02:21:42 GMT" + }, + { + "last-modified": "Fri, 20 Apr 2012 10:07:32 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, max-age=0, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "x-content-type-options": "nosniff" + }, + { + "connection": "close" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 12:57:00 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:00 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1158" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:54:28 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:00 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34180192590438703882110320" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:00 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "1158" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:54:28 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:00 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34180192590438703882110320" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:00 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "3949" + }, + { + "last-modified": "Fri, 02 Nov 2012 12:11:36 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:00 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "BAIDUID=53B0A4069A29BECD16EF519984CCA005:FG=1; max-age=946080000; expires=Mon, 27-Oct-42 12:57:02 GMT; domain=.baidu.com; path=/; version=1" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"1698673572\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:49:58 GMT" + }, + { + "expires": "Fri, 01 Feb 2013 12:57:02 GMT" + }, + { + "cache-control": "max-age=7776000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "502" + }, + { + "date": "Sat, 03 Nov 2012 12:57:02 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "BAIDUID=53B0A4069A29BECDD09DC829CEEA31EE:FG=1; max-age=946080000; expires=Mon, 27-Oct-42 12:57:02 GMT; domain=.baidu.com; path=/; version=1" + }, + { + "p3p": "CP=\" OTI DSP COR IVA OUR IND COM \"" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"2769205800\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:49:58 GMT" + }, + { + "expires": "Fri, 01 Feb 2013 12:57:02 GMT" + }, + { + "cache-control": "max-age=7776000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3712" + }, + { + "date": "Sat, 03 Nov 2012 12:57:02 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"1610142698\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 21 Jun 2012 08:04:47 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:56:59 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "158920" + }, + { + "date": "Sat, 03 Nov 2012 12:56:59 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:04 GMT" + }, + { + "content-type": "image/x-icon" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "2550" + }, + { + "last-modified": "Tue, 30 Mar 2010 09:25:50 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:04 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34180192590438703882110320" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:07 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:11:42 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:56:58 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "43" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"1905870111\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Wed, 18 Nov 2009 09:44:09 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 12:57:07 GMT" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 12:57:07 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, max-age=0, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "x-content-type-options": "nosniff" + }, + { + "connection": "close" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 12:57:07 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:21:56 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "787" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "522" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/x-icon" + }, + { + "content-length": "2550" + }, + { + "last-modified": "Tue, 24 Jul 2012 03:59:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=14920916" + }, + { + "expires": "Thu, 25 Apr 2013 05:39:04 GMT" + }, + { + "last-modified": "Thu, 24 Nov 2011 03:33:15 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=20272763" + }, + { + "expires": "Wed, 26 Jun 2013 04:16:31 GMT" + }, + { + "last-modified": "Sat, 23 Jul 2011 06:18:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3386843" + }, + { + "expires": "Wed, 12 Dec 2012 17:44:31 GMT" + }, + { + "last-modified": "Fri, 17 Aug 2012 03:22:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=319801" + }, + { + "expires": "Wed, 07 Nov 2012 05:47:09 GMT" + }, + { + "last-modified": "Sat, 27 Oct 2012 03:17:06 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "etag": "\"2813066485\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 12 Aug 2010 08:49:52 GMT" + }, + { + "expires": "Mon, 12 Sep 2022 12:57:08 GMT" + }, + { + "cache-control": "max-age=311040000" + }, + { + "content-length": "1490" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4715" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5848" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Thu, 29 Mar 2012 08:20:20 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1173183" + }, + { + "expires": "Sat, 17 Nov 2012 02:50:11 GMT" + }, + { + "last-modified": "Sun, 07 Oct 2012 09:11:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=131604" + }, + { + "expires": "Mon, 05 Nov 2012 01:30:32 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 11:50:19 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=305486" + }, + { + "expires": "Wed, 07 Nov 2012 01:48:34 GMT" + }, + { + "last-modified": "Sat, 27 Oct 2012 11:14:16 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10106809" + }, + { + "expires": "Thu, 28 Feb 2013 12:23:57 GMT" + }, + { + "last-modified": "Wed, 14 Mar 2012 14:03:29 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=11660411" + }, + { + "expires": "Mon, 18 Mar 2013 11:57:19 GMT" + }, + { + "last-modified": "Tue, 07 Feb 2012 14:56:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1356978" + }, + { + "expires": "Mon, 19 Nov 2012 05:53:26 GMT" + }, + { + "last-modified": "Wed, 03 Oct 2012 03:04:31 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10204165" + }, + { + "expires": "Fri, 01 Mar 2013 15:26:33 GMT" + }, + { + "last-modified": "Mon, 12 Mar 2012 07:58:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9726906" + }, + { + "expires": "Sun, 24 Feb 2013 02:52:14 GMT" + }, + { + "last-modified": "Fri, 23 Mar 2012 09:06:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2265452" + }, + { + "expires": "Thu, 29 Nov 2012 18:14:40 GMT" + }, + { + "last-modified": "Wed, 12 Sep 2012 02:22:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "8761" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5828" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "6430" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6892" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "4639" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:10:35 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "853" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6834284" + }, + { + "expires": "Mon, 21 Jan 2013 15:21:52 GMT" + }, + { + "last-modified": "Tue, 29 May 2012 08:07:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=8117075" + }, + { + "expires": "Tue, 05 Feb 2013 11:41:43 GMT" + }, + { + "last-modified": "Sun, 29 Apr 2012 15:27:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6108255" + }, + { + "expires": "Sun, 13 Jan 2013 05:41:23 GMT" + }, + { + "last-modified": "Fri, 15 Jun 2012 03:28:38 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2157496" + }, + { + "expires": "Wed, 28 Nov 2012 12:15:24 GMT" + }, + { + "last-modified": "Fri, 14 Sep 2012 14:20:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7406109" + }, + { + "expires": "Mon, 28 Jan 2013 06:12:17 GMT" + }, + { + "last-modified": "Wed, 16 May 2012 02:26:49 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5979956" + }, + { + "expires": "Fri, 11 Jan 2013 18:03:04 GMT" + }, + { + "last-modified": "Mon, 18 Jun 2012 02:45:15 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12913110" + }, + { + "expires": "Mon, 01 Apr 2013 23:55:38 GMT" + }, + { + "last-modified": "Mon, 09 Jan 2012 15:00:07 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "4639" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:08 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3673" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "834" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:10:35 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5828" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "586" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "581" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5746593" + }, + { + "expires": "Wed, 09 Jan 2013 01:13:42 GMT" + }, + { + "last-modified": "Sat, 23 Jun 2012 12:24:03 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4420208" + }, + { + "expires": "Mon, 24 Dec 2012 16:47:17 GMT" + }, + { + "last-modified": "Tue, 24 Jul 2012 05:16:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "text/html; charset=GBK" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "2550" + }, + { + "last-modified": "Tue, 30 Mar 2010 09:25:50 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:04 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34277428450405149450110320" + }, + { + "content-encoding": "gzip" + }, + { + "set-cookie": "wise_device=0; expires=Sun, 03-Nov-2013 12:57:07 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=750933" + }, + { + "expires": "Mon, 12 Nov 2012 05:32:42 GMT" + }, + { + "last-modified": "Wed, 17 Oct 2012 03:46:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=31704989" + }, + { + "expires": "Tue, 05 Nov 2013 11:53:37 GMT" + }, + { + "last-modified": "Sun, 31 Oct 2010 15:04:09 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2436757" + }, + { + "expires": "Sat, 01 Dec 2012 17:49:46 GMT" + }, + { + "last-modified": "Sat, 08 Sep 2012 03:11:54 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=108530" + }, + { + "expires": "Sun, 04 Nov 2012 19:05:59 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 00:39:29 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=519223" + }, + { + "expires": "Fri, 09 Nov 2012 13:10:52 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:29:43 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3860382" + }, + { + "expires": "Tue, 18 Dec 2012 05:16:51 GMT" + }, + { + "last-modified": "Mon, 06 Aug 2012 04:17:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:21:56 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2820" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "618" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "572" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9498052" + }, + { + "expires": "Thu, 21 Feb 2013 11:18:01 GMT" + }, + { + "last-modified": "Wed, 28 Mar 2012 16:15:24 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4541952" + }, + { + "expires": "Wed, 26 Dec 2012 02:36:21 GMT" + }, + { + "last-modified": "Sat, 21 Jul 2012 09:38:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4854455" + }, + { + "expires": "Sat, 29 Dec 2012 17:24:44 GMT" + }, + { + "last-modified": "Sat, 14 Jul 2012 04:01:58 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=217395" + }, + { + "expires": "Tue, 06 Nov 2012 01:20:24 GMT" + }, + { + "last-modified": "Mon, 29 Oct 2012 12:10:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=606214" + }, + { + "expires": "Sat, 10 Nov 2012 13:20:43 GMT" + }, + { + "last-modified": "Sat, 20 Oct 2012 12:10:00 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10024120" + }, + { + "expires": "Wed, 27 Feb 2013 13:25:49 GMT" + }, + { + "last-modified": "Fri, 16 Mar 2012 11:59:49 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4573190" + }, + { + "expires": "Wed, 26 Dec 2012 11:16:59 GMT" + }, + { + "last-modified": "Fri, 20 Jul 2012 16:17:28 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=8773628" + }, + { + "expires": "Wed, 13 Feb 2013 02:04:17 GMT" + }, + { + "last-modified": "Sat, 14 Apr 2012 10:42:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "10566" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "840" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "10010" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "5929" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1970" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2878" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2367" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "138" + }, + { + "last-modified": "Tue, 24 Jul 2012 03:59:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "248" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "340" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "522" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1284" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "142" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2867849" + }, + { + "expires": "Thu, 06 Dec 2012 17:34:38 GMT" + }, + { + "last-modified": "Wed, 29 Aug 2012 03:42:11 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=742724" + }, + { + "expires": "Mon, 12 Nov 2012 03:15:53 GMT" + }, + { + "last-modified": "Wed, 17 Oct 2012 08:19:41 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1777991" + }, + { + "expires": "Sat, 24 Nov 2012 02:50:20 GMT" + }, + { + "last-modified": "Sun, 23 Sep 2012 09:10:47 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=962398" + }, + { + "expires": "Wed, 14 Nov 2012 16:17:07 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 06:17:12 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=14125794" + }, + { + "expires": "Tue, 16 Apr 2013 00:47:03 GMT" + }, + { + "last-modified": "Mon, 12 Dec 2011 13:17:20 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "954" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=431506" + }, + { + "expires": "Thu, 08 Nov 2012 12:48:55 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 13:13:37 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=11487816" + }, + { + "expires": "Sat, 16 Mar 2013 12:00:45 GMT" + }, + { + "last-modified": "Sat, 11 Feb 2012 14:49:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2738958" + }, + { + "expires": "Wed, 05 Dec 2012 05:46:27 GMT" + }, + { + "last-modified": "Sat, 01 Sep 2012 03:18:32 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5566505" + }, + { + "expires": "Sun, 06 Jan 2013 23:12:14 GMT" + }, + { + "last-modified": "Wed, 27 Jun 2012 16:26:59 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "3063" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:10:36 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "539" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "17226" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "833" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "820" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:12:46 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4911" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1394" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "5772" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "10954" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "994" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=54046405" + }, + { + "expires": "Tue, 22 Jul 2014 01:50:34 GMT" + }, + { + "last-modified": "Mon, 01 Jun 2009 11:10:18 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=707871" + }, + { + "expires": "Sun, 11 Nov 2012 17:35:01 GMT" + }, + { + "last-modified": "Thu, 18 Oct 2012 03:41:27 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=362012" + }, + { + "expires": "Wed, 07 Nov 2012 17:30:42 GMT" + }, + { + "last-modified": "Fri, 26 Oct 2012 03:50:06 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=18793623" + }, + { + "expires": "Sun, 09 Jun 2013 01:24:13 GMT" + }, + { + "last-modified": "Fri, 26 Aug 2011 12:03:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=430516" + }, + { + "expires": "Thu, 08 Nov 2012 12:32:26 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 13:46:37 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=32880607" + }, + { + "expires": "Tue, 19 Nov 2013 02:27:17 GMT" + }, + { + "last-modified": "Mon, 04 Oct 2010 09:56:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3367264" + }, + { + "expires": "Wed, 12 Dec 2012 12:18:14 GMT" + }, + { + "last-modified": "Fri, 17 Aug 2012 14:15:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3543896" + }, + { + "expires": "Fri, 14 Dec 2012 13:22:06 GMT" + }, + { + "last-modified": "Mon, 13 Aug 2012 12:07:18 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "2725" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:54:28 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4823" + }, + { + "last-modified": "Wed, 14 Sep 2011 06:12:46 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "598" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "4344" + }, + { + "last-modified": "Fri, 09 Sep 2011 07:29:20 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=920631" + }, + { + "expires": "Wed, 14 Nov 2012 04:41:01 GMT" + }, + { + "last-modified": "Sat, 13 Oct 2012 05:29:27 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10801080" + }, + { + "expires": "Fri, 08 Mar 2013 13:15:10 GMT" + }, + { + "last-modified": "Mon, 27 Feb 2012 12:21:10 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=19349568" + }, + { + "expires": "Sat, 15 Jun 2013 11:49:58 GMT" + }, + { + "last-modified": "Sat, 13 Aug 2011 15:11:34 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2597506" + }, + { + "expires": "Mon, 03 Dec 2012 14:28:56 GMT" + }, + { + "last-modified": "Tue, 04 Sep 2012 09:53:37 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=27218873" + }, + { + "expires": "Sat, 14 Sep 2013 13:45:03 GMT" + }, + { + "last-modified": "Sat, 12 Feb 2011 11:21:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3377775" + }, + { + "expires": "Wed, 12 Dec 2012 15:13:25 GMT" + }, + { + "last-modified": "Fri, 17 Aug 2012 08:24:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4247008" + }, + { + "expires": "Sat, 22 Dec 2012 16:40:38 GMT" + }, + { + "last-modified": "Sat, 28 Jul 2012 05:30:14 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1815543" + }, + { + "expires": "Sat, 24 Nov 2012 13:16:13 GMT" + }, + { + "last-modified": "Sat, 22 Sep 2012 12:19:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=270710" + }, + { + "expires": "Tue, 06 Nov 2012 16:09:00 GMT" + }, + { + "last-modified": "Sun, 28 Oct 2012 06:33:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1790915" + }, + { + "expires": "Sat, 24 Nov 2012 06:25:45 GMT" + }, + { + "last-modified": "Sun, 23 Sep 2012 02:00:00 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=14218" + }, + { + "expires": "Sat, 03 Nov 2012 16:54:08 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 05:03:14 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3723118" + }, + { + "expires": "Sun, 16 Dec 2012 15:09:08 GMT" + }, + { + "last-modified": "Thu, 09 Aug 2012 08:33:13 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4635533" + }, + { + "expires": "Thu, 27 Dec 2012 04:36:03 GMT" + }, + { + "last-modified": "Thu, 19 Jul 2012 05:39:24 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12138710" + }, + { + "expires": "Sun, 24 Mar 2013 00:49:00 GMT" + }, + { + "last-modified": "Fri, 27 Jan 2012 13:13:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=19371229" + }, + { + "expires": "Sat, 15 Jun 2013 17:50:59 GMT" + }, + { + "last-modified": "Sat, 13 Aug 2011 03:09:31 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3202347" + }, + { + "expires": "Mon, 10 Dec 2012 14:29:37 GMT" + }, + { + "last-modified": "Tue, 21 Aug 2012 09:52:15 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3678437" + }, + { + "expires": "Sun, 16 Dec 2012 02:44:27 GMT" + }, + { + "last-modified": "Fri, 10 Aug 2012 09:22:36 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1085523" + }, + { + "expires": "Fri, 16 Nov 2012 02:29:13 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 09:53:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=51122420" + }, + { + "expires": "Wed, 18 Jun 2014 05:37:30 GMT" + }, + { + "last-modified": "Sat, 08 Aug 2009 03:36:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4381984" + }, + { + "expires": "Mon, 24 Dec 2012 06:10:14 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 02:31:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7305155" + }, + { + "expires": "Sun, 27 Jan 2013 02:09:45 GMT" + }, + { + "last-modified": "Fri, 18 May 2012 10:32:00 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13340027" + }, + { + "expires": "Sat, 06 Apr 2013 22:30:57 GMT" + }, + { + "last-modified": "Fri, 30 Dec 2011 17:49:36 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3517984" + }, + { + "expires": "Fri, 14 Dec 2012 06:10:14 GMT" + }, + { + "last-modified": "Tue, 14 Aug 2012 02:31:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4872542" + }, + { + "expires": "Sat, 29 Dec 2012 22:26:12 GMT" + }, + { + "last-modified": "Fri, 13 Jul 2012 17:59:05 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "48731" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1855967" + }, + { + "expires": "Sun, 25 Nov 2012 00:29:57 GMT" + }, + { + "last-modified": "Fri, 21 Sep 2012 13:51:36 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1357261" + }, + { + "expires": "Mon, 19 Nov 2012 05:58:11 GMT" + }, + { + "last-modified": "Wed, 03 Oct 2012 02:55:08 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12271010" + }, + { + "expires": "Mon, 25 Mar 2013 13:34:00 GMT" + }, + { + "last-modified": "Tue, 24 Jan 2012 11:43:29 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1069555" + }, + { + "expires": "Thu, 15 Nov 2012 22:03:05 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 18:45:20 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3114138" + }, + { + "expires": "Sun, 09 Dec 2012 13:59:29 GMT" + }, + { + "last-modified": "Thu, 23 Aug 2012 10:52:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=15254111" + }, + { + "expires": "Mon, 29 Apr 2013 02:12:22 GMT" + }, + { + "last-modified": "Wed, 16 Nov 2011 10:26:48 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:10 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "6834" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1956253" + }, + { + "expires": "Mon, 26 Nov 2012 04:21:24 GMT" + }, + { + "last-modified": "Wed, 19 Sep 2012 06:08:44 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3164696" + }, + { + "expires": "Mon, 10 Dec 2012 04:02:07 GMT" + }, + { + "last-modified": "Wed, 22 Aug 2012 06:47:19 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=15466892" + }, + { + "expires": "Wed, 01 May 2013 13:18:43 GMT" + }, + { + "last-modified": "Fri, 11 Nov 2011 12:14:06 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=56032" + }, + { + "expires": "Sun, 04 Nov 2012 04:31:03 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:49:26 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7623169" + }, + { + "expires": "Wed, 30 Jan 2013 18:30:00 GMT" + }, + { + "last-modified": "Fri, 11 May 2012 01:51:32 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12924665" + }, + { + "expires": "Tue, 02 Apr 2013 03:08:16 GMT" + }, + { + "last-modified": "Mon, 09 Jan 2012 08:35:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2176101" + }, + { + "expires": "Wed, 28 Nov 2012 17:25:32 GMT" + }, + { + "last-modified": "Fri, 14 Sep 2012 04:00:28 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=14007174" + }, + { + "expires": "Sun, 14 Apr 2013 15:50:05 GMT" + }, + { + "last-modified": "Thu, 15 Dec 2011 07:11:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1438855" + }, + { + "expires": "Tue, 20 Nov 2012 04:38:06 GMT" + }, + { + "last-modified": "Mon, 01 Oct 2012 05:35:21 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6323658" + }, + { + "expires": "Tue, 15 Jan 2013 17:31:29 GMT" + }, + { + "last-modified": "Sun, 10 Jun 2012 03:48:34 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=41611" + }, + { + "expires": "Sun, 04 Nov 2012 00:30:42 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:50:08 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=25072164" + }, + { + "expires": "Tue, 20 Aug 2013 17:26:35 GMT" + }, + { + "last-modified": "Sun, 03 Apr 2011 03:58:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13004317" + }, + { + "expires": "Wed, 03 Apr 2013 01:15:48 GMT" + }, + { + "last-modified": "Sat, 07 Jan 2012 12:19:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=778015" + }, + { + "expires": "Mon, 12 Nov 2012 13:04:06 GMT" + }, + { + "last-modified": "Tue, 16 Oct 2012 12:43:21 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1778334" + }, + { + "expires": "Sat, 24 Nov 2012 02:56:05 GMT" + }, + { + "last-modified": "Sun, 23 Sep 2012 08:59:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5531525" + }, + { + "expires": "Sun, 06 Jan 2013 13:29:16 GMT" + }, + { + "last-modified": "Thu, 28 Jun 2012 11:53:00 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2468675" + }, + { + "expires": "Sun, 02 Dec 2012 02:41:46 GMT" + }, + { + "last-modified": "Fri, 07 Sep 2012 09:28:00 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1223853" + }, + { + "expires": "Sat, 17 Nov 2012 16:54:44 GMT" + }, + { + "last-modified": "Sat, 06 Oct 2012 05:02:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3496295" + }, + { + "expires": "Fri, 14 Dec 2012 00:08:46 GMT" + }, + { + "last-modified": "Tue, 14 Aug 2012 14:34:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:09 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:09 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=20150086" + }, + { + "expires": "Mon, 24 Jun 2013 18:11:57 GMT" + }, + { + "last-modified": "Tue, 26 Jul 2011 02:27:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:11 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5057999" + }, + { + "expires": "Tue, 01 Jan 2013 01:57:10 GMT" + }, + { + "last-modified": "Mon, 09 Jul 2012 10:57:13 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2613405" + }, + { + "expires": "Mon, 03 Dec 2012 18:53:57 GMT" + }, + { + "last-modified": "Tue, 04 Sep 2012 01:03:41 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4365433" + }, + { + "expires": "Mon, 24 Dec 2012 01:34:25 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 11:42:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=19834480" + }, + { + "expires": "Fri, 21 Jun 2013 02:31:52 GMT" + }, + { + "last-modified": "Tue, 02 Aug 2011 09:47:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=11268" + }, + { + "expires": "Sat, 03 Nov 2012 16:05:00 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 06:41:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5616267" + }, + { + "expires": "Mon, 07 Jan 2013 13:01:39 GMT" + }, + { + "last-modified": "Tue, 26 Jun 2012 12:48:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7263532" + }, + { + "expires": "Sat, 26 Jan 2013 14:36:04 GMT" + }, + { + "last-modified": "Sat, 19 May 2012 09:39:27 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:57:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "94544" + }, + { + "cache-control": "max-age=31536000" + }, + { + "etag": "\"1031174008914679718\"" + }, + { + "expires": "Tue, 20 Aug 2013 13:41:19 GMT" + }, + { + "last-modified": "Sun, 08 Jul 2012 14:17:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "723" + }, + { + "last-modified": "Tue, 24 Jul 2012 03:59:23 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34277428450405149450110320" + }, + { + "content-encoding": "gzip" + }, + { + "set-cookie": "wise_device=0; expires=Sun, 03-Nov-2013 12:57:07 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "3728" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "987" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "3108" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:25:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Mon, 29 Oct 2012 09:07:40 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "598" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "717" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "973" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "386" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Wed, 25 Jul 2012 07:00:44 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-length": "584" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "text/css" + }, + { + "last-modified": "Wed, 30 May 2012 03:14:35 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "429" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2725" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "last-modified": "Thu, 14 Oct 2010 10:10:45 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:10 GMT" + }, + { + "cache-control": "max-age=2592000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1633" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "733" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1647" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:49:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1217631" + }, + { + "expires": "Sat, 17 Nov 2012 15:11:03 GMT" + }, + { + "last-modified": "Sat, 06 Oct 2012 08:29:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4935379" + }, + { + "expires": "Sun, 30 Dec 2012 15:53:31 GMT" + }, + { + "last-modified": "Thu, 12 Jul 2012 07:04:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=94090" + }, + { + "expires": "Sun, 04 Nov 2012 15:05:22 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 08:40:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=268205" + }, + { + "expires": "Tue, 06 Nov 2012 15:27:17 GMT" + }, + { + "last-modified": "Sun, 28 Oct 2012 07:57:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3501790" + }, + { + "expires": "Fri, 14 Dec 2012 01:40:22 GMT" + }, + { + "last-modified": "Tue, 14 Aug 2012 11:30:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1089367" + }, + { + "expires": "Fri, 16 Nov 2012 03:33:19 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 07:44:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5175917" + }, + { + "expires": "Wed, 02 Jan 2013 10:42:29 GMT" + }, + { + "last-modified": "Fri, 06 Jul 2012 17:26:38 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2826947" + }, + { + "expires": "Thu, 06 Dec 2012 06:12:59 GMT" + }, + { + "last-modified": "Thu, 30 Aug 2012 02:25:38 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:37:52 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "560" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2850" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:31:14 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1196" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "1804" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:09:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1320" + }, + { + "last-modified": "Wed, 30 May 2012 03:19:18 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Wed, 30 May 2012 03:19:18 GMT" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1990" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=14263076" + }, + { + "expires": "Wed, 17 Apr 2013 14:55:08 GMT" + }, + { + "last-modified": "Fri, 09 Dec 2011 09:01:20 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2086351" + }, + { + "expires": "Tue, 27 Nov 2012 16:29:43 GMT" + }, + { + "last-modified": "Sun, 16 Sep 2012 05:52:10 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6392807" + }, + { + "expires": "Wed, 16 Jan 2013 12:43:59 GMT" + }, + { + "last-modified": "Fri, 08 Jun 2012 13:23:38 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4373528" + }, + { + "expires": "Mon, 24 Dec 2012 03:49:20 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 07:12:56 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=960053" + }, + { + "expires": "Wed, 14 Nov 2012 15:38:05 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 07:35:25 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1446556" + }, + { + "expires": "Tue, 20 Nov 2012 06:46:28 GMT" + }, + { + "last-modified": "Mon, 01 Oct 2012 01:18:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13730089" + }, + { + "expires": "Thu, 11 Apr 2013 10:52:01 GMT" + }, + { + "last-modified": "Wed, 21 Dec 2011 17:07:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4447089" + }, + { + "expires": "Tue, 25 Dec 2012 00:15:21 GMT" + }, + { + "last-modified": "Mon, 23 Jul 2012 14:20:53 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1048930" + }, + { + "expires": "Thu, 15 Nov 2012 16:19:22 GMT" + }, + { + "last-modified": "Wed, 10 Oct 2012 06:12:51 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"4013610198\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Wed, 20 Jun 2012 16:39:57 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1828" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "BWS/1.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=23765568" + }, + { + "expires": "Mon, 05 Aug 2013 14:30:00 GMT" + }, + { + "last-modified": "Tue, 03 May 2011 09:51:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "9466" + }, + { + "last-modified": "Wed, 25 Jul 2012 06:58:47 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2736291" + }, + { + "expires": "Wed, 05 Dec 2012 05:02:03 GMT" + }, + { + "last-modified": "Sat, 01 Sep 2012 04:47:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7202517" + }, + { + "expires": "Fri, 25 Jan 2013 21:39:09 GMT" + }, + { + "last-modified": "Sun, 20 May 2012 19:33:18 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=962816" + }, + { + "expires": "Wed, 14 Nov 2012 16:24:09 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 06:03:21 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=28898351" + }, + { + "expires": "Fri, 04 Oct 2013 00:16:24 GMT" + }, + { + "last-modified": "Tue, 04 Jan 2011 14:18:50 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=26910239" + }, + { + "expires": "Wed, 11 Sep 2013 00:01:12 GMT" + }, + { + "last-modified": "Sat, 19 Feb 2011 14:49:14 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=314449" + }, + { + "expires": "Wed, 07 Nov 2012 04:18:02 GMT" + }, + { + "last-modified": "Sat, 27 Oct 2012 06:15:34 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=17303680" + }, + { + "expires": "Wed, 22 May 2013 19:31:53 GMT" + }, + { + "last-modified": "Thu, 29 Sep 2011 23:47:53 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=8742316" + }, + { + "expires": "Tue, 12 Feb 2013 17:22:29 GMT" + }, + { + "last-modified": "Sun, 15 Apr 2012 04:06:41 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=951041" + }, + { + "expires": "Wed, 14 Nov 2012 13:07:54 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 12:35:50 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12357995" + }, + { + "expires": "Tue, 26 Mar 2013 13:43:48 GMT" + }, + { + "last-modified": "Sun, 22 Jan 2012 11:24:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "Keep-Alive" + }, + { + "content-length": "30289" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:14:30 GMT" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Apache" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "tracecode": "34277428450405149450110320" + }, + { + "content-encoding": "gzip" + }, + { + "set-cookie": "wise_device=0; expires=Sun, 03-Nov-2013 12:57:07 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6924353" + }, + { + "expires": "Tue, 22 Jan 2013 16:23:06 GMT" + }, + { + "last-modified": "Sun, 27 May 2012 06:05:27 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=35998348" + }, + { + "expires": "Wed, 25 Dec 2013 04:29:41 GMT" + }, + { + "last-modified": "Sat, 24 Jul 2010 05:52:16 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=403161" + }, + { + "expires": "Thu, 08 Nov 2012 04:56:34 GMT" + }, + { + "last-modified": "Thu, 25 Oct 2012 04:58:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=11795987" + }, + { + "expires": "Wed, 20 Mar 2013 01:37:00 GMT" + }, + { + "last-modified": "Sat, 04 Feb 2012 11:37:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4466678" + }, + { + "expires": "Tue, 25 Dec 2012 05:41:51 GMT" + }, + { + "last-modified": "Mon, 23 Jul 2012 03:27:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4380824" + }, + { + "expires": "Mon, 24 Dec 2012 05:50:57 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 03:09:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4370018" + }, + { + "expires": "Mon, 24 Dec 2012 02:50:51 GMT" + }, + { + "last-modified": "Wed, 25 Jul 2012 09:09:57 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=22046695" + }, + { + "expires": "Tue, 16 Jul 2013 17:02:08 GMT" + }, + { + "last-modified": "Sun, 12 Jun 2011 04:47:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "etag": "\"1795935374\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Thu, 20 Sep 2012 06:30:31 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "490" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1813409" + }, + { + "expires": "Sat, 24 Nov 2012 12:40:42 GMT" + }, + { + "last-modified": "Sat, 22 Sep 2012 13:30:14 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2381150" + }, + { + "expires": "Sat, 01 Dec 2012 02:23:03 GMT" + }, + { + "last-modified": "Sun, 09 Sep 2012 10:05:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12085408" + }, + { + "expires": "Sat, 23 Mar 2013 10:00:41 GMT" + }, + { + "last-modified": "Sat, 28 Jan 2012 18:50:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7660325" + }, + { + "expires": "Thu, 31 Jan 2013 04:49:18 GMT" + }, + { + "last-modified": "Thu, 10 May 2012 05:13:02 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=20831903" + }, + { + "expires": "Tue, 02 Jul 2013 15:35:36 GMT" + }, + { + "last-modified": "Sun, 10 Jul 2011 07:40:26 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "42293" + }, + { + "last-modified": "Wed, 30 May 2012 03:19:18 GMT" + }, + { + "connection": "keep-alive" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:57:12 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "accept-ranges": "bytes" + }, + { + "transfer-encoding": "chunked" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13227345" + }, + { + "expires": "Fri, 05 Apr 2013 15:12:58 GMT" + }, + { + "last-modified": "Mon, 02 Jan 2012 08:25:43 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5658505" + }, + { + "expires": "Tue, 08 Jan 2013 00:45:38 GMT" + }, + { + "last-modified": "Mon, 25 Jun 2012 13:20:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1397477" + }, + { + "expires": "Mon, 19 Nov 2012 17:08:30 GMT" + }, + { + "last-modified": "Tue, 02 Oct 2012 04:34:38 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3108210" + }, + { + "expires": "Sun, 09 Dec 2012 12:20:43 GMT" + }, + { + "last-modified": "Thu, 23 Aug 2012 14:10:13 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1080824" + }, + { + "expires": "Fri, 16 Nov 2012 01:10:57 GMT" + }, + { + "last-modified": "Tue, 09 Oct 2012 12:29:45 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=10544861" + }, + { + "expires": "Tue, 05 Mar 2013 14:04:54 GMT" + }, + { + "last-modified": "Sun, 04 Mar 2012 10:41:50 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9336177" + }, + { + "expires": "Tue, 19 Feb 2013 14:20:10 GMT" + }, + { + "last-modified": "Sun, 01 Apr 2012 10:11:18 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=947069" + }, + { + "expires": "Wed, 14 Nov 2012 12:01:43 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 14:48:15 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1473803" + }, + { + "expires": "Tue, 20 Nov 2012 14:20:37 GMT" + }, + { + "last-modified": "Sun, 30 Sep 2012 10:10:28 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1395562" + }, + { + "expires": "Mon, 19 Nov 2012 16:36:36 GMT" + }, + { + "last-modified": "Tue, 02 Oct 2012 05:38:29 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4082149" + }, + { + "expires": "Thu, 20 Dec 2012 18:53:02 GMT" + }, + { + "last-modified": "Wed, 01 Aug 2012 01:05:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4020129" + }, + { + "expires": "Thu, 20 Dec 2012 01:39:23 GMT" + }, + { + "last-modified": "Thu, 02 Aug 2012 11:32:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=30533221" + }, + { + "expires": "Tue, 22 Oct 2013 22:24:15 GMT" + }, + { + "last-modified": "Sat, 27 Nov 2010 18:03:12 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9250886" + }, + { + "expires": "Mon, 18 Feb 2013 14:38:40 GMT" + }, + { + "last-modified": "Tue, 03 Apr 2012 09:34:21 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=7796153" + }, + { + "expires": "Fri, 01 Feb 2013 18:33:07 GMT" + }, + { + "last-modified": "Mon, 07 May 2012 01:45:28 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12403487" + }, + { + "expires": "Wed, 27 Mar 2013 02:22:01 GMT" + }, + { + "last-modified": "Sat, 21 Jan 2012 10:07:40 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=342416" + }, + { + "expires": "Wed, 07 Nov 2012 12:04:10 GMT" + }, + { + "last-modified": "Fri, 26 Oct 2012 14:43:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13044961" + }, + { + "expires": "Wed, 03 Apr 2013 12:33:15 GMT" + }, + { + "last-modified": "Fri, 06 Jan 2012 13:45:12 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=90589" + }, + { + "expires": "Sun, 04 Nov 2012 14:07:03 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 10:37:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=13128536" + }, + { + "expires": "Thu, 04 Apr 2013 11:46:10 GMT" + }, + { + "last-modified": "Wed, 04 Jan 2012 15:19:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3557238" + }, + { + "expires": "Fri, 14 Dec 2012 17:04:32 GMT" + }, + { + "last-modified": "Mon, 13 Aug 2012 04:42:37 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=2348339" + }, + { + "expires": "Fri, 30 Nov 2012 17:16:13 GMT" + }, + { + "last-modified": "Mon, 10 Sep 2012 04:19:15 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=303065" + }, + { + "expires": "Wed, 07 Nov 2012 01:08:19 GMT" + }, + { + "last-modified": "Sat, 27 Oct 2012 12:35:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3713169" + }, + { + "expires": "Sun, 16 Dec 2012 12:23:23 GMT" + }, + { + "last-modified": "Thu, 09 Aug 2012 14:04:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3556632" + }, + { + "expires": "Fri, 14 Dec 2012 16:54:26 GMT" + }, + { + "last-modified": "Mon, 13 Aug 2012 05:02:50 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4793201" + }, + { + "expires": "Sat, 29 Dec 2012 00:23:55 GMT" + }, + { + "last-modified": "Sun, 15 Jul 2012 14:03:52 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=488079" + }, + { + "expires": "Fri, 09 Nov 2012 04:31:53 GMT" + }, + { + "last-modified": "Tue, 23 Oct 2012 05:47:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=12998284" + }, + { + "expires": "Tue, 02 Apr 2013 23:35:18 GMT" + }, + { + "last-modified": "Sat, 07 Jan 2012 15:41:05 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=38194284" + }, + { + "expires": "Sun, 19 Jan 2014 14:28:38 GMT" + }, + { + "last-modified": "Thu, 03 Jun 2010 09:54:26 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:13 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "17574" + }, + { + "last-modified": "Fri, 26 Oct 2012 03:00:00 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:57:13 GMT" + }, + { + "cache-control": "max-age=3600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1010448" + }, + { + "expires": "Thu, 15 Nov 2012 05:38:02 GMT" + }, + { + "last-modified": "Thu, 11 Oct 2012 03:35:37 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=573690" + }, + { + "expires": "Sat, 10 Nov 2012 04:18:44 GMT" + }, + { + "last-modified": "Sun, 21 Oct 2012 06:14:13 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=9690556" + }, + { + "expires": "Sat, 23 Feb 2013 16:46:30 GMT" + }, + { + "last-modified": "Sat, 24 Mar 2012 05:18:41 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=20727056" + }, + { + "expires": "Mon, 01 Jul 2013 10:28:10 GMT" + }, + { + "last-modified": "Tue, 12 Jul 2011 17:55:22 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5867076" + }, + { + "expires": "Thu, 10 Jan 2013 10:41:50 GMT" + }, + { + "last-modified": "Wed, 20 Jun 2012 17:28:01 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1938815" + }, + { + "expires": "Sun, 25 Nov 2012 23:30:49 GMT" + }, + { + "last-modified": "Wed, 19 Sep 2012 15:50:04 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:14 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=25417039" + }, + { + "expires": "Sat, 24 Aug 2013 17:14:33 GMT" + }, + { + "last-modified": "Sat, 26 Mar 2011 04:22:35 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1258204" + }, + { + "expires": "Sun, 18 Nov 2012 02:27:19 GMT" + }, + { + "last-modified": "Fri, 05 Oct 2012 09:57:06 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1855684" + }, + { + "expires": "Sun, 25 Nov 2012 00:25:19 GMT" + }, + { + "last-modified": "Fri, 21 Sep 2012 14:01:06 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=6489659" + }, + { + "expires": "Thu, 17 Jan 2013 15:38:14 GMT" + }, + { + "last-modified": "Wed, 06 Jun 2012 07:35:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4972705" + }, + { + "expires": "Mon, 31 Dec 2012 02:15:40 GMT" + }, + { + "last-modified": "Wed, 11 Jul 2012 10:20:25 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4075979" + }, + { + "expires": "Thu, 20 Dec 2012 17:10:14 GMT" + }, + { + "last-modified": "Wed, 01 Aug 2012 04:31:16 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-length": "16" + }, + { + "content-type": "text/html;charset=gbk" + }, + { + "cache-control": "private" + }, + { + "set-cookie": "BDRCVFR[RQbEFtOPS6t]=mbxnW11j9Dfmh7GuZR8mvqV; path=/; domain=rp.baidu.com" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-length": "16" + }, + { + "content-type": "text/html;charset=gbk" + }, + { + "cache-control": "private" + }, + { + "set-cookie": "BDRCVFR[74hAi0as9Oc]=mbxnW11j9Dfmh7GuZR8mvqV; path=/; domain=rp.baidu.com" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-length": "16" + }, + { + "content-type": "text/html;charset=gbk" + }, + { + "cache-control": "private" + }, + { + "set-cookie": "BDRCVFR[INlq_Cf3RCm]=mbxnW11j9Dfmh7GuZR8mvqV; path=/; domain=rp.baidu.com" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "BWS/1.0" + }, + { + "content-length": "16" + }, + { + "content-type": "text/html;charset=gbk" + }, + { + "cache-control": "private" + }, + { + "set-cookie": "BDRCVFR[wqXIM55hsyY]=mbxnW11j9Dfmh7GuZR8mvqV; path=/; domain=rp.baidu.com" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "content-type": "text/html" + }, + { + "content-length": "17574" + }, + { + "last-modified": "Sat Nov 3 20:57:15 2012" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "cache-control": "post-check=0, pre-check=0" + }, + { + "transfer-encoding": "chunked" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=433162" + }, + { + "expires": "Thu, 08 Nov 2012 13:16:37 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 12:18:30 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=701481" + }, + { + "expires": "Sun, 11 Nov 2012 15:48:36 GMT" + }, + { + "last-modified": "Thu, 18 Oct 2012 07:14:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=473366" + }, + { + "expires": "Fri, 09 Nov 2012 00:26:41 GMT" + }, + { + "last-modified": "Tue, 23 Oct 2012 13:58:23 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=5523078" + }, + { + "expires": "Sun, 06 Jan 2013 11:08:33 GMT" + }, + { + "last-modified": "Thu, 28 Jun 2012 16:34:39 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=16759229" + }, + { + "expires": "Thu, 16 May 2013 12:17:44 GMT" + }, + { + "last-modified": "Wed, 12 Oct 2011 14:16:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=4189499" + }, + { + "expires": "Sat, 22 Dec 2012 00:42:14 GMT" + }, + { + "last-modified": "Sun, 29 Jul 2012 13:27:17 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "close" + }, + { + "etag": "\"2607371477\"" + }, + { + "last-modified": "Tue, 18 Sep 2012 05:49:17 GMT" + }, + { + "expires": "Sun, 17 Mar 2013 06:26:16 GMT" + }, + { + "cache-control": "max-age=15552000" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "close" + }, + { + "etag": "\"2063226227\"" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:39:26 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:09:38 GMT" + }, + { + "cache-control": "max-age=1800" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=1345881" + }, + { + "expires": "Mon, 19 Nov 2012 02:48:36 GMT" + }, + { + "last-modified": "Wed, 03 Oct 2012 09:14:33 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=96063" + }, + { + "expires": "Sun, 04 Nov 2012 15:38:18 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 07:35:08 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=3617766" + }, + { + "expires": "Sat, 15 Dec 2012 09:53:21 GMT" + }, + { + "last-modified": "Sat, 11 Aug 2012 19:05:03 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=11496580" + }, + { + "expires": "Sat, 16 Mar 2013 14:26:55 GMT" + }, + { + "last-modified": "Sat, 11 Feb 2012 09:57:55 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "server": "apache 1.1.26.0" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=307195" + }, + { + "expires": "Wed, 07 Nov 2012 02:17:10 GMT" + }, + { + "last-modified": "Sat, 27 Oct 2012 10:17:24 GMT" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:57:15 GMT" + }, + { + "content-type": "text/css" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "close" + }, + { + "etag": "\"618192838\"" + }, + { + "last-modified": "Thu, 01 Nov 2012 12:49:53 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "JSP2/1.0.2" + }, + { + "date": "Sat, 03 Nov 2012 12:57:16 GMT" + }, + { + "content-type": "image/png" + }, + { + "connection": "close" + }, + { + "content-length": "9799" + }, + { + "etag": "\"2773371803\"" + }, + { + "accept-ranges": "bytes" + }, + { + "last-modified": "Tue, 30 Oct 2012 03:58:12 GMT" + }, + { + "expires": "Fri, 09 Nov 2012 09:54:56 GMT" + }, + { + "cache-control": "max-age=604800" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_23.json b/jetty-http2/http2-hpack/src/test/resources/data/story_23.json new file mode 100644 index 00000000000..935e29dc70d --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_23.json @@ -0,0 +1,13406 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "301" + }, + { + "date": "Sat, 03 Nov 2012 13:37:10 GMT" + }, + { + "server": "Apache/2.2.22 (Unix)" + }, + { + "set-cookie": "BBC-UID=557049b5114e60f649a3590541375a237274de5c1020f1118262d353e424f5650Mozilla%2f5%2e0%20%28Macintosh%3b%20Intel%20Mac%20OS%20X%2010%2e8%3b%20rv%3a16%2e0%29%20Gecko%2f20100101%20Firefox%2f16%2e0; expires=Sun, 03-Nov-13 13:37:10 GMT; path=/; domain=.bbc.co.uk;" + }, + { + "location": "http://www.bbc.co.uk/" + }, + { + "content-length": "229" + }, + { + "connection": "close" + }, + { + "content-type": "text/html; charset=iso-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "cache-control": "private, max-age=60" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "etag": "\"dfc69d0362a1518353bddd8fa0dcc7cf-49cffe7f817cb754d3241794c0a3e991\"" + }, + { + "x-pal-host": "pal047.cwwtf.bbc.co.uk:80" + }, + { + "content-length": "25186" + }, + { + "date": "Sat, 03 Nov 2012 13:37:11 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "PASS (non-cacheable)" + }, + { + "x-cache-age": "33" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:12 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 15 Oct 2012 10:42:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=900" + }, + { + "expires": "Sat, 03 Nov 2012 13:52:11 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2414" + }, + { + "age": "0" + }, + { + "keep-alive": "timeout=4, max=175" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/x-icon" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Sun, 04 Nov 2012 13:37:12 GMT" + }, + { + "etag": "\"dfc69d0362a1518353bddd8fa0dcc7cf-49cffe7f817cb754d3241794c0a3e991\"" + }, + { + "x-pal-host": "pal047.cwwtf.bbc.co.uk:80" + }, + { + "content-length": "958" + }, + { + "date": "Sat, 03 Nov 2012 13:37:12 GMT" + }, + { + "connection": "Keep-Alive" + }, + { + "x-cache-action": "PASS (non-cacheable)" + }, + { + "x-cache-age": "33" + }, + { + "vary": "X-CDN" + }, + { + "last-modified": "Wed, 28 Jun 2006 14:32:43 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "0" + }, + { + "keep-alive": "timeout=4, max=190" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 05 May 2011 09:15:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4786" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=30845970" + }, + { + "expires": "Sat, 26 Oct 2013 13:56:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "etag": "\"d1a-4af7eb4dd8880\"" + }, + { + "expires": "Tue, 13 Nov 2012 11:52:05 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Mon, 17 Oct 2011 13:37:22 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1227" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "etag": "\"677-4af7eb4bf0400\"" + }, + { + "expires": "Tue, 13 Nov 2012 11:49:51 GMT" + }, + { + "cache-control": "max-age=2592000" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Mon, 17 Oct 2011 13:37:20 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "644" + }, + { + "content-type": "text/css" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:31:55 GMT" + }, + { + "etag": "\"3c9-4cd32b163a8c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:47:52 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "418" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:31:55 GMT" + }, + { + "etag": "\"217-4cd32b163a8c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:48:03 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "211" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:28 GMT" + }, + { + "etag": "\"7316-4cbc5c0a6df00\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:20:52 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5855" + }, + { + "content-type": "text/css" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:33:03 GMT" + }, + { + "etag": "\"714c-4cd32b57141c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:48:07 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5891" + }, + { + "content-type": "text/css" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 16 Nov 2011 15:42:16 GMT" + }, + { + "etag": "\"5ec2-4b1dbf2c82600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:45:35 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7383" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:26 GMT" + }, + { + "etag": "\"41d9-4cbc5c0885a80\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:21:11 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "content-length": "5723" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:32:01 GMT" + }, + { + "etag": "\"9029-4cd32b1bf3640\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:47:52 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "11967" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Mon, 26 Apr 2010 14:22:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "916" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=27418917" + }, + { + "expires": "Mon, 16 Sep 2013 21:59:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 06 Jul 2011 17:14:05 GMT" + }, + { + "etag": "\"20a0c-4a769ba3ff140\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:50:03 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "37892" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:14 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Mon, 26 Apr 2010 14:18:35 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "31308" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=27418893" + }, + { + "expires": "Mon, 16 Sep 2013 21:58:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:14 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://www.googleadservices.com/pagead/p3p.xml\", CP=\"NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "etag": "16031183393755591049" + }, + { + "date": "Sat, 03 Nov 2012 12:45:54 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:45:54 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "server": "cafe" + }, + { + "content-length": "11145" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "3084" + }, + { + "cache-control": "public, max-age=3600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:31:56 GMT" + }, + { + "etag": "\"722a-4cd32b172eb00\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:48:06 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5813" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "302" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "302" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:19 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Tue, 08 May 2012 20:06:18 GMT" + }, + { + "date": "Fri, 02 Nov 2012 14:30:10 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:30:10 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "43" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "83229" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:37:19 GMT" + }, + { + "cache-control": "max-age=86400, private" + }, + { + "expires": "Sun, 04 Nov 2012 13:37:19 GMT" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "x-proc-data": "pd3-bgas02-0" + }, + { + "content-type": "application/javascript;charset=ISO-8859-1" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 03 Oct 2012 14:20:11 GMT" + }, + { + "etag": "\"1fbb-4cb2856215cc0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=2592000" + }, + { + "expires": "Fri, 30 Nov 2012 15:42:45 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3254" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"3fc-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:21:03 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1020" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"bc-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:20:59 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "188" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 27 Sep 2012 10:15:51 GMT" + }, + { + "etag": "\"293-4caac394743c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 03 Oct 2013 09:51:46 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "content-length": "659" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "etag": "\"11e-4caac394743c0\"" + }, + { + "expires": "Thu, 03 Oct 2013 09:51:45 GMT" + }, + { + "cache-control": "max-age=31536000" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 27 Sep 2012 10:15:51 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "286" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "etag": "\"25d-4caac394743c0\"" + }, + { + "expires": "Thu, 03 Oct 2013 09:51:56 GMT" + }, + { + "cache-control": "max-age=31536000" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 27 Sep 2012 10:15:51 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "605" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:32 GMT" + }, + { + "etag": "\"121f4-4cd5e1b17b100\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470349" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:32 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "10750" + }, + { + "content-type": "text/css" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2378" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:19 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Fri, 24 Jun 2011 10:14:39 GMT" + }, + { + "date": "Fri, 02 Nov 2012 22:58:53 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 22:58:53 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "12034" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "52707" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "set-cookie": "s1=50951E1074D40255; expires=Thu, 02-Nov-2017 13:37:20 GMT; path=/; domain=.bbc.co.uk" + }, + { + "location": "http://sa.bbc.co.uk/bbc/bbc/s?name=home.page&ns_m2=yes&ns_setsiteck=50951E1074D40255&geo_edition=int&pal_route=default&ml_name=barlesque&app_type=web&language=en-GB&ml_version=0.14.2&pal_webapp=wwhomepage&bbc_mc=not_set&screen_resolution=1366x768&blq_s=3.5&blq_r=3.5&blq_v=default-worldwide&ns__t=1351949839865&ns_c=UTF-8&ns_ti=BBC%20-%20Homepage&ns_jspageurl=http%3A//www.bbc.co.uk/&ns_referrer=" + }, + { + "content-length": "656" + }, + { + "connection": "close" + }, + { + "content-type": "text/html; charset=iso-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:32 GMT" + }, + { + "etag": "\"608f-4cd5e1b17b100\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470342" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:32 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6150" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"223-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:20:57 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "547" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"89f-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:20:51 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2207" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Mon, 29 Oct 2012 13:32:08 GMT" + }, + { + "etag": "\"11d21-4cd32b22a0600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 31 Oct 2013 08:48:10 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "24284" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "3291" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "last-modified": "Wed, 19 Sep 2012 18:25:49 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:14:11 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:14:11 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "1581" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "62589" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"1b7f-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470341" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7039" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"20a3-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470356" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8355" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"3038-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470335" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "content-length": "12344" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript" + }, + { + "last-modified": "Fri, 07 Sep 2012 16:46:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 10:27:06 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 10:27:06 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "23913" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "11414" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"1ff0-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470356" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8176" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "308" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Mon, 03 Nov 2014 06:54:04 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 06:50:43 GMT" + }, + { + "content-length": "3810" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Fri, 31 Oct 2014 21:56:00 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Wed, 31 Oct 2012 21:51:59 GMT" + }, + { + "content-length": "5049" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Mon, 03 Nov 2014 09:47:13 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 09:31:24 GMT" + }, + { + "content-length": "5071" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Thu, 19 Jul 2012 22:49:47 GMT" + }, + { + "date": "Fri, 02 Nov 2012 22:03:55 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 22:03:55 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "31936" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "56006" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "image/gif" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "cafe" + }, + { + "content-length": "42" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"323-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470350" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "803" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "347" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 06 Jul 2011 17:14:01 GMT" + }, + { + "etag": "\"1a56e-4a769ba02e840\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:50:28 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "30642" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Tue, 30 Oct 2012 14:27:29 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:29:16 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:29:16 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "18065" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "61685" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuB86QsXkGiDUw6LAw6IpFSRlNUwBT4lFpER0UXYGEV+3P4; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:37:21 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas08-1" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Mon, 03 Nov 2014 12:03:34 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:02:09 GMT" + }, + { + "content-length": "13746" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:19:26 GMT" + }, + { + "etag": "\"136-4cd5e1abc2380\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31470294" + }, + { + "expires": "Thu, 31 Oct 2013 17:19:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "content-length": "310" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Mon, 03 Nov 2014 08:07:24 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 08:04:03 GMT" + }, + { + "content-length": "10701" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 02 Nov 2014 11:46:30 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:37:23 GMT" + }, + { + "content-length": "4375" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 02 Nov 2014 03:14:26 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 03:10:05 GMT" + }, + { + "content-length": "3965" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 02 Nov 2014 12:49:53 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 12:39:23 GMT" + }, + { + "content-length": "4844" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:23:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31490899" + }, + { + "expires": "Sat, 02 Nov 2013 13:28:30 GMT" + }, + { + "content-length": "18949" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Fri, 02 Nov 2012 17:01:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 02:00:11 GMT" + }, + { + "content-length": "25085" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:30:25 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=31493423" + }, + { + "expires": "Sat, 02 Nov 2013 14:10:58 GMT" + }, + { + "content-length": "27938" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 02 Nov 2014 05:49:17 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:43:46 GMT" + }, + { + "content-length": "5569" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "server": "Omniture DC/2.0.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "set-cookie": "s_vi=[CS]v1|284A8F0905160D8B-600001A1C0108CD4[CE]; Expires=Thu, 2 Nov 2017 13:37:22 GMT; Domain=sa.bbc.com; Path=/" + }, + { + "location": "http://sa.bbc.com/b/ss/bbcwglobalprod/1/H.22.1/s0268806509673?AQB=1&pccr=true&vidn=284A8F0905160D8B-600001A1C0108CD4&&ndh=1&t=3%2F10%2F2012%209%3A37%3A21%206%20240&vmt=4F9A739C&vmf=bbc.112.2o7.net&ce=UTF-8&cdp=3&pageName=bbc%20%7C%20homepage&g=http%3A%2F%2Fwww.bbc.co.uk%2F&cc=USD&ch=homepage&events=event2&h1=bbc%7Chomepage&v2=D%3DpageName&c5=INDEX&v5=D%3Dc5&c6=homepage&v6=D%3Dc6&c11=saturday%7C1%3A30pm&c15=%2F&v15=D%3Dc15&c17=bbc%20%7C%20homepage&v17=D%3Dc17&c31=HTML&v31=D%3Dc31&c32=Not%20available&v32=D%3Dc32&v49=Direct%20Load&c53=www.bbc.co.uk&v53=D%3Dc53&c54=http%3A%2F%2Fwww.bbc.co.uk&v54=D%3Dc54&c55=bbc.com&v55=D%3Dc55&c56=D%3DpageName&v56=D%3Dc56&c57=yes&v57=D%3Dc57&c62=wpp%7Cldb%7Cm08%7Cm2l%7Cm6i%7Cm1f%7Cmpu%7Cm29%7Cm4t%7Cm80&v62=D%3Dc62&s=1366x768&c=24&j=1.7&v=Y&k=Y&bw=994&bh=649&p=Java%20Applet%20Plug-in%3BQuickTime%20Plug-in%207.7.1%3B&AQE=1" + }, + { + "x-c": "ms-4.4.9" + }, + { + "expires": "Fri, 02 Nov 2012 13:37:22 GMT" + }, + { + "last-modified": "Sun, 04 Nov 2012 13:37:22 GMT" + }, + { + "cache-control": "no-cache, no-store, max-age=0, no-transform, private" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA OUR IND COM NAV STA\"" + }, + { + "xserver": "www614" + }, + { + "content-length": "0" + }, + { + "keep-alive": "timeout=15" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/plain" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 04 Nov 2012 09:02:56 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 09:46:49 GMT" + }, + { + "content-length": "2041" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"c82a-4cd8003bbf440\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 04 Nov 2012 09:34:34 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:33:07 GMT" + }, + { + "content-length": "5173" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"3ca55-4cd817fe482c0\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "server": "Omniture DC/2.0.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "set-cookie": "s_vi=[CS]v1|284A8F0905160D8B-600001A1C0108CD4[CE]; Expires=Thu, 2 Nov 2017 13:37:22 GMT; Domain=sa.bbc.com; Path=/" + }, + { + "location": "http://sa.bbc.com/b/ss/bbcwglobalprod/1/H.22.1/s0268806509673?AQB=1&pccr=true&vidn=284A8F0905160D8B-600001A1C0108CD4&&ndh=1&t=3%2F10%2F2012%209%3A37%3A21%206%20240&vmt=4F9A739C&vmf=bbc.112.2o7.net&ce=UTF-8&cdp=3&pageName=bbc%20%7C%20homepage&g=http%3A%2F%2Fwww.bbc.co.uk%2F&cc=USD&ch=homepage&events=event2&h1=bbc%7Chomepage&v2=D%3DpageName&c5=INDEX&v5=D%3Dc5&c6=homepage&v6=D%3Dc6&c11=saturday%7C1%3A30pm&c15=%2F&v15=D%3Dc15&c17=bbc%20%7C%20homepage&v17=D%3Dc17&c31=HTML&v31=D%3Dc31&c32=Not%20available&v32=D%3Dc32&v49=Direct%20Load&c53=www.bbc.co.uk&v53=D%3Dc53&c54=http%3A%2F%2Fwww.bbc.co.uk&v54=D%3Dc54&c55=bbc.com&v55=D%3Dc55&c56=D%3DpageName&v56=D%3Dc56&c57=yes&v57=D%3Dc57&c62=wpp%7Cldb%7Cm08%7Cm2l%7Cm6i%7Cm1f%7Cmpu%7Cm29%7Cm4t%7Cm80&v62=D%3Dc62&s=1366x768&c=24&j=1.7&v=Y&k=Y&bw=994&bh=649&p=Java%20Applet%20Plug-in%3BQuickTime%20Plug-in%207.7.1%3B&AQE=1" + }, + { + "x-c": "ms-4.4.9" + }, + { + "expires": "Fri, 02 Nov 2012 13:37:22 GMT" + }, + { + "last-modified": "Sun, 04 Nov 2012 13:37:22 GMT" + }, + { + "cache-control": "no-cache, no-store, max-age=0, no-transform, private" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA OUR IND COM NAV STA\"" + }, + { + "xserver": "www620" + }, + { + "content-length": "43" + }, + { + "keep-alive": "timeout=15" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + }, + { + "etag": "\"50951E12-5F83-53505C0B\"" + }, + { + "vary": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:24:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31480349" + }, + { + "expires": "Sat, 02 Nov 2013 10:32:40 GMT" + }, + { + "content-length": "34963" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Tue, 23 Oct 2012 19:51:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=86400" + }, + { + "expires": "Sun, 04 Nov 2012 03:52:27 GMT" + }, + { + "content-length": "16335" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"4627f-4ccbf4cca7880\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Sat, 17 Nov 2012 13:37:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "content-length": "1140" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-transform, max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Omniture DC/2.0.0" + }, + { + "last-modified": "Mon, 09 Jul 2012 16:00:20 GMT" + }, + { + "etag": "\"115240-38-b5f12d00\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "56" + }, + { + "cache-control": "max-age=7776000" + }, + { + "expires": "Sun, 07 Oct 2012 17:35:44 GMT" + }, + { + "xserver": "www465" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:25:41 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=31535948" + }, + { + "expires": "Sun, 03 Nov 2013 01:59:43 GMT" + }, + { + "content-length": "41157" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Fri, 12 Oct 2012 15:49:09 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31535796" + }, + { + "expires": "Fri, 01 Nov 2013 04:08:52 GMT" + }, + { + "content-length": "43495" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=63072000" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Mon, 03 Nov 2014 11:29:44 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:15:24 GMT" + }, + { + "content-length": "83456" + }, + { + "date": "Sat, 03 Nov 2012 13:37:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:57:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=86400" + }, + { + "expires": "Sun, 04 Nov 2012 11:13:50 GMT" + }, + { + "content-length": "18324" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"8c10d-4cd6f66d2d640\"" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Tue, 30 Oct 2012 15:44:45 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=86400" + }, + { + "expires": "Sat, 03 Nov 2012 18:39:25 GMT" + }, + { + "content-length": "24118" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"bae19-4cd48aa479540\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.7d" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 04 Nov 2012 08:01:50 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 26 Oct 2012 21:25:25 GMT" + }, + { + "content-length": "21999" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"8cfa9-4ccfcf53bbb40\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 04 Nov 2012 01:27:36 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 12 Oct 2012 19:32:42 GMT" + }, + { + "content-length": "29003" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"b3983-4cbe1c0594a80\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sun, 04 Nov 2012 10:14:22 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:56:52 GMT" + }, + { + "content-length": "28742" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"9b7c0-4cd6f64243100\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=31457054" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sat, 02 Nov 2013 12:04:47 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 11:57:38 GMT" + }, + { + "content-length": "24526" + }, + { + "date": "Sat, 03 Nov 2012 13:37:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"3ca55-4cd817fe482c0\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "cache-control": "max-age=86400" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Sat, 03 Nov 2012 17:24:54 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Fri, 02 Nov 2012 14:40:40 GMT" + }, + { + "content-length": "45064" + }, + { + "date": "Sat, 03 Nov 2012 13:37:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "etag": "\"fcf54-4cd841e9faa00\"" + }, + { + "accept-ranges": "bytes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Mon, 29 Oct 2012 03:17:34 GMT" + }, + { + "server": "collection8" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "public, max-age=604800" + }, + { + "date": "Sat, 03 Nov 2012 13:37:23 GMT" + }, + { + "content-length": "5450" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:24 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=848381a268c12381e2d991b8bfad50951e1458d396-6634083950951e14834_3366; expires=Sat, 03-Nov-2012 14:07:24 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 12 Jul 2011 16:02:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "928" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=27418899" + }, + { + "expires": "Mon, 16 Sep 2013 21:59:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:27 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:26:47 GMT" + }, + { + "cache-control": "max-age=62707765" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "3417" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:16 GMT" + }, + { + "content-length": "2419" + }, + { + "cache-control": "max-age=62707751" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:16 GMT" + }, + { + "content-length": "1281" + }, + { + "cache-control": "max-age=62707783" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:28 GMT" + }, + { + "cache-control": "max-age=62707813" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "56" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 18 Nov 2009 12:17:02 GMT" + }, + { + "content-length": "1275" + }, + { + "cache-control": "max-age=345600" + }, + { + "expires": "Wed, 07 Nov 2012 13:37:29 GMT" + }, + { + "vary": "X-CDN" + }, + { + "access-control-allow-origin": "*" + }, + { + "keep-alive": "timeout=5, max=778" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 12 Oct 2012 09:35:09 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:37:29 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css" + }, + { + "content-length": "941" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 22 Nov 2011 09:50:32 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1409" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=33813709" + }, + { + "expires": "Fri, 29 Nov 2013 22:19:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 22 Nov 2011 09:39:54 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3436" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=33814374" + }, + { + "expires": "Fri, 29 Nov 2013 22:30:23 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 22 Nov 2011 09:31:26 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "348" + }, + { + "cache-control": "max-age=33076455" + }, + { + "expires": "Thu, 21 Nov 2013 09:31:44 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 11:26:22 GMT" + }, + { + "content-length": "3667" + }, + { + "cache-control": "max-age=53347413" + }, + { + "expires": "Mon, 14 Jul 2014 00:21:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 11:26:27 GMT" + }, + { + "content-length": "1999" + }, + { + "cache-control": "max-age=53214541" + }, + { + "expires": "Sat, 12 Jul 2014 11:26:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "301" + }, + { + "server": "Apache" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "location": "http://emp.bbci.co.uk/emp/releases/bump/revisions/905298/embed.js?emp=worldwide&enableClear=1" + }, + { + "content-length": "305" + }, + { + "cache-control": "max-age=211" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:21 GMT" + }, + { + "cache-control": "max-age=62707796" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "303" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:37 GMT" + }, + { + "content-length": "4740" + }, + { + "cache-control": "max-age=62707822" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:37:27 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/html" + }, + { + "content-length": "91216" + }, + { + "date": "Sat, 03 Nov 2012 13:37:27 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 09 Oct 2012 17:14:09 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:37:29 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "446" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 28 Jul 2010 11:07:36 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8432" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=33813771" + }, + { + "expires": "Fri, 29 Nov 2013 22:20:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:23 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2234" + }, + { + "content-type": "text/css" + }, + { + "cache-control": "max-age=53344068" + }, + { + "expires": "Sun, 13 Jul 2014 23:25:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 23 Oct 2012 07:38:38 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1657" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "max-age=62100138" + }, + { + "expires": "Thu, 23 Oct 2014 07:39:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03 Nov 2012 02:43:33 GMT" + }, + { + "content-length": "5496" + }, + { + "cache-control": "max-age=63033059" + }, + { + "expires": "Mon, 03 Nov 2014 02:48:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/gif" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:02:09 GMT" + }, + { + "content-length": "4994" + }, + { + "cache-control": "max-age=63062731" + }, + { + "expires": "Mon, 03 Nov 2014 11:03:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "server": "Apache" + }, + { + "set-cookie": "BGUID=65e0995521ce0199c628d193f15847bbfbb0331236b8ab2579e9db3ae85993f0; expires=Wed, 02-Nov-16 13:37:29 GMT; path=/; domain=bbc.co.uk;" + }, + { + "last-modified": "Wed, 01 Mar 2006 15:13:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "cache-control": "max-age=0, no-cache=Set-Cookie" + }, + { + "expires": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "keep-alive": "timeout=10, max=182" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "application/x-javascript" + }, + { + "location": "http://emp.bbci.co.uk/emp/releases/bump/revisions/905298/embed.js?emp=worldwide&enableClear=1" + }, + { + "content-length": "2628" + }, + { + "cache-control": "max-age=166" + }, + { + "expires": "Sat, 03 Nov 2012 13:40:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Wed, 11 Jul 2012 23:13:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:21:03 GMT" + }, + { + "cache-control": "max-age=63024342" + }, + { + "expires": "Mon, 03 Nov 2014 00:23:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "3624" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:21:28 GMT" + }, + { + "content-length": "4643" + }, + { + "cache-control": "max-age=63024320" + }, + { + "expires": "Mon, 03 Nov 2014 00:22:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:54 GMT" + }, + { + "content-length": "9275" + }, + { + "cache-control": "max-age=62711088" + }, + { + "expires": "Thu, 30 Oct 2014 09:22:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:55 GMT" + }, + { + "cache-control": "max-age=62711138" + }, + { + "expires": "Thu, 30 Oct 2014 09:23:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "11982" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:29:54 GMT" + }, + { + "content-length": "5363" + }, + { + "cache-control": "max-age=63064402" + }, + { + "expires": "Mon, 03 Nov 2014 11:30:52 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"3ff-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:22:26 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1023" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:34:55 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5633" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=63025209" + }, + { + "expires": "Mon, 03 Nov 2014 00:37:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 07 Mar 2012 10:43:47 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7269" + }, + { + "cache-control": "max-age=43235623" + }, + { + "expires": "Tue, 18 Mar 2014 23:31:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:20:54 GMT" + }, + { + "cache-control": "max-age=62707524" + }, + { + "expires": "Thu, 30 Oct 2014 08:22:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:29 GMT" + }, + { + "content-length": "34395" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:57 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "24217" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=62711138" + }, + { + "expires": "Thu, 30 Oct 2014 09:23:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 31 Oct 2012 15:48:27 GMT" + }, + { + "content-length": "20316" + }, + { + "cache-control": "max-age=63051888" + }, + { + "expires": "Mon, 03 Nov 2014 08:02:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 12 Jul 2011 15:59:09 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "31310" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=27418847" + }, + { + "expires": "Mon, 16 Sep 2013 21:58:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 12 Jul 2011 15:59:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "31708" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=27418799" + }, + { + "expires": "Mon, 16 Sep 2013 21:57:31 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 10:02:19 GMT" + }, + { + "cache-control": "max-age=53347291" + }, + { + "expires": "Mon, 14 Jul 2014 00:19:05 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:34 GMT" + }, + { + "content-length": "358" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 12 Jul 2011 15:59:09 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5794" + }, + { + "content-type": "text/css" + }, + { + "cache-control": "max-age=27418850" + }, + { + "expires": "Mon, 16 Sep 2013 21:58:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:34 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 10:02:20 GMT" + }, + { + "cache-control": "max-age=53394356" + }, + { + "expires": "Mon, 14 Jul 2014 13:23:31 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:35 GMT" + }, + { + "content-length": "3759" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 26 Apr 2012 15:23:19 GMT" + }, + { + "etag": "\"453b-4be96914da7c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:52:07 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3403" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:35 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 10:02:24 GMT" + }, + { + "cache-control": "max-age=53487765" + }, + { + "expires": "Tue, 15 Jul 2014 15:20:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:35 GMT" + }, + { + "content-length": "6382" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:55 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1304" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "max-age=62711132" + }, + { + "expires": "Thu, 30 Oct 2014 09:23:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:37 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:37 GMT" + }, + { + "server": "Apache" + }, + { + "etag": "\"392d4eaba4ddbcf7bb408352be465c19\"" + }, + { + "cache-control": "max-age=1728000, private" + }, + { + "x-lb-nocache": "true" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "286" + }, + { + "keep-alive": "timeout=45" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:54 GMT" + }, + { + "cache-control": "max-age=62711099" + }, + { + "expires": "Thu, 30 Oct 2014 09:22:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:37 GMT" + }, + { + "content-length": "5788" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2410" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Thu, 19 Apr 2012 16:34:19 GMT" + }, + { + "date": "Fri, 02 Nov 2012 23:06:55 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 23:06:55 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "9836" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "52243" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:37 GMT" + }, + { + "server": "Apache" + }, + { + "etag": "\"392d4eaba4ddbcf7bb408352be465c19\"" + }, + { + "cache-control": "private, max-age=30" + }, + { + "x-lb-nocache": "true" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "47" + }, + { + "keep-alive": "timeout=45" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "327" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:22 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "970" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "max-age=52968695" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:13 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:21 GMT" + }, + { + "content-length": "126" + }, + { + "cache-control": "max-age=52968716" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:16 GMT" + }, + { + "cache-control": "max-age=62707784" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:22 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "content-length": "3595" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:26:49 GMT" + }, + { + "content-length": "1859" + }, + { + "cache-control": "max-age=62707757" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "301" + }, + { + "server": "Apache" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "location": "http://emp.bbci.co.uk/emp/releases/worldwide/revisions/749603_749269_749444_6/embed.js?mediaset=journalism-pc" + }, + { + "content-length": "317" + }, + { + "cache-control": "max-age=160" + }, + { + "expires": "Sat, 03 Nov 2012 13:40:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Wed, 11 Jul 2012 23:13:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 30 Oct 2012 09:22:54 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1014" + }, + { + "cache-control": "max-age=62711082" + }, + { + "expires": "Thu, 30 Oct 2014 09:22:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "application/x-javascript" + }, + { + "location": "http://emp.bbci.co.uk/emp/releases/worldwide/revisions/749603_749269_749444_6/embed.js?mediaset=journalism-pc" + }, + { + "content-length": "6090" + }, + { + "cache-control": "max-age=167" + }, + { + "expires": "Sat, 03 Nov 2012 13:40:26 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:39 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 18 Sep 2012 12:56:25 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Thu, 11 Oct 2012 10:08:24 GMT" + }, + { + "etag": "\"adb-4cbc5c069d600\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Thu, 24 Oct 2013 08:21:42 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2779" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + }, + { + "server": "cafe" + }, + { + "cache-control": "private" + }, + { + "content-length": "1545" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2506" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Tue, 15 Feb 2011 16:39:27 GMT" + }, + { + "etag": "\"6414-49c54cec44dc0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:49:13 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7619" + }, + { + "content-type": "application/javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:37:39 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Fri, 12 Oct 2012 20:42:56 GMT" + }, + { + "date": "Fri, 02 Nov 2012 15:05:54 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 15:05:54 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "37317" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "81106" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "327" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:22 GMT" + }, + { + "cache-control": "max-age=52968720" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "content-length": "36830" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-length": "359" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "530" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:26:46 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4729" + }, + { + "content-type": "image/png" + }, + { + "cache-control": "max-age=62707754" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:33 GMT" + }, + { + "content-length": "130" + }, + { + "cache-control": "max-age=62707807" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:40 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Nov 2014 13:37:38 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "81990" + }, + { + "date": "Sat, 03 Nov 2012 13:37:38 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + }, + { + "last-modified": "Wed, 26 Sep 2012 09:35:41 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "nginx/1.2.0" + }, + { + "date": "Sat, 03 Nov 2012 13:37:43 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "close" + }, + { + "location": "http://ad-emea.doubleclick.net/adj/N2581.122656.2214702362621/B6422491.8;sz=120x30;click0=http://ad.doubleclick.net/click%3Bh%3Dv8/3d22/3/0/%2a/q%3B264679025%3B0-0%3B1%3B49066565%3B47-120/30%3B47423100/47438653/1%3B%3B%7Eokv%3D%3Bslot%3Dpartner_button1%3Bsz%3D120x30%3Bsectn%3Dnews%3Bctype%3Dcontent%3Bnews%3Damerica%3Breferrer%3D%3Bdomain%3Dwww.bbc.co.uk%3Breferrer_domain%3Dwww.bbc.co.uk%3Brsi%3D%3Bheadline%3Dromneypromisesus%2527realchang%3B%7Esscs%3D%3f;ord=835861?" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/1.2.0" + }, + { + "date": "Sat, 03 Nov 2012 13:37:43 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "483" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Tue, 15 May 2012 22:04:59 GMT" + }, + { + "date": "Fri, 02 Nov 2012 16:00:52 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 16:00:52 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "4146" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "77812" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Fri, 11 Mar 2011 22:15:34 GMT" + }, + { + "date": "Fri, 02 Nov 2012 19:51:36 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 19:51:36 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "3834" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "63968" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "326" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "212" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuB86QsXkGiDUw6LAw6IpFSRlNUwBT4lFpGQscUZ2EV0HP8; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:37:44 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas06-9" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=1de6548e4a0d3e45a7c991b8bfad50951e1458d396-6634083950951e28834_3366; expires=Sat, 03-Nov-2012 14:07:44 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:37:50 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "188" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "age": "245581" + }, + { + "date": "Sat, 03 Nov 2012 13:37:45 GMT" + }, + { + "last-modified": "Mon, 14 Nov 2011 18:32:16 GMT" + }, + { + "content-length": "4442" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:50 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "4449" + }, + { + "set-cookie": "cid=6f010485-f507-4a4e-a485-feb7619db013; domain=.adfusion.com; expires=Wed, 01-Jan-2020 06:00:00 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/gif" + }, + { + "age": "73519" + }, + { + "date": "Sat, 03 Nov 2012 13:37:45 GMT" + }, + { + "last-modified": "Fri, 20 Apr 2012 15:50:57 GMT" + }, + { + "content-length": "1709" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "age": "172785" + }, + { + "date": "Sat, 03 Nov 2012 13:37:45 GMT" + }, + { + "last-modified": "Wed, 22 Aug 2012 17:58:48 GMT" + }, + { + "content-length": "4036" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/jpeg" + }, + { + "age": "120980" + }, + { + "date": "Sat, 03 Nov 2012 13:37:45 GMT" + }, + { + "last-modified": "Fri, 02 Dec 2011 21:51:59 GMT" + }, + { + "content-length": "4919" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:22 GMT" + }, + { + "cache-control": "max-age=52968714" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + }, + { + "content-length": "1128" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 12 Jul 2011 15:59:12 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "207" + }, + { + "content-type": "image/png" + }, + { + "cache-control": "max-age=27418929" + }, + { + "expires": "Mon, 16 Sep 2013 21:59:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 26 Oct 2012 19:57:24 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "26021" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62403629" + }, + { + "expires": "Sun, 26 Oct 2014 19:58:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:45 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "max-age=300, public, s-maxage=120" + }, + { + "content-type": "application/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:28 GMT" + }, + { + "keep-alive": "timeout=5, max=852" + }, + { + "expires": "Sat, 03 Nov 2012 13:42:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8550-4c7d8d79b86c0\"" + }, + { + "last-modified": "Wed, 22 Aug 2012 11:14:11 GMT" + }, + { + "content-length": "12181" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 22 Aug 2012 11:14:13 GMT" + }, + { + "etag": "\"31a9-4c7d8d7ba0b40\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=300, public, s-maxage=120" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2364" + }, + { + "content-type": "text/css" + }, + { + "date": "Sat, 03 Nov 2012 13:37:46 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "application/json;charset=UTF-8" + }, + { + "access-control-allow-origin": "*" + }, + { + "access-control-allow-methods": "POST, GET, PUT, OPTIONS" + }, + { + "access-control-allow-headers": "Content-Type, X-Requested-With, *" + }, + { + "content-length": "117" + }, + { + "cache-control": "max-age=0" + }, + { + "date": "Sat, 03 Nov 2012 13:37:47 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "last-modified": "Wed, 22 Aug 2012 11:14:08 GMT" + }, + { + "etag": "\"212e-4c7d8d76dc000\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=31536000" + }, + { + "expires": "Tue, 17 Sep 2013 11:50:39 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8494" + }, + { + "content-type": "image/png" + }, + { + "date": "Sat, 03 Nov 2012 13:37:47 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:57 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:23 GMT" + }, + { + "cache-control": "max-age=52968675" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:57 GMT" + }, + { + "content-length": "126" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "575" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "location": "http://mp.apmebf.com/ad/fm/13001-83639-22765-1?mpt=853079&mpvc=http://ad.doubleclick.net/click%3Bh%3Dv8/3d22/3/0/%2a/v%3B264640753%3B0-0%3B0%3B73659506%3B3454-728/90%3B47524155/47539673/1%3B%3B%7Eokv%3D%3Bslot%3Dleaderboard%3Bsz%3D728x90%2C970x66%2C970x90%2C970x250%3Bsectn%3Dnews%3Bctype%3Dcontent%3Bnews%3Dworld%3Breferrer%3Dnewsworlduscanada20104929%3Bdomain%3Dwww.bbc.co.uk%3Breferrer_domain%3Dwww.bbc.co.uk%3Brsi%3D%3Bheadline%3Dbombkillspakistanipolitician%3B%7Esscs%3D%3f&host=altfarm.mediaplex.com" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 01 Mar 2006 15:13:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "cache-control": "max-age=0, no-cache=Set-Cookie" + }, + { + "expires": "Sat, 03 Nov 2012 13:37:58 GMT" + }, + { + "keep-alive": "timeout=10, max=176" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "341" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + }, + { + "server": "cafe" + }, + { + "cache-control": "private" + }, + { + "content-length": "1387" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 06:50:47 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4705" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=63047620" + }, + { + "expires": "Mon, 03 Nov 2014 06:51:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR PSAo PSDo OUR IND UNI COM NAV\"" + }, + { + "set-cookie": "S=g14vo-413-1351949879145-ya; domain=.apmebf.com; path=/; expires=Mon, 03-Nov-2014 13:37:59 GMT" + }, + { + "location": "http://altfarm.mediaplex.com/ad/fm/13001-83639-22765-1?mpt=853079&mpvc=http://ad.doubleclick.net/click%3Bh%3Dv8/3d22/3/0/%2a/v%3B264640753%3B0-0%3B0%3B73659506%3B3454-728/90%3B47524155/47539673/1%3B%3B%7Eokv%3D%3Bslot%3Dleaderboard%3Bsz%3D728x90%2C970x66%2C970x90%2C970x250%3Bsectn%3Dnews%3Bctype%3Dcontent%3Bnews%3Dworld%3Breferrer%3Dnewsworlduscanada20104929%3Bdomain%3Dwww.bbc.co.uk%3Breferrer_domain%3Dwww.bbc.co.uk%3Brsi%3D%3Bheadline%3Dbombkillspakistanipolitician%3B%7Esscs%3D%3f&no_cj_c=1&upsid=545485072431" + }, + { + "content-length": "711" + }, + { + "keep-alive": "timeout=5" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html; charset=iso-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "cache-control": "no-store" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR PSAo PSDo OUR IND UNI COM NAV\"" + }, + { + "set-cookie": "mojo3=13001:22765; expires=Sun, 2-Nov-2014 16:28:10 GMT; path=/; domain=.mediaplex.com;" + }, + { + "location": "http://img.mediaplex.com/content/0/13001/728x90_090512_MVT_Standard.html?mpck=altfarm.mediaplex.com%2Fad%2Fck%2F13001-83639-22765-1%3Fmpt%3D853079&mpt=853079&mpvc=http://ad.doubleclick.net/click%3Bh%3Dv8/3d22/3/0/%2a/v%3B264640753%3B0-0%3B0%3B73659506%3B3454-728/90%3B47524155/47539673/1%3B%3B%7Eokv%3D%3Bslot%3Dleaderboard%3Bsz%3D728x90%2C970x66%2C970x90%2C970x250%3Bsectn%3Dnews%3Bctype%3Dcontent%3Bnews%3Dworld%3Breferrer%3Dnewsworlduscanada20104929%3Bdomain%3Dwww.bbc.co.uk%3Breferrer_domain%3Dwww.bbc.co.uk%3Brsi%3D%3Bheadline%3Dbombkillspakistanipolitician%3B%7Esscs%3D%3f" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 09 Oct 2012 13:34:50 GMT" + }, + { + "etag": "\"a5f202-357-4cba066fe7280\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "1285" + }, + { + "keep-alive": "timeout=5" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2518" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "339" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03 Nov 2012 11:26:09 GMT" + }, + { + "cache-control": "max-age=63064269" + }, + { + "expires": "Mon, 03 Nov 2014 11:29:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:58 GMT" + }, + { + "content-length": "18429" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "332" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-length": "332" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "339" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:37:55 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/html" + }, + { + "content-length": "84226" + }, + { + "date": "Sat, 03 Nov 2012 13:37:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "expires": "Sat Nov 03 13:37:59 UTC 2012" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "1273" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "212" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:38:05 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "188" + }, + { + "set-cookie": "cid=6f010485-f507-4a4e-a485-feb7619db013; domain=.adfusion.com; expires=Wed, 01-Jan-2020 06:00:00 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuB86QsXkGiDUw6LAw6IpFSRlNUwBT4lNpFQ0QUg4OfFcQQ1VXgXlFGVpIpliI6eB4eKxBjZB19azY=; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:38:00 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas01-1" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "expires": "Sat Nov 03 13:37:59 UTC 2012" + }, + { + "content-encoding": "gzip" + }, + { + "p3p": "CP=\"NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "content-type": "text/html" + }, + { + "content-length": "7375" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:05 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "4449" + }, + { + "set-cookie": "cid=6f010485-f507-4a4e-a485-feb7619db013; domain=.adfusion.com; expires=Wed, 01-Jan-2020 06:00:00 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "56812" + }, + { + "connection": "keep-alive" + }, + { + "date": "Sat, 03 Nov 2012 12:45:03 GMT" + }, + { + "server": "Apache/2.2.3 (CentOS)" + }, + { + "last-modified": "Sat, 18 Aug 2012 06:04:35 GMT" + }, + { + "etag": "\"5d0aba4-ddec-4c7840d06c2c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=3600" + }, + { + "expires": "Sat, 03 Nov 2012 13:45:03 GMT" + }, + { + "x-permitted-cross-domain-policies": "all" + }, + { + "age": "3177" + }, + { + "x-amz-cf-id": "Nqvl7hdh1ZID-spjM3MSj_rmvJrOblt2qYh9QKaP4AUq-J79-UBaKg==" + }, + { + "via": "1.0 f9710778d388f0645feb35b6ec48d316.cloudfront.net (CloudFront)" + }, + { + "x-cache": "Hit from cloudfront" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:00 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=51bfcbb530581eaf84e991b8bfad50951e1458d396-6634083950951e38834_3366; expires=Sat, 03-Nov-2012 14:08:00 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:37:59 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "application/json;charset=UTF-8" + }, + { + "access-control-allow-origin": "*" + }, + { + "access-control-allow-methods": "POST, GET, PUT, OPTIONS" + }, + { + "access-control-allow-headers": "Content-Type, X-Requested-With, *" + }, + { + "content-length": "111" + }, + { + "cache-control": "max-age=31" + }, + { + "date": "Sat, 03 Nov 2012 13:38:00 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:27:19 GMT" + }, + { + "cache-control": "max-age=62707764" + }, + { + "expires": "Thu, 30 Oct 2014 08:27:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:06 GMT" + }, + { + "content-length": "297" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:06 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 01 Mar 2006 15:13:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "cache-control": "max-age=0, no-cache=Set-Cookie" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:06 GMT" + }, + { + "keep-alive": "timeout=10, max=162" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 10:02:19 GMT" + }, + { + "cache-control": "max-age=53487737" + }, + { + "expires": "Tue, 15 Jul 2014 15:20:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "content-length": "7969" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 16:22:37 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4852" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62995766" + }, + { + "expires": "Sun, 02 Nov 2014 16:27:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 23:13:05 GMT" + }, + { + "content-length": "6548" + }, + { + "cache-control": "max-age=63020343" + }, + { + "expires": "Sun, 02 Nov 2014 23:17:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 08:04:19 GMT" + }, + { + "cache-control": "max-age=62880339" + }, + { + "expires": "Sat, 01 Nov 2014 08:23:46 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "content-length": "4144" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 14:00:52 GMT" + }, + { + "content-length": "3761" + }, + { + "cache-control": "max-age=62901025" + }, + { + "expires": "Sat, 01 Nov 2014 14:08:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Thu, 01 Nov 2012 18:22:05 GMT" + }, + { + "content-length": "6600" + }, + { + "cache-control": "max-age=62916820" + }, + { + "expires": "Sat, 01 Nov 2014 18:31:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "454" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 14:39:26 GMT" + }, + { + "content-length": "6851" + }, + { + "cache-control": "max-age=62989321" + }, + { + "expires": "Sun, 02 Nov 2014 14:40:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 25 Oct 2012 11:27:56 GMT" + }, + { + "content-length": "5411" + }, + { + "cache-control": "max-age=62320782" + }, + { + "expires": "Sat, 25 Oct 2014 20:57:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "location": "http://img.mediaplex.com/content/0/18916/LT_XML_RateTable_ScrollingHeadline_PurpleArrows_RecordLows_728x90_050112.js?mpck=altfarm.mediaplex.com%2Fad%2Fck%2F18916-133472-32866-8%3Fmpt%3D862767&mpt=862767&mpvc=http://ad.doubleclick.net/click%3Bh%3Dv8/3d22/3/0/%2a/o%3B264441578%3B0-0%3B0%3B19196826%3B3454-728/90%3B49903581/49895429/1%3B%3B%7Eokv%3D%3Bslot%3Dleaderboard%3Bsz%3D728x90%2C970x66%2C970x90%2C970x250%3Bsectn%3Dnews%3Bctype%3Dindex%3Bnews%3Dworld%3Breferrer%3Dnewsworldasia20190337%3Bdomain%3Dwww.bbc.co.uk%3Breferrer_domain%3Dwww.bbc.co.uk%3Brsi%3DJ08781_10132%3Brsi%3DJ08781_10628%3B%7Esscs%3D%3f" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "cache-control": "no-store" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR PSAo PSDo OUR IND UNI COM NAV\"" + }, + { + "set-cookie": "mojo3=18916:32866/13001:22765; expires=Sun, 2-Nov-2014 16:53:09 GMT; path=/; domain=.mediaplex.com;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 01 May 2012 19:15:40 GMT" + }, + { + "etag": "\"2119c1-1526-4befe65754f00\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "6980" + }, + { + "keep-alive": "timeout=5" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:05 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/html" + }, + { + "content-length": "90666" + }, + { + "date": "Sat, 03 Nov 2012 13:38:05 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 19 Oct 2011 07:28:39 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "18359" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=52349338" + }, + { + "expires": "Wed, 02 Jul 2014 11:07:05 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 18:19:24 GMT" + }, + { + "cache-control": "max-age=63002534" + }, + { + "expires": "Sun, 02 Nov 2014 18:20:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "content-length": "5791" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 09:30:47 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5035" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=63057300" + }, + { + "expires": "Mon, 03 Nov 2014 09:33:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 06:55:42 GMT" + }, + { + "cache-control": "max-age=62961571" + }, + { + "expires": "Sun, 02 Nov 2014 06:57:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "content-length": "6266" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Wed, 31 Oct 2012 15:53:37 GMT" + }, + { + "content-length": "4757" + }, + { + "cache-control": "max-age=62820986" + }, + { + "expires": "Fri, 31 Oct 2014 15:54:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 09:01:42 GMT" + }, + { + "cache-control": "max-age=62882710" + }, + { + "expires": "Sat, 01 Nov 2014 09:03:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "content-length": "5396" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:09:30 GMT" + }, + { + "content-length": "4759" + }, + { + "cache-control": "max-age=62965934" + }, + { + "expires": "Sun, 02 Nov 2014 08:10:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:24:17 GMT" + }, + { + "content-length": "3202" + }, + { + "cache-control": "max-age=62989607" + }, + { + "expires": "Sun, 02 Nov 2014 14:44:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 13:01:25 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4022" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62983627" + }, + { + "expires": "Sun, 02 Nov 2014 13:05:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 08:54:55 GMT" + }, + { + "cache-control": "max-age=62970180" + }, + { + "expires": "Sun, 02 Nov 2014 09:21:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "content-length": "4853" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 01 Nov 2012 13:44:04 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3289" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "max-age=62901702" + }, + { + "expires": "Sat, 01 Nov 2014 14:19:50 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 16:55:01 GMT" + }, + { + "content-length": "7105" + }, + { + "cache-control": "max-age=62911093" + }, + { + "expires": "Sat, 01 Nov 2014 16:56:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 14 Sep 2012 07:57:36 GMT" + }, + { + "cache-control": "max-age=58732357" + }, + { + "expires": "Sun, 14 Sep 2014 08:10:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "content-length": "3960" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Tue, 21 Aug 2012 07:36:37 GMT" + }, + { + "content-length": "3948" + }, + { + "cache-control": "max-age=56656721" + }, + { + "expires": "Thu, 21 Aug 2014 07:36:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 09 Mar 2006 21:32:31 GMT" + }, + { + "etag": "\"9f40d-3a-40e969d2259c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "content-length": "63" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 05 Mar 2012 12:15:23 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "59958" + }, + { + "cache-control": "max-age=42071869" + }, + { + "expires": "Wed, 05 Mar 2014 12:15:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "text/javascript" + }, + { + "pragma": "" + }, + { + "content-length": "479" + }, + { + "cache-control": "max-age=30" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2493" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "321" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-length": "363" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "212" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:38:14 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "188" + }, + { + "set-cookie": "cid=6f010485-f507-4a4e-a485-feb7619db013; domain=.adfusion.com; expires=Wed, 01-Jan-2020 06:00:00 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:14 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "P3P - policyref=\"http://www.adfusion.com/w3c/adfusion.xml\", CP=\"NON DSP COR CURa TIA\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.adfusion.com/AdServer/default.aspx?e=i&lid=10641&ct=" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "-1" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-length": "4449" + }, + { + "set-cookie": "cid=6f010485-f507-4a4e-a485-feb7619db013; domain=.adfusion.com; expires=Wed, 01-Jan-2020 06:00:00 GMT; path=/" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "server": "cafe" + }, + { + "cache-control": "private" + }, + { + "content-length": "1396" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuBg59Xwl/EEO1FURBA3cAlgmns+ZjtUnj+OABraDN8bCZzDmjhJGhbKAxEWBcNLyPWU8lPaSzTe300; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:38:09 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas04-1" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=d12d53fe4bd39099b1d991b8bfad50951e1458d396-6634083950951e41834_3366; expires=Sat, 03-Nov-2012 14:08:09 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 09 Jul 2012 15:09:21 GMT" + }, + { + "cache-control": "max-age=52968683" + }, + { + "expires": "Wed, 09 Jul 2014 15:09:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "content-length": "11937" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:26:43 GMT" + }, + { + "content-type": "image/png" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1594" + }, + { + "cache-control": "max-age=62707699" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 16 Jul 2012 20:54:14 GMT" + }, + { + "etag": "\"6d6c23-816c-4c4f8a1e64980\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "33132" + }, + { + "content-type": "image/jpeg" + }, + { + "date": "Sat, 03 Nov 2012 13:38:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "317" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "1222" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-type": "text/html" + }, + { + "content-length": "4631" + }, + { + "set-cookie": "PRpc=|HrYvHDG1:1|#;domain=ads.pointroll.com; path=/; expires=Mon, 03-Nov-2014 13:38:23 GMT;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 12:33:21 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "17839" + }, + { + "cache-control": "max-age=62987851" + }, + { + "expires": "Sun, 02 Nov 2014 14:15:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:51:54 GMT" + }, + { + "cache-control": "max-age=62946923" + }, + { + "expires": "Sun, 02 Nov 2014 02:53:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "content-length": "4827" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 15:48:41 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5891" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62993480" + }, + { + "expires": "Sun, 02 Nov 2014 15:49:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 10:44:04 GMT" + }, + { + "content-length": "3664" + }, + { + "cache-control": "max-age=62975317" + }, + { + "expires": "Sun, 02 Nov 2014 10:46:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 31 Oct 2012 13:08:31 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5589" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62813487" + }, + { + "expires": "Fri, 31 Oct 2014 13:49:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 31 Oct 2012 11:47:26 GMT" + }, + { + "content-length": "6787" + }, + { + "cache-control": "max-age=62806355" + }, + { + "expires": "Fri, 31 Oct 2014 11:50:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 01 Mar 2006 15:13:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "cache-control": "max-age=0, no-cache=Set-Cookie" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "keep-alive": "timeout=10, max=150" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "server": "Apache" + }, + { + "cache-control": "private, max-age=30" + }, + { + "x-lb-nocache": "true" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "47" + }, + { + "keep-alive": "timeout=45" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "1232" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-type": "text/html" + }, + { + "content-length": "4657" + }, + { + "set-cookie": "PRpc=|HrYwHDG0:1|HrYvHDG1:1|#;domain=ads.pointroll.com; path=/; expires=Mon, 03-Nov-2014 13:38:23 GMT;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 25 Oct 2012 12:54:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6289" + }, + { + "cache-control": "max-age=62291861" + }, + { + "expires": "Sat, 25 Oct 2014 12:56:04 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 05:59:50 GMT" + }, + { + "cache-control": "max-age=62871966" + }, + { + "expires": "Sat, 01 Nov 2014 06:04:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "content-length": "4071" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 01 Nov 2012 09:39:39 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6862" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62885045" + }, + { + "expires": "Sat, 01 Nov 2014 09:42:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 24 Sep 2012 12:45:46 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4014" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=59612845" + }, + { + "expires": "Wed, 24 Sep 2014 12:45:48 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "360" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 05:12:35 GMT" + }, + { + "content-length": "6772" + }, + { + "cache-control": "max-age=62955857" + }, + { + "expires": "Sun, 02 Nov 2014 05:22:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-length": "548" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "545" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "545" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Tue, 01 Feb 2011 16:45:17 GMT" + }, + { + "date": "Fri, 02 Nov 2012 19:49:21 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 19:49:21 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "4447" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "64143" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Tue, 25 Sep 2012 20:37:11 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:14:54 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:14:54 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "2993" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "62610" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:21 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/html" + }, + { + "content-length": "103860" + }, + { + "date": "Sat, 03 Nov 2012 13:38:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Mon, 22 Oct 2012 18:53:42 GMT" + }, + { + "date": "Fri, 02 Nov 2012 21:59:32 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 21:59:32 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "5619" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "56332" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Mon, 22 Oct 2012 18:54:38 GMT" + }, + { + "date": "Fri, 02 Nov 2012 21:59:33 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 21:59:33 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "5379" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "56331" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "GFE/2.0" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "content-length": "0" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "GFE/2.0" + }, + { + "content-length": "0" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 05 Nov 2010 18:11:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 08:14:05 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 08:14:05 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "43" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "19459" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-type": "text/plain" + }, + { + "content-length": "3528" + }, + { + "cache-control": "private, max-age=506694" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "server": "cafe" + }, + { + "cache-control": "private" + }, + { + "content-length": "882" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 07:32:16 GMT" + }, + { + "cache-control": "max-age=62963730" + }, + { + "expires": "Sun, 02 Nov 2014 07:33:53 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "content-length": "6112" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:53:00 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6904" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62947059" + }, + { + "expires": "Sun, 02 Nov 2014 02:56:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 29 Oct 2012 23:54:38 GMT" + }, + { + "content-length": "6467" + }, + { + "cache-control": "max-age=62677369" + }, + { + "expires": "Thu, 30 Oct 2014 00:01:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 01:56:44 GMT" + }, + { + "content-length": "5790" + }, + { + "cache-control": "max-age=62943937" + }, + { + "expires": "Sun, 02 Nov 2014 02:04:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Thu, 15 Dec 2011 11:42:59 GMT" + }, + { + "content-length": "13166" + }, + { + "cache-control": "max-age=60312573" + }, + { + "expires": "Thu, 02 Oct 2014 15:07:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 19:47:01 GMT" + }, + { + "content-length": "6715" + }, + { + "cache-control": "max-age=63007794" + }, + { + "expires": "Sun, 02 Nov 2014 19:48:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Sun, 05-Jun-2005 22:00:00 GMT" + }, + { + "set-cookie": "u2=0c1d5772-7a75-4913-9e34-91b1ec36e6763Qv0b0; expires=Fri, 01-Feb-2013 09:38:24 GMT; domain=.serving-sys.com; path=/" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"NOI DEVa OUR BUS UNI\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "2370" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Nov 2014 13:38:24 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "17960" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "Keep-Alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "max-age=63072000" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + }, + { + "last-modified": "Mon, 08 Nov 2010 14:53:56 GMT" + }, + { + "keep-alive": "timeout=5, max=713" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 24 May 2012 20:52:06 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:45:30 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:45:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "18377" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "60774" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuBg59Xwl/EEO1FURBA3cAlgmns+ZhxgFZ2Xd28p4N8+qai9qH+vXEtJkM6N3AzKCRseBomFyz6/H0m; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:38:24 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas09-1" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 08 Nov 2010 14:53:48 GMT" + }, + { + "content-length": "17610" + }, + { + "cache-control": "max-age=63072000" + }, + { + "expires": "Mon, 03 Nov 2014 13:38:23 GMT" + }, + { + "vary": "X-CDN" + }, + { + "access-control-allow-origin": "*" + }, + { + "keep-alive": "timeout=5, max=793" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/jpeg" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "server": "Omniture DC/2.0.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "set-cookie": "s_vi=[CS]v1|284A8F0905160D8B-600001A1C0108CD4[CE]; Expires=Thu, 2 Nov 2017 13:38:24 GMT; Domain=sa.bbc.com; Path=/" + }, + { + "x-c": "ms-4.4.9" + }, + { + "expires": "Fri, 02 Nov 2012 13:38:24 GMT" + }, + { + "last-modified": "Sun, 04 Nov 2012 13:38:24 GMT" + }, + { + "cache-control": "no-cache, no-store, max-age=0, no-transform, private" + }, + { + "pragma": "no-cache" + }, + { + "etag": "\"50951E50-1A84-669E56BC\"" + }, + { + "vary": "*" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA OUR IND COM NAV STA\"" + }, + { + "xserver": "www665" + }, + { + "content-length": "43" + }, + { + "keep-alive": "timeout=15" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:08:06 GMT" + }, + { + "cache-control": "max-age=62937399" + }, + { + "expires": "Sun, 02 Nov 2014 00:15:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "content-length": "7180" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 31 Oct 2012 15:54:41 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4902" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62848278" + }, + { + "expires": "Fri, 31 Oct 2014 23:29:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 01 Nov 2012 23:33:51 GMT" + }, + { + "content-length": "3930" + }, + { + "cache-control": "max-age=62935245" + }, + { + "expires": "Sat, 01 Nov 2014 23:39:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=72911efde47ed7df994991b8bfad50951e1458d396-6634083950951e50834_3366; expires=Sat, 03-Nov-2012 14:08:24 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:02:53 GMT" + }, + { + "content-length": "3589" + }, + { + "cache-control": "max-age=62846973" + }, + { + "expires": "Fri, 31 Oct 2014 23:07:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-type": "text/plain" + }, + { + "content-length": "15586" + }, + { + "cache-control": "private, max-age=506675" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "20151" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 25 Oct 2012 17:13:44 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0544416d4b2cd1:b56\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 05 Mar 2012 12:20:37 GMT" + }, + { + "cache-control": "max-age=42072135" + }, + { + "expires": "Wed, 05 Mar 2014 12:20:37 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:22 GMT" + }, + { + "content-length": "59958" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 08:26:48 GMT" + }, + { + "cache-control": "max-age=62707710" + }, + { + "expires": "Thu, 30 Oct 2014 08:26:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "content-length": "189" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 26 Oct 2012 15:18:41 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5471" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62387032" + }, + { + "expires": "Sun, 26 Oct 2014 15:22:16 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-pad": "avoid browser bug" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 15 Nov 2011 09:49:33 GMT" + }, + { + "content-length": "3645" + }, + { + "cache-control": "max-age=59275525" + }, + { + "expires": "Sat, 20 Sep 2014 15:03:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 01:30:29 GMT" + }, + { + "x-pad": "avoid browser bug" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5937" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "max-age=62942201" + }, + { + "expires": "Sun, 02 Nov 2014 01:35:04 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 17:42:14 GMT" + }, + { + "cache-control": "max-age=63000297" + }, + { + "expires": "Sun, 02 Nov 2014 17:43:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "content-length": "6807" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "x-pad": "avoid browser bug" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:03:40 GMT" + }, + { + "content-length": "4382" + }, + { + "cache-control": "max-age=62846946" + }, + { + "expires": "Fri, 31 Oct 2014 23:07:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 30 Oct 2012 23:49:59 GMT" + }, + { + "content-length": "5299" + }, + { + "cache-control": "max-age=62768266" + }, + { + "expires": "Fri, 31 Oct 2014 01:16:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:26 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-length": "1" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/plain; charset=utf-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:26 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-length": "1" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/plain; charset=utf-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "29965" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 25 Oct 2012 17:12:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"02d8becd3b2cd1:b56\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:38:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:31 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-length": "1" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/plain; charset=utf-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:31 GMT" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.nedstat.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND NAV COM\"" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:31 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 01 Mar 2006 15:13:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "cache-control": "max-age=0, no-cache=Set-Cookie" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:31 GMT" + }, + { + "keep-alive": "timeout=10, max=91" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "312" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:32 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "1216" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:32 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:32 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-type": "text/html" + }, + { + "content-length": "4631" + }, + { + "set-cookie": "PRpc=|HrYwHDG0:1|HrYvHDG1:2|#;domain=ads.pointroll.com; path=/; expires=Mon, 03-Nov-2014 13:38:32 GMT;" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "322" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 20 Jul 2012 11:50:26 GMT" + }, + { + "cache-control": "max-age=53907180" + }, + { + "expires": "Sun, 20 Jul 2014 11:51:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:32 GMT" + }, + { + "content-length": "2149" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/javascript; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-disposition": "attachment" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "server": "cafe" + }, + { + "cache-control": "private" + }, + { + "content-length": "1660" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "609" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "0" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-msadid": "291301914" + }, + { + "date": "Sat, 03 Nov 2012 13:38:32 GMT" + }, + { + "connection": "close" + }, + { + "content-length": "2882" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "320" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "50" + }, + { + "allow": "GET" + }, + { + "expires": "Tue, 06 Nov 2012 10:23:48 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "nginx/0.8.54" + }, + { + "date": "Sat, 03 Nov 2012 13:38:26 GMT" + }, + { + "content-type": "application/xml" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + }, + { + "set-cookie": "pixel_f52666608=1; Domain=.dimestore.com; Expires=Sun, 03-Nov-2013 13:38:26 GMT" + }, + { + "location": "http://content.dimestore.com/pixel.gif" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:30 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/html" + }, + { + "content-length": "91710" + }, + { + "date": "Sat, 03 Nov 2012 13:38:30 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cache-action": "MISS" + }, + { + "x-cache-age": "0" + }, + { + "cache-control": "private, max-age=0, must-revalidate" + }, + { + "x-lb-nocache": "true" + }, + { + "vary": "X-CDN" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "538" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "356" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "539" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "application/x-javascript" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-length": "545" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:34 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-length": "1" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/plain; charset=utf-8" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "GFE/2.0" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "content-length": "0" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "321" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:34 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "p3p": "policyref=\"http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "GFE/2.0" + }, + { + "content-length": "0" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "content-encoding": "gzip" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "18600" + }, + { + "allow": "GET" + }, + { + "expires": "Sun, 04 Nov 2012 07:03:01 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:34 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Sun, 05-Jun-2005 22:00:00 GMT" + }, + { + "set-cookie": "u2=0c1d5772-7a75-4913-9e34-91b1ec36e6763Qv0bg; expires=Fri, 01-Feb-2013 09:38:34 GMT; domain=.serving-sys.com; path=/" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"NOI DEVa OUR BUS UNI\"" + }, + { + "date": "Sat, 03 Nov 2012 13:38:33 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "245" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:34 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx/0.6.35" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "49" + }, + { + "last-modified": "Fri, 05 Aug 2011 18:45:32 GMT" + }, + { + "access-control-allow-origin": "*" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 13:38:34 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:35 GMT" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Wed, 19 Sep 2012 23:30:39 GMT" + }, + { + "etag": "\"bed15b-d00-4ca1664f965c0\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "3328" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR DEVa TAIa OUR BUS UNI\"" + }, + { + "content-type": "application/x-javascript" + }, + { + "date": "Sat, 03 Nov 2012 13:38:35 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "content-type": "application/x-javascript" + }, + { + "connection": "close" + }, + { + "set-cookie": "BMX_3PC=1; path=/; domain=.voicefive.com;" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI COR NID CUR DEV TAI PSA IVA OUR STA UNI NAV INT\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "-1" + }, + { + "vary": "User-Agent,Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "8240" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR DEVa TAIa OUR BUS UNI\"" + }, + { + "content-type": "text/javascript" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "cache-control": "max-age=0, no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "content-length": "392" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "CMDD=AAIWeQE*;domain=casalemedia.com;path=/;expires=Sun, 04 Nov 2012 13:38:37 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "set-cookie": "rts_AAAA=MLuBg59Xwl/EEO1FURBA3cAlgmns+bAxJsyTL2hw/WD8n92ZW/I4JwcH7E4ANXFCKgXlxsjUzY2F7dfMxN21mUJt+5Zxhw==; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:38:37 GMT; Path=/" + }, + { + "x-proc-data": "pd3-bgas02-1" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "server": "RSI" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "content-type": "application/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "server": "Omniture DC/2.0.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "set-cookie": "s_vi=[CS]v1|284A8F0905160D8B-600001A1C0108CD4[CE]; Expires=Thu, 2 Nov 2017 13:38:37 GMT; Domain=sa.bbc.com; Path=/" + }, + { + "x-c": "ms-4.4.9" + }, + { + "expires": "Fri, 02 Nov 2012 13:38:37 GMT" + }, + { + "last-modified": "Sun, 04 Nov 2012 13:38:37 GMT" + }, + { + "cache-control": "no-cache, no-store, max-age=0, no-transform, private" + }, + { + "pragma": "no-cache" + }, + { + "etag": "\"50951E5D-2288-2D7FF956\"" + }, + { + "vary": "*" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA OUR IND COM NAV STA\"" + }, + { + "xserver": "www381" + }, + { + "content-length": "43" + }, + { + "keep-alive": "timeout=15" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-length": "173" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "v=b90bb042855f902565c991b8bfad50951e1458d396-6634083950951e5d834_3366; expires=Sat, 03-Nov-2012 14:08:37 GMT; path=/; domain=.effectivemeasure.net" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "server": "collection10" + }, + { + "cache-directive": "no-cache" + }, + { + "pragma-directive": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID\"" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache/2.2.19 (Unix)" + }, + { + "content-type": "application/json;charset=UTF-8" + }, + { + "access-control-allow-origin": "*" + }, + { + "access-control-allow-methods": "POST, GET, PUT, OPTIONS" + }, + { + "access-control-allow-headers": "Content-Type, X-Requested-With, *" + }, + { + "content-length": "112" + }, + { + "cache-control": "max-age=17" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 24 Jun 2005 22:51:33 GMT" + }, + { + "etag": "\"fec19c-1b-3fa51a4b8c740\"" + }, + { + "accept-ranges": "bytes" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR DEVa TAIa OUR BUS UNI\"" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "38" + }, + { + "date": "Sat, 03 Nov 2012 13:38:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Mon, 22 Oct 2012 15:55:36 GMT" + }, + { + "etag": "\"4016f-8a-4cca7e25a0e00\"" + }, + { + "accept-ranges": "bytes" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR DEVa TAIa OUR BUS UNI\"" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "135" + }, + { + "date": "Sat, 03 Nov 2012 13:38:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "273" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:38:38 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/2179194/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:38:38 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "date": "Sat, 03 Nov 2012 13:38:41 GMT" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR BUS OTC\"" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "content-length": "1" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/plain; charset=utf-8" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_24.json b/jetty-http2/http2-hpack/src/test/resources/data/story_24.json new file mode 100644 index 00000000000..c2948956c05 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_24.json @@ -0,0 +1,1187 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "302" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "connection": "close" + }, + { + "location": "http://www.craigslist.org/about/sites/" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:34:16 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=14400" + }, + { + "last-modified": "Sat, 03 Nov 2012 10:03:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 10:03:45 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "10344" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 10:03:45 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 16 Oct 2012 22:03:00 GMT" + }, + { + "date": "Tue, 16 Oct 2012 22:03:00 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1099" + }, + { + "content-type": "text/css; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 15 Nov 2012 22:03:00 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=15, public" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:33:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:33:59 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "6344" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:34:14 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 06:13:28 GMT" + }, + { + "date": "Tue, 09 Oct 2012 06:13:28 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "28017" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 06:13:28 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "last-modified": "Mon, 23 Jun 2008 23:06:11 GMT" + }, + { + "cache-control": "public, max-age=315360000" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Tue, 09 Oct 2012 05:33:00 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1150" + }, + { + "content-type": "text/plain" + }, + { + "server": "Apache" + }, + { + "expires": "Fri, 07 Oct 2022 05:33:00 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=3600, public" + }, + { + "last-modified": "Sat, 03 Nov 2012 12:36:54 GMT" + }, + { + "set-cookie": "cl_def_hp=shoals; domain=.craigslist.org; path=/; expires=Sun, 03-Nov-13 12:36:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:36:54 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "6245" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:36:54 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Thu, 01 Nov 2012 20:53:37 GMT" + }, + { + "date": "Thu, 01 Nov 2012 20:53:37 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "6047" + }, + { + "content-type": "text/css; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Dec 2012 20:53:37 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Thu, 01 Nov 2012 20:53:17 GMT" + }, + { + "date": "Thu, 01 Nov 2012 20:53:17 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "6344" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Dec 2012 20:53:17 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 06:01:51 GMT" + }, + { + "date": "Tue, 09 Oct 2012 06:01:51 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "473" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 06:01:51 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 06:01:55 GMT" + }, + { + "date": "Tue, 09 Oct 2012 06:01:55 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "28017" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 06:01:55 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "last-modified": "Mon, 23 Jun 2008 23:06:11 GMT" + }, + { + "cache-control": "public, max-age=315360000" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Tue, 09 Oct 2012 05:33:00 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1150" + }, + { + "content-type": "text/plain" + }, + { + "server": "Apache" + }, + { + "expires": "Fri, 07 Oct 2022 05:33:00 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=600" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:34:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:34:21 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "9660" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:49:21 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 06:21:38 GMT" + }, + { + "date": "Tue, 09 Oct 2012 06:21:38 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "225" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 06:21:38 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 07:20:18 GMT" + }, + { + "date": "Tue, 09 Oct 2012 07:20:18 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "2857" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 07:20:18 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 30 Oct 2012 21:50:50 GMT" + }, + { + "date": "Tue, 30 Oct 2012 21:50:50 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1398" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 29 Nov 2012 21:50:50 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Thu, 01 Nov 2012 21:26:48 GMT" + }, + { + "date": "Thu, 01 Nov 2012 21:26:48 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "40353" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 01 Dec 2012 21:26:48 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Fri, 02 Nov 2012 21:46:27 GMT" + }, + { + "date": "Fri, 02 Nov 2012 21:46:27 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "2458" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sun, 02 Dec 2012 21:46:27 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Mon, 15 Oct 2012 22:07:17 GMT" + }, + { + "date": "Mon, 15 Oct 2012 22:07:17 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "727" + }, + { + "content-type": "text/javascript; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Wed, 14 Nov 2012 22:07:17 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Fri, 02 Nov 2012 21:46:28 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Fri, 02 Nov 2012 21:46:27 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Fri, 02 Nov 2012 21:46:28 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Fri, 02 Nov 2012 21:46:27 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=600" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:34:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:34:17 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "10780" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Sat, 03 Nov 2012 13:49:18 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:17:50 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:17:50 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "2245" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 13:17:50 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Mon, 22 Oct 2012 22:00:11 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 27 Oct 2012 12:09:05 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 27 Oct 2012 07:36:12 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=2592000" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Mon, 22 Oct 2012 22:00:12 GMT" + }, + { + "server": "Apache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=14400" + }, + { + "last-modified": "Sat, 03 Nov 2012 12:53:23 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:53:23 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "5733" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 12:53:23 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=14400" + }, + { + "last-modified": "Sat, 03 Nov 2012 10:58:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 10:58:55 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1480" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 10:58:55 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "public, max-age=14400" + }, + { + "last-modified": "Sat, 03 Nov 2012 09:53:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 09:53:38 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "10400" + }, + { + "content-type": "text/html; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Mon, 03 Dec 2012 09:53:38 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "max-age=2592000, public" + }, + { + "last-modified": "Tue, 09 Oct 2012 06:01:47 GMT" + }, + { + "date": "Tue, 09 Oct 2012 06:01:47 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "4861" + }, + { + "content-type": "text/css; charset=iso-8859-1" + }, + { + "x-frame-options": "Allow-From https://forums.craigslist.org" + }, + { + "server": "Apache" + }, + { + "expires": "Thu, 08 Nov 2012 06:01:47 GMT" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_25.json b/jetty-http2/http2-hpack/src/test/resources/data/story_25.json new file mode 100644 index 00000000000..a97403849b4 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_25.json @@ -0,0 +1,8637 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "301" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "etag": "" + }, + { + "last-modified": "Sat, 3 Nov 2012 13:18:25 GMT" + }, + { + "location": "http://www.ebay.com" + }, + { + "rlogid": "p4fug%60fvehq%60%3C%3Dsm%2Bpu56*a37%3Fb0%60-13ac6788085" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:31:56 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "nonsession=CgAFMABhSdlBNNTA5NTFjY2QuMC4xLjEuMTQ5LjMuMC4xAMoAIFn7Hk1jNjc4ODNmMTEzYTBhNTY5NjRlNjQ2YzZmZmFhMWFjMQDLAAFQlSPVMX8u5Z8*; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:31:57 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "14114" + }, + { + "date": "Sat, 03 Nov 2012 13:31:56 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:07:22 GMT" + }, + { + "etag": "\"558014-cc3-4cd77eb75a280\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "3267" + }, + { + "x-cnection": "close" + }, + { + "content-type": "image/jpeg" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9vt*ts67.g15ea31-13ac67885c6-0x1a1" + }, + { + "set-cookie": "npii=bcguid/c67885c613a0a0a9f6568b16ff5917ee5276504e^tguid/c67883f113a0a56964e646c6ffaa1ac15276504e^; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:31:58 GMT; Path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa ADMa DEVa PSDo PSAa OUR SAMo IND UNI COM NAV INT STA DEM PRE\"" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "42" + }, + { + "date": "Sat, 03 Nov 2012 13:31:57 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 15:31:45 GMT" + }, + { + "last-modified": "Sat, 16 Aug 2003 20:42:27 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "49" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "last-modified": "Thu, 18 Oct 2012 23:53:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "2539" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "expires": "Mon, 10 Dec 2012 22:14:50 GMT" + }, + { + "last-modified": "Tue, 10 Jul 2012 00:18:56 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "219" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "last-modified": "Tue, 10 Jul 2012 00:17:53 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"808e7072315ecd1:5f1\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "201" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "last-modified": "Wed, 18 Jul 2012 20:33:33 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "1623" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9vl*th%7Fbad%7F72%3D-13ac6788850-0x16f" + }, + { + "cache-control": "private, max-age=86400" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9ve*t%28747%60e%7E6-13ac678862e-0xfb" + }, + { + "cache-control": "private, max-age=86400" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:31:57 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9ve*t%28747%60e%7Eb-13ac6788670-0x141" + }, + { + "cache-control": "private, max-age=86400" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:31:57 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07p-13a4b38c06e-0x161" + }, + { + "last-modified": "Tue, 09 Oct 2012 23:50:57 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "4212" + }, + { + "cache-control": "max-age=29468235" + }, + { + "expires": "Thu, 10 Oct 2013 15:09:13 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07%3B-13a65e7cdbc-0x16b" + }, + { + "last-modified": "Mon, 15 Oct 2012 19:11:16 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "5662" + }, + { + "cache-control": "max-age=29915920" + }, + { + "expires": "Tue, 15 Oct 2013 19:30:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07m-13abdd493d5-0x16d" + }, + { + "last-modified": "Thu, 01 Nov 2012 20:39:43 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "9184" + }, + { + "cache-control": "max-age=31391044" + }, + { + "expires": "Fri, 01 Nov 2013 21:16:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 31 Jan 2012 02:58:34 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "3282" + }, + { + "cache-control": "max-age=23333195" + }, + { + "expires": "Wed, 31 Jul 2013 14:58:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 06 Sep 2012 16:51:31 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "5440" + }, + { + "cache-control": "max-age=26536771" + }, + { + "expires": "Fri, 06 Sep 2013 16:51:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 11 Oct 2012 19:15:19 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5148" + }, + { + "cache-control": "max-age=31458789" + }, + { + "expires": "Sat, 02 Nov 2013 16:05:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5679" + }, + { + "cache-control": "public, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:31:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 31 Oct 2012 19:19:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7150" + }, + { + "cache-control": "max-age=31468533" + }, + { + "expires": "Sat, 02 Nov 2013 18:47:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 24 Oct 2012 05:51:41 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "5679" + }, + { + "cache-control": "max-age=30644382" + }, + { + "expires": "Thu, 24 Oct 2013 05:51:41 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 01 Nov 2012 21:24:39 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5636" + }, + { + "cache-control": "max-age=31450187" + }, + { + "expires": "Sat, 02 Nov 2013 13:41:46 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 01 Nov 2012 23:03:23 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7177" + }, + { + "cache-control": "max-age=31488510" + }, + { + "expires": "Sun, 03 Nov 2013 00:20:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 01 Nov 2012 18:41:38 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8702" + }, + { + "cache-control": "max-age=31321403" + }, + { + "expires": "Fri, 01 Nov 2013 01:55:22 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 12 Oct 2012 14:29:39 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13046" + }, + { + "cache-control": "max-age=29637746" + }, + { + "expires": "Sat, 12 Oct 2013 14:14:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*tm63.%3C72om6%3E-13abcb35937-0x14e" + }, + { + "last-modified": "Tue, 30 Oct 2012 21:07:34 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "60906" + }, + { + "cache-control": "max-age=31372049" + }, + { + "expires": "Fri, 01 Nov 2013 15:59:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 18 Sep 2012 01:10:29 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "42205" + }, + { + "cache-control": "max-age=27517110" + }, + { + "expires": "Wed, 18 Sep 2013 01:10:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "53359" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "private, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:31:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "last-modified": "Tue, 16 Oct 2012 18:06:59 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "2583" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9vl*th%7Fbad%7F710-13ac67892f3-0x131" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "0" + }, + { + "set-cookie": "PS=T.0; Domain=main.ebayrtm.com; Expires=Sun, 03-Nov-2013 13:32:01 GMT; Path=/rtm" + }, + { + "location": "http://srx.main.ebayrtm.com/rtm?RtmCmd&a=json&l=@@__@@__@@&g=c67883f113a0a56964e646c6ffaa1ac1&c=1H4sIAAAAAAAAAB2OwWrCQBCG74LvMOClLXR3Zsckm8gevLR4SEuJhx5ySdMVg6krujXap%2B8kMDDD%2F%2F18zKJqIryFKyADpgVTkWRQVlswSGY%2BOzGjK8Nf1%2FeNThTCQ9m03TGGy34Fm2P0PUgA7xV8AqGyKzhf64JShY%2Fw6ttD0OJBGYKX7ux34aZHKGIyTlbbfTu29S9KR0LDS%2Fec5yO27BLKs%2BkkJw6cvjFuH%2BOpLrQehkH5r%2Bau2vAzIWkxKjK5Sq3KeMxs5vzmY90flk%2Fz2T9Cveg66wAAAA%3D%3D&p=11527:11528:11529&di=11527:11528:11529&v=4&enc=UTF-8&bm=286807&ord=1351949521580&cg=c67885c613a0a0a9f6568b16ff5917ee&cb=vjo.dsf.assembly.VjClientAssembler._callback0&_vrdm=1351949521581&r=yes" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "Mon, 10 Dec 2012 02:40:28 GMT" + }, + { + "last-modified": "Thu, 09 Jul 2009 18:33:39 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "1406" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:56 GMT" + }, + { + "last-modified": "Mon, 13 Jul 2009 22:43:33 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8018ba59b4ca1:5d2\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "386" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "last-modified": "Thu, 09 Jul 2009 18:33:41 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "3155" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9vl*th%7Fbad%7F715-13ac6789351-0x12a" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "4320" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "0" + }, + { + "set-cookie": "HT=1351949521580%0211529%04287876%06261345%0311528%04286823%06260443%0311527%04286801%06203908; Domain=main.ebayrtm.com; Path=/rtm" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "Mon, 26 Nov 2012 01:07:49 GMT" + }, + { + "last-modified": "Fri, 05 Oct 2012 18:48:16 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "92574" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "last-modified": "Thu, 29 Mar 2012 22:36:00 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"048ac50fcdcd1:603\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "35128" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07m-133f0e5fedc-0x142" + }, + { + "last-modified": "Tue, 29 Nov 2011 19:19:17 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/css" + }, + { + "content-length": "545" + }, + { + "cache-control": "max-age=30563305" + }, + { + "expires": "Wed, 23 Oct 2013 07:20:26 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:02 GMT" + }, + { + "expires": "Tue, 18 Dec 2012 00:25:08 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:26:02 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "22428" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:02 GMT" + }, + { + "expires": "Tue, 18 Dec 2012 00:25:05 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:28:28 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "33895" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:02 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 16:09:55 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 18:41:38 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "38761" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:02 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 15:00:24 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 14:28:46 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "60078" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750d%7F23-13abd599c11-0x167" + }, + { + "last-modified": "Mon, 29 Oct 2012 20:14:10 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "72619" + }, + { + "cache-control": "max-age=31382938" + }, + { + "expires": "Fri, 01 Nov 2013 19:00:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*tm63.%3C72om6%3E-13ac20abb51-0x14c" + }, + { + "last-modified": "Fri, 02 Nov 2012 16:52:54 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "69800" + }, + { + "cache-control": "max-age=31461635" + }, + { + "expires": "Sat, 02 Nov 2013 16:52:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:01 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "nonsession=CgAFMABhSdlBNNTA5NTFjY2QuMC4xLjEuMTQ5LjMuMC4xAMoAIFn7Hk1jNjc4ODNmMTEzYTBhNTY5NjRlNjQ2YzZmZmFhMWFjMQDLAAFQlSPVMX8u5Z8*; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:31:57 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "image/x-icon" + }, + { + "content-length": "1150" + }, + { + "date": "Sat, 03 Nov 2012 13:32:06 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 15:31:45 GMT" + }, + { + "last-modified": "Sat, 16 Aug 2003 20:42:27 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "49" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "last-modified": "Thu, 18 Oct 2012 23:53:57 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "2539" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "last-modified": "Thu, 30 Jul 2009 23:41:29 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "53" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + }, + { + "expires": "Sat, 03 Nov 2012 15:14:28 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Mon, 26 Nov 2012 05:56:41 GMT" + }, + { + "last-modified": "Thu, 30 Jul 2009 23:41:33 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "53" + }, + { + "etag": "\"80b4fd446f11ca1:876\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:07 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "24567" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sun, 16 Dec 2012 17:51:49 GMT" + }, + { + "last-modified": "Sun, 26 Feb 2012 07:40:00 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1968" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 16:37:50 GMT" + }, + { + "last-modified": "Tue, 07 Jul 2009 20:18:42 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "613" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:57 GMT" + }, + { + "last-modified": "Thu, 23 Aug 2007 20:40:22 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "229" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Mon, 26 Nov 2012 05:56:41 GMT" + }, + { + "last-modified": "Thu, 04 Oct 2007 21:44:36 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "1887" + }, + { + "etag": "\"0bad4c1cf6c81:682\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 15:31:45 GMT" + }, + { + "last-modified": "Sat, 16 Aug 2003 20:42:27 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "49" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Mon, 19 Nov 2012 22:20:32 GMT" + }, + { + "last-modified": "Sat, 23 Apr 2011 09:37:40 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3936" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Thu, 13 Dec 2012 18:43:54 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:31:30 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4059" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "expires": "Thu, 13 Dec 2012 18:24:38 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:15:08 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4397" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 19 Jan 2012 01:26:02 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "10248" + }, + { + "cache-control": "max-age=22290839" + }, + { + "expires": "Fri, 19 Jul 2013 13:26:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 10 Nov 2011 13:27:41 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "1794" + }, + { + "cache-control": "max-age=16286156" + }, + { + "expires": "Sat, 11 May 2013 01:28:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 19 May 2012 13:20:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2031" + }, + { + "cache-control": "max-age=4358180" + }, + { + "expires": "Mon, 24 Dec 2012 00:08:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 31 Oct 2012 14:04:13 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2394" + }, + { + "cache-control": "max-age=31533954" + }, + { + "expires": "Sun, 03 Nov 2013 12:58:01 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 13:43:50 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3680" + }, + { + "cache-control": "max-age=31532824" + }, + { + "expires": "Sun, 03 Nov 2013 12:39:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 16 Jun 2012 04:23:57 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3263" + }, + { + "cache-control": "max-age=10191966" + }, + { + "expires": "Fri, 01 Mar 2013 12:38:13 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 04 Sep 2012 13:46:03 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2469" + }, + { + "cache-control": "max-age=26067492" + }, + { + "expires": "Sun, 01 Sep 2013 06:30:19 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 17 Dec 2011 17:14:44 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "2521" + }, + { + "cache-control": "max-age=19496613" + }, + { + "expires": "Mon, 17 Jun 2013 05:15:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 15 Dec 2011 00:35:12 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "9133" + }, + { + "cache-control": "max-age=19263809" + }, + { + "expires": "Fri, 14 Jun 2013 12:35:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 29 Oct 2012 14:11:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3761" + }, + { + "cache-control": "max-age=31534424" + }, + { + "expires": "Sun, 03 Nov 2013 13:05:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 23 Sep 2012 00:16:12 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2956" + }, + { + "cache-control": "max-age=27524859" + }, + { + "expires": "Wed, 18 Sep 2013 03:19:46 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 29 Oct 2012 14:13:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2236" + }, + { + "cache-control": "max-age=31105641" + }, + { + "expires": "Tue, 29 Oct 2013 13:59:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 07 May 2012 03:34:14 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1500" + }, + { + "cache-control": "max-age=4657042" + }, + { + "expires": "Thu, 27 Dec 2012 11:09:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 17 Oct 2012 21:46:06 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2528" + }, + { + "cache-control": "max-age=28697569" + }, + { + "expires": "Tue, 01 Oct 2013 17:04:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 02 Oct 2012 21:27:24 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1930" + }, + { + "cache-control": "max-age=28812498" + }, + { + "expires": "Thu, 03 Oct 2013 01:00:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 20 Oct 2012 02:57:28 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1722" + }, + { + "cache-control": "max-age=30889406" + }, + { + "expires": "Sun, 27 Oct 2013 01:55:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 17 Jul 2012 14:30:13 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2961" + }, + { + "cache-control": "max-age=16431611" + }, + { + "expires": "Sun, 12 May 2013 17:52:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 24 Oct 2012 14:14:04 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2160" + }, + { + "cache-control": "max-age=30945129" + }, + { + "expires": "Sun, 27 Oct 2013 17:24:16 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 14:11:43 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2841" + }, + { + "cache-control": "max-age=30221178" + }, + { + "expires": "Sat, 19 Oct 2013 08:18:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 07 May 2012 13:59:59 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1541" + }, + { + "cache-control": "max-age=7259332" + }, + { + "expires": "Sat, 26 Jan 2013 14:00:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 06 Jun 2012 14:05:14 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2123" + }, + { + "cache-control": "max-age=12334548" + }, + { + "expires": "Tue, 26 Mar 2013 07:47:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 14:21:18 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "947" + }, + { + "cache-control": "max-age=27136636" + }, + { + "expires": "Fri, 13 Sep 2013 15:29:23 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 14:45:15 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1846" + }, + { + "cache-control": "max-age=29813010" + }, + { + "expires": "Mon, 14 Oct 2013 14:55:37 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 27 Oct 2012 14:17:41 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2166" + }, + { + "cache-control": "max-age=30506466" + }, + { + "expires": "Tue, 22 Oct 2013 15:33:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 13:48:57 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3964" + }, + { + "cache-control": "max-age=31161579" + }, + { + "expires": "Wed, 30 Oct 2013 05:31:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 13:43:32 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4653" + }, + { + "cache-control": "max-age=30556712" + }, + { + "expires": "Wed, 23 Oct 2013 05:30:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 11 Sep 2012 18:42:51 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "31476" + }, + { + "cache-control": "max-age=26975444" + }, + { + "expires": "Wed, 11 Sep 2013 18:42:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 17 Dec 2011 17:14:45 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "11181" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "max-age=19496528" + }, + { + "expires": "Mon, 17 Jun 2013 05:14:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 04 Oct 2012 14:19:33 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5580" + }, + { + "cache-control": "max-age=31535661" + }, + { + "expires": "Sun, 03 Nov 2013 13:26:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9vl*th%7Fbad%7F714-13ac678af80-0x141" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "903" + }, + { + "date": "Sat, 03 Nov 2012 13:32:08 GMT" + }, + { + "expires": "0" + }, + { + "set-cookie": "HT=1351949521580%0211529%04287876%06261345%0311528%04286823%06260443%0311527%04286801%06203908%011351949527269%02981%04-1%060%03980%04-1%060%03979%04-1%060%03688%04-1%060%03255%04-1%060; Domain=main.ebayrtm.com; Path=/rtm" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:09 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 16:40:39 GMT" + }, + { + "last-modified": "Wed, 10 Jun 2009 16:58:56 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "1161" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:09 GMT" + }, + { + "expires": "Wed, 28 Nov 2012 05:06:23 GMT" + }, + { + "last-modified": "Sat, 16 May 2009 01:16:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "1180" + }, + { + "etag": "\"04864dfc3d5c91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "66" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 19 Jun 2009 17:50:32 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"064b8706f1c91:682\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:09 GMT" + }, + { + "expires": "Sat, 27 Oct 2012 08:29:40 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:09 GMT" + }, + { + "expires": "Thu, 13 Dec 2012 19:35:46 GMT" + }, + { + "last-modified": "Thu, 17 Mar 2011 21:09:01 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "13713" + }, + { + "etag": "\"0bad4c1cf6c81:682\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 14 Feb 2012 08:00:47 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "53098" + }, + { + "cache-control": "max-age=24560912" + }, + { + "expires": "Wed, 14 Aug 2013 20:00:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sun, 28 Oct 2012 23:46:15 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "27209" + }, + { + "cache-control": "max-age=31054448" + }, + { + "expires": "Mon, 28 Oct 2013 23:46:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "397" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:32:10 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:10 GMT" + }, + { + "expires": "Sat, 15 Dec 2012 09:56:28 GMT" + }, + { + "last-modified": "Sat, 16 Aug 2003 20:42:27 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "49" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:10 GMT" + }, + { + "last-modified": "Mon, 08 Mar 2010 19:32:35 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "146" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 22 Oct 2012 20:38:55 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1918" + }, + { + "cache-control": "max-age=30051310" + }, + { + "expires": "Thu, 17 Oct 2013 09:07:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 01 Nov 2012 18:00:33 GMT" + }, + { + "date": "Fri, 02 Nov 2012 18:12:07 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 18:12:07 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "26810" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "69603" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "content-type": "image/x-icon" + }, + { + "content-length": "1150" + }, + { + "date": "Sat, 03 Nov 2012 13:32:11 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "expires": "Mon, 26 Nov 2012 00:29:24 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:03:54 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "260" + }, + { + "etag": "\"04864dfc3d5c91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "expires": "Tue, 11 Dec 2012 20:45:48 GMT" + }, + { + "last-modified": "Fri, 27 Aug 2010 00:22:53 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:04:39 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "172" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + }, + { + "expires": "Tue, 06 Nov 2012 16:57:28 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:12 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "90925" + }, + { + "date": "Sat, 03 Nov 2012 13:32:11 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "expires": "Thu, 13 Dec 2012 19:00:40 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:31:30 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "11504" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "expires": "Thu, 13 Dec 2012 19:00:40 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:31:30 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "11504" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 18 Oct 2012 22:46:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3962" + }, + { + "cache-control": "max-age=29068398" + }, + { + "expires": "Sun, 06 Oct 2013 00:05:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:53:50 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4670" + }, + { + "cache-control": "max-age=31276058" + }, + { + "expires": "Thu, 31 Oct 2013 13:19:50 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 11 Oct 2012 01:52:55 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5679" + }, + { + "cache-control": "max-age=28834042" + }, + { + "expires": "Thu, 03 Oct 2013 06:59:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 25 Jul 2012 20:50:41 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3929" + }, + { + "cache-control": "max-age=17978904" + }, + { + "expires": "Thu, 30 May 2013 15:40:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 06 Aug 2012 06:13:28 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2473" + }, + { + "cache-control": "max-age=22036778" + }, + { + "expires": "Tue, 16 Jul 2013 14:51:50 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6172" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "private, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 16 Mar 2012 00:40:23 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "52950" + }, + { + "cache-control": "max-age=27212892" + }, + { + "expires": "Sat, 14 Sep 2013 12:40:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 27 May 2012 12:26:18 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6163" + }, + { + "cache-control": "max-age=17941535" + }, + { + "expires": "Thu, 30 May 2013 05:17:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 13 Aug 2012 06:52:35 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4526" + }, + { + "cache-control": "max-age=24498920" + }, + { + "expires": "Wed, 14 Aug 2013 02:47:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "48924" + }, + { + "cache-control": "public, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 16:40:39 GMT" + }, + { + "last-modified": "Wed, 19 Oct 2011 00:48:19 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "275" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "1145" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Tue, 15 Feb 2011 17:36:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80b7dad536cdcb1:854\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 04:59:25 GMT" + }, + { + "last-modified": "Wed, 02 Feb 2011 19:43:17 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "3546" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "expires": "Thu, 27 Sep 2012 23:15:40 GMT" + }, + { + "last-modified": "Fri, 21 Jan 2011 20:52:52 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "6342" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 03:40:20 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "10896" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + }, + { + "expires": "Sun, 16 Dec 2012 05:44:38 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:57 GMT" + }, + { + "last-modified": "Fri, 22 Jun 2012 22:09:21 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "59719" + }, + { + "etag": "\"04864dfc3d5c91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + }, + { + "last-modified": "Fri, 22 Jun 2012 22:09:21 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "59719" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:57 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9vt*ts67.62d5%3C%3E7-13ac678c943-0x1a4" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/json" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:14 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:16 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "content-length": "80046" + }, + { + "date": "Sat, 03 Nov 2012 13:32:15 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~`s,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7E%60s-13ac678cb27-0xb7" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 13:46:54 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:31:30 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "739" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Thu, 22 Nov 2012 14:19:41 GMT" + }, + { + "last-modified": "Sat, 23 Apr 2011 09:37:40 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1649" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 06:10:27 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:01:04 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "134" + }, + { + "etag": "\"078525ce2cc51:586\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Fri, 14 Dec 2012 05:08:13 GMT" + }, + { + "last-modified": "Fri, 21 Oct 2005 18:47:40 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "231" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Sun, 09 Dec 2012 06:52:18 GMT" + }, + { + "last-modified": "Tue, 06 Sep 2005 19:37:46 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "643" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Fri, 26 Oct 2012 04:43:31 GMT" + }, + { + "last-modified": "Thu, 06 Oct 2005 21:29:14 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "369" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "199" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 21 Oct 2005 18:47:42 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80b7dad536cdcb1:854\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "last-modified": "Wed, 04 Mar 2009 03:12:30 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "2388" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + }, + { + "expires": "Sun, 16 Dec 2012 05:44:38 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Mon, 19 Nov 2012 22:20:46 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:31:30 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1713" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Sun, 11 Nov 2012 06:40:21 GMT" + }, + { + "last-modified": "Thu, 09 Sep 2010 17:30:38 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1389" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Mon, 26 Nov 2012 04:31:42 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:04:34 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "141" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:56 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:05:11 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "136" + }, + { + "etag": "\"80ad8befe2cc51:8e4\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Thu, 29 Nov 2012 16:39:21 GMT" + }, + { + "last-modified": "Tue, 02 Aug 2011 07:55:09 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6651" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:16 GMT" + }, + { + "expires": "Thu, 06 Dec 2012 09:42:11 GMT" + }, + { + "last-modified": "Mon, 28 Mar 2011 14:55:59 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13825" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Sat, 16 Aug 2003 20:42:25 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "49" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:57 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890;Domain=.ebay.com;Expires=Thu, 02-Nov-2017 13:32:21 GMT;Path=/ " + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "80046" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~`s,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7E%60s-13ac678cb27-0xb7" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "expires": "Sun, 18 Nov 2012 22:28:04 GMT" + }, + { + "last-modified": "Thu, 04 Oct 2007 21:44:39 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "3179" + }, + { + "etag": "\"078525ce2cc51:586\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Fri, 27 Aug 2010 00:22:48 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "391" + }, + { + "expires": "Sat, 03 Nov 2012 15:13:22 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Fri, 18 Mar 2005 23:05:11 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "136" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Thu, 06 Sep 2007 00:11:47 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "542" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "last-modified": "Thu, 06 Jul 2006 00:07:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0aa151a90a0c61:5e2\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "last-modified": "Tue, 24 May 2011 22:33:41 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "1351" + }, + { + "expires": "Sat, 03 Nov 2012 15:13:22 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "last-modified": "Thu, 06 Sep 2007 00:21:31 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80f7a0df1bf0c71:5b1\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "6386" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 25 Oct 2012 23:31:47 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "3276" + }, + { + "cache-control": "max-age=30794366" + }, + { + "expires": "Fri, 25 Oct 2013 23:31:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 25 Oct 2012 23:31:47 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "668" + }, + { + "cache-control": "max-age=30794366" + }, + { + "expires": "Fri, 25 Oct 2013 23:31:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 14 Jul 2012 00:50:47 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "44" + }, + { + "cache-control": "max-age=21813506" + }, + { + "expires": "Sun, 14 Jul 2013 00:50:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:56 GMT" + }, + { + "last-modified": "Tue, 02 Feb 2010 19:44:14 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "13817" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-language": "cs-CZ" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "6172" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "private, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 03:28:30 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "6661" + }, + { + "cache-control": "max-age=31413369" + }, + { + "expires": "Sat, 02 Nov 2013 03:28:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 06 Jul 2012 01:08:44 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "351" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "max-age=21123378" + }, + { + "expires": "Sat, 06 Jul 2013 01:08:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 22 Oct 2012 03:07:31 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4553" + }, + { + "cache-control": "max-age=29866596" + }, + { + "expires": "Tue, 15 Oct 2013 05:48:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 22 Sep 2012 19:51:38 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4694" + }, + { + "cache-control": "max-age=24377502" + }, + { + "expires": "Mon, 12 Aug 2013 17:04:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 30 Oct 2012 21:48:15 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5307" + }, + { + "cache-control": "max-age=31498703" + }, + { + "expires": "Sun, 03 Nov 2013 03:10:44 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 25 Oct 2012 23:32:05 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "3014" + }, + { + "cache-control": "max-age=30794343" + }, + { + "expires": "Fri, 25 Oct 2013 23:31:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "expires": "Tue, 18 Dec 2012 13:32:22 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:53:41 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "15981" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "expires": "Sun, 18 Nov 2012 22:28:04 GMT" + }, + { + "last-modified": "Fri, 25 Jun 2010 01:28:28 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "578" + }, + { + "etag": "\"0c688b6514cb1:586\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-language": "pt-BR" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "9688" + }, + { + "cache-control": "public, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:21 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:21 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "last-modified": "Tue, 20 Sep 2011 23:59:47 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "1780" + }, + { + "etag": "\"80e3ea8c9abcd1:639\"" + }, + { + "expires": "Mon, 26 Nov 2012 00:03:41 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07p-139944fe49b-0x176" + }, + { + "last-modified": "Thu, 23 Aug 2012 17:24:32 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "text/css" + }, + { + "content-length": "8722" + }, + { + "cache-control": "max-age=26399474" + }, + { + "expires": "Thu, 05 Sep 2013 02:43:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "last-modified": "Wed, 12 Jan 2011 20:27:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "342" + }, + { + "expires": "Mon, 26 Nov 2012 16:35:19 GMT" + }, + { + "cache-control": "max-age=3888000" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:55 GMT" + }, + { + "last-modified": "Wed, 19 Oct 2011 01:17:47 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "6641" + }, + { + "etag": "\"80af29e9fc8dcc1:8e4\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 11 Jul 2012 18:03:37 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2752" + }, + { + "cache-control": "max-age=14608007" + }, + { + "expires": "Sun, 21 Apr 2013 15:19:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "last-modified": "Tue, 07 Jul 2009 20:18:42 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "613" + }, + { + "expires": "Mon, 26 Nov 2012 16:35:19 GMT" + }, + { + "cache-control": "max-age=3888000" + }, + { + "etag": "\"03d21f40ffc91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 12 Jul 2012 22:44:28 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "551" + }, + { + "cache-control": "max-age=21719526" + }, + { + "expires": "Fri, 12 Jul 2013 22:44:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "expires": "Mon, 17 Dec 2012 20:39:34 GMT" + }, + { + "last-modified": "Tue, 20 Sep 2011 02:08:20 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80183dd68badcd1:720\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "17673" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B4%603g-13ac678e4f2-0x104" + }, + { + "set-cookie": "nonsession=CgADLAAFQlSPuMQDKACBZ+x5mYzY3OGU0YzgxM2EwYTVlNmM4ZDZjODQ2ZmZmOGYzYjlPrxuR;Domain=.raptor.ebaydesc.com;Expires=Sun, 03-Nov-2013 13:32:22 GMT;Path=/ " + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:03:20 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "54313" + }, + { + "cache-control": "max-age=31401067" + }, + { + "expires": "Sat, 02 Nov 2013 00:03:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 02 Nov 2012 00:03:52 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "20701" + }, + { + "cache-control": "max-age=31401093" + }, + { + "expires": "Sat, 02 Nov 2013 00:03:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9ve*t%28747%60e%7E%3A-13ac678e523-0x15c" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "3577" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "expires": "0" + }, + { + "set-cookie": "HT=1351949521580%0211529%04287876%06261345%0311528%04286823%06260443%0311527%04286801%06203908%011351949527269%02981%04-1%060%03980%04-1%060%03979%04-1%060%03688%04-1%060%03255%04-1%060%011351949541760%0211575%04-1%060%031527%04-1%060%03829%04-1%060%03912%04-1%060%03827%04-1%060%03876%04-1%060%03825%04-1%060%03433%04-1%060%031651%04-1%060%031650%04-1%060; Domain=main.ebayrtm.com; Path=/rtm" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 29 Oct 2012 21:23:48 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "5138" + }, + { + "cache-control": "max-age=31132229" + }, + { + "expires": "Tue, 29 Oct 2013 21:22:52 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "last-modified": "Thu, 04 Oct 2007 21:44:39 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "3179" + }, + { + "expires": "Fri, 14 Dec 2012 20:03:15 GMT" + }, + { + "cache-control": "max-age=3888000" + }, + { + "etag": "\"03d21f40ffc91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:23 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "content-length": "7004" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~`s,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7E%60s-13ac678cb27-0xb7" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:47:00 GMT" + }, + { + "last-modified": "Fri, 27 Aug 2010 00:22:54 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + }, + { + "etag": "\"80af29e9fc8dcc1:8e4\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "expires": "Fri, 26 Oct 2012 04:43:31 GMT" + }, + { + "last-modified": "Thu, 06 Oct 2005 21:29:14 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80fb69e73664c31:6fe\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "141" + }, + { + "cache-control": "max-age=3888000" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "last-modified": "Mon, 25 Jul 2005 20:31:43 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "64" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:59 GMT" + }, + { + "cache-control": "max-age=3888000" + }, + { + "etag": "\"03d21f40ffc91:5b1\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "expires": "Sun, 18 Nov 2012 22:28:04 GMT" + }, + { + "last-modified": "Tue, 25 Sep 2012 05:16:18 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "7623" + }, + { + "etag": "\"0c688b6514cb1:586\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Fri, 19 Oct 2012 22:52:32 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "949" + }, + { + "cache-control": "max-age=30273610" + }, + { + "expires": "Sat, 19 Oct 2013 22:52:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:22 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Tue, 19 Jun 2012 05:08:42 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1069" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "max-age=19670318" + }, + { + "expires": "Wed, 19 Jun 2013 05:31:01 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Thu, 25 Oct 2012 03:14:23 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "6931" + }, + { + "cache-control": "max-age=30721319" + }, + { + "expires": "Fri, 25 Oct 2013 03:14:22 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:23 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlog": "uh%60jk%3D9vj*ts67.21336g2-13ac678eef8" + }, + { + "x-ebay-request-id": "13ac678e-ef80-a5ac-0760-c260ff104b3e!ajax.all.get!10.90.192.118!ebay.com[]" + }, + { + "content-type": "application/json" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:24 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:25 GMT" + }, + { + "expires": "Sun, 18 Nov 2012 22:28:04 GMT" + }, + { + "last-modified": "Thu, 04 Oct 2012 18:56:36 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "9521" + }, + { + "etag": "\"0c688b6514cb1:586\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9un%7F4g65%60%283ab%3D-13ac678ef91-0x19c" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/json" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:25 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:30 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "90235" + }, + { + "date": "Sat, 03 Nov 2012 13:32:30 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~`s,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7E%60s-13ac678cb27-0xb7" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "date": "Sat, 03 Nov 2012 13:32:31 GMT" + }, + { + "expires": "Thu, 27 Sep 2012 23:15:40 GMT" + }, + { + "last-modified": "Fri, 21 Jan 2011 20:52:52 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:32 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "content-length": "80050" + }, + { + "date": "Sat, 03 Nov 2012 13:32:31 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~go,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7Ego-13ac6790aa0-0xb6" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "date": "Sat, 03 Nov 2012 13:32:32 GMT" + }, + { + "expires": "Fri, 26 Oct 2012 04:43:31 GMT" + }, + { + "last-modified": "Thu, 06 Oct 2005 21:29:14 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:32 GMT" + }, + { + "expires": "Fri, 14 Dec 2012 13:33:03 GMT" + }, + { + "last-modified": "Wed, 02 May 2012 23:09:29 GMT" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1544" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9un%7F4g65%60%28c1eg-13ac67910d1-0x179" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:32 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 29 May 2012 21:33:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4908" + }, + { + "cache-control": "max-age=8305824" + }, + { + "expires": "Thu, 07 Feb 2013 16:42:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:33 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:36 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "91130" + }, + { + "date": "Sat, 03 Nov 2012 13:32:36 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~go,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7Ego-13ac6790aa0-0xb6" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "date": "Sat, 03 Nov 2012 13:32:37 GMT" + }, + { + "expires": "Thu, 27 Sep 2012 23:15:40 GMT" + }, + { + "last-modified": "Fri, 21 Jan 2011 20:52:52 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:37 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "content-length": "80060" + }, + { + "date": "Sat, 03 Nov 2012 13:32:37 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "v .r+616d2tu,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fv%7F.r%2B616d2tu-13ac6791ff9-0xbc" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "date": "Sat, 03 Nov 2012 13:32:38 GMT" + }, + { + "expires": "Fri, 26 Oct 2012 04:43:31 GMT" + }, + { + "last-modified": "Thu, 06 Oct 2005 21:29:14 GMT" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "366" + }, + { + "etag": "\"0aa782badb9cb1:682\"" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1290" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "private, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:39 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cteonnt-length": "4588" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9un%7F4g66%60%283d30-13ac67928dc-0x197" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:39 GMT" + }, + { + "content-length": "42" + }, + { + "set-cookie": "npii=btguid/c67883f113a0a56964e646c6ffaa1ac152765078^cguid/c67885c613a0a0a9f6568b16ff5917ee52765078^; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:32:40 GMT; Path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa ADMa DEVa PSDo PSAa OUR SAMo IND UNI COM NAV INT STA DEM PRE\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:39 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "91165" + }, + { + "date": "Sat, 03 Nov 2012 13:32:39 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "v .r+616d2tu,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fv%7F.r%2B616d2tu-13ac6791ff9-0xbc" + }, + { + "rlogid": "t6ulcpjqcj9%3Fuk%601d72f%2B12%60b-13ac678e09e-0xc0" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9un%7F4g65%60%28555f-13ac6792d15-0x18d" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:41 GMT" + }, + { + "content-length": "42" + }, + { + "set-cookie": "npii=bcguid/c67885c613a0a0a9f6568b16ff5917ee52765079^tguid/c67883f113a0a56964e646c6ffaa1ac152765079^; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:32:41 GMT; Path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa ADMa DEVa PSDo PSAa OUR SAMo IND UNI COM NAV INT STA DEM PRE\"" + } + ] + }, + { + "headers": [ + { + ":status": "301" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:42 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://www.ebay.com/fashion/health-beauty" + }, + { + "rlogid": "p4pmiw%60jtb9%3Fv%7F.wcc%60dh72%3C-13ac6793402" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:42 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:43 GMT; Path=/" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-length": "12792" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "v .r+616d2tu,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fv%7F.r%2B616d2tu-13ac6791ff9-0xbc" + }, + { + "rlogid": "p4u%60tsjfgkpfiuf%3F%3Ctq%28qq.d%605g%6053-13ac679336d" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:47:45 GMT" + }, + { + "last-modified": "Thu, 05 Jul 2012 18:43:18 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "2469" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 24 May 2012 16:22:27 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5850" + }, + { + "cache-control": "max-age=31509956" + }, + { + "expires": "Sun, 03 Nov 2013 06:18:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "5679" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "public, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:43 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cteonnt-length": "4588" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sat, 27 Oct 2012 15:54:54 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6322" + }, + { + "cache-control": "max-age=31522197" + }, + { + "expires": "Sun, 03 Nov 2013 09:42:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g07n-13aac9b9c70-0x176" + }, + { + "last-modified": "Wed, 24 Oct 2012 22:29:19 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "250" + }, + { + "cache-control": "max-age=31102053" + }, + { + "expires": "Tue, 29 Oct 2013 13:00:16 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 26 Dec 2011 17:33:25 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5900" + }, + { + "cache-control": "max-age=31504816" + }, + { + "expires": "Sun, 03 Nov 2013 04:52:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 29 Oct 2012 15:32:58 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3953" + }, + { + "cache-control": "max-age=31511815" + }, + { + "expires": "Sun, 03 Nov 2013 06:49:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 12 Oct 2012 17:37:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4418" + }, + { + "cache-control": "max-age=29623692" + }, + { + "expires": "Sat, 12 Oct 2013 10:20:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Sep 2010 09:07:24 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "10098" + }, + { + "cache-control": "private, max-age=31536000" + }, + { + "expires": "Sun, 03 Nov 2013 13:32:43 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "last-modified": "Tue, 07 Aug 2012 21:01:25 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"804039cedf74cd1:603\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "113266" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 07 Aug 2012 05:29:55 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7341" + }, + { + "cache-control": "max-age=19386157" + }, + { + "expires": "Sat, 15 Jun 2013 22:35:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 23 Oct 2012 21:57:15 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7462" + }, + { + "cache-control": "max-age=31508534" + }, + { + "expires": "Sun, 03 Nov 2013 05:54:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 29 Oct 2012 02:39:26 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "10090" + }, + { + "cache-control": "max-age=31501318" + }, + { + "expires": "Sun, 03 Nov 2013 03:54:41 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 16 Oct 2012 19:32:45 GMT" + }, + { + "content-type": "text/css;charset=UTF-8" + }, + { + "content-length": "6377" + }, + { + "cache-control": "max-age=30002402" + }, + { + "expires": "Wed, 16 Oct 2013 19:32:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 29 May 2012 19:40:07 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4488" + }, + { + "cache-control": "max-age=7260395" + }, + { + "expires": "Sat, 26 Jan 2013 14:19:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 20 Jul 2012 23:29:38 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4889" + }, + { + "cache-control": "max-age=19908420" + }, + { + "expires": "Fri, 21 Jun 2013 23:39:43 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 09 Oct 2012 14:02:17 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3638" + }, + { + "cache-control": "max-age=28507880" + }, + { + "expires": "Sun, 29 Sep 2013 12:24:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 02 Oct 2012 18:02:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5356" + }, + { + "cache-control": "max-age=29198995" + }, + { + "expires": "Mon, 07 Oct 2013 12:22:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 12 Jul 2012 01:56:06 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4607" + }, + { + "cache-control": "max-age=20432905" + }, + { + "expires": "Fri, 28 Jun 2013 01:21:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 23 Jul 2012 16:18:08 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5128" + }, + { + "cache-control": "max-age=23738740" + }, + { + "expires": "Mon, 05 Aug 2013 07:38:23 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 29 Oct 2012 16:44:35 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7892" + }, + { + "cache-control": "max-age=31534799" + }, + { + "expires": "Sun, 03 Nov 2013 13:12:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 16 Oct 2012 03:33:23 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4234" + }, + { + "cache-control": "max-age=29726488" + }, + { + "expires": "Sun, 13 Oct 2013 14:54:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 20 Aug 2012 20:26:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3021" + }, + { + "cache-control": "max-age=26204352" + }, + { + "expires": "Mon, 02 Sep 2013 20:31:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 28 Sep 2012 15:22:25 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4919" + }, + { + "cache-control": "max-age=30719689" + }, + { + "expires": "Fri, 25 Oct 2013 02:47:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 22 Jul 2012 18:13:25 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4788" + }, + { + "cache-control": "max-age=20831615" + }, + { + "expires": "Tue, 02 Jul 2013 16:06:19 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 06 Jul 2012 20:15:28 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3987" + }, + { + "cache-control": "max-age=17873930" + }, + { + "expires": "Wed, 29 May 2013 10:31:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 16 Aug 2012 14:53:01 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4623" + }, + { + "cache-control": "max-age=20477655" + }, + { + "expires": "Fri, 28 Jun 2013 13:46:59 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 27 Jul 2012 17:58:05 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4821" + }, + { + "cache-control": "max-age=20499738" + }, + { + "expires": "Fri, 28 Jun 2013 19:55:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Fri, 13 Jul 2012 05:37:24 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5080" + }, + { + "cache-control": "max-age=19887245" + }, + { + "expires": "Fri, 21 Jun 2013 17:46:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "last-modified": "Fri, 02 Nov 2012 19:02:52 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "18863" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "max-age=40850" + }, + { + "expires": "Sun, 04 Nov 2012 00:53:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Thu, 27 Sep 2012 13:24:40 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "10030" + }, + { + "cache-control": "max-age=31521522" + }, + { + "expires": "Sun, 03 Nov 2013 09:31:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 16 Jul 2012 07:04:19 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6320" + }, + { + "cache-control": "max-age=23373247" + }, + { + "expires": "Thu, 01 Aug 2013 02:06:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + }, + { + "access-control-allow-origin": "*" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g3%7E1-13a3ef29997-0x16d" + }, + { + "last-modified": "Fri, 05 Oct 2012 05:17:21 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "60127" + }, + { + "cache-control": "max-age=29262216" + }, + { + "expires": "Tue, 08 Oct 2013 05:56:19 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Tue, 10 Jul 2012 21:28:46 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5983" + }, + { + "cache-control": "max-age=23738926" + }, + { + "expires": "Mon, 05 Aug 2013 07:41:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Sat, 27 Oct 2012 14:51:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "11895" + }, + { + "cache-control": "max-age=31510005" + }, + { + "expires": "Sun, 03 Nov 2013 06:19:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 22 Oct 2012 08:46:05 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7674" + }, + { + "cache-control": "max-age=31245727" + }, + { + "expires": "Thu, 31 Oct 2013 04:54:50 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Wed, 08 Aug 2012 18:20:46 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "12744" + }, + { + "cache-control": "max-age=26388803" + }, + { + "expires": "Wed, 04 Sep 2013 23:46:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Mon, 27 Aug 2012 19:38:43 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5852" + }, + { + "cache-control": "max-age=27384452" + }, + { + "expires": "Mon, 16 Sep 2013 12:20:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Tue, 22 Nov 2011 18:32:07 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6016" + }, + { + "cache-control": "max-age=31505442" + }, + { + "expires": "Sun, 03 Nov 2013 05:03:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 23 Sep 2012 20:27:09 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8741" + }, + { + "cache-control": "max-age=28128091" + }, + { + "expires": "Wed, 25 Sep 2013 02:54:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Thu, 25 Oct 2012 18:53:28 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5727" + }, + { + "cache-control": "max-age=31502723" + }, + { + "expires": "Sun, 03 Nov 2013 04:18:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Tue, 16 Oct 2012 19:32:46 GMT" + }, + { + "content-type": "application/x-javascript;charset=UTF-8" + }, + { + "content-length": "54418" + }, + { + "cache-control": "max-age=30002439" + }, + { + "expires": "Wed, 16 Oct 2013 19:33:22 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "last-modified": "Tue, 22 May 2012 19:02:53 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "2288" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "expires": "Sun, 25 Nov 2012 23:46:56 GMT" + }, + { + "last-modified": "Wed, 31 Aug 2011 00:39:15 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "cache-control": "max-age=3888000" + }, + { + "content-length": "5743" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 15 Jul 2012 05:26:27 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6174" + }, + { + "cache-control": "max-age=20606181" + }, + { + "expires": "Sun, 30 Jun 2013 01:29:05 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "last-modified": "Sun, 28 Oct 2012 20:13:40 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8182" + }, + { + "cache-control": "max-age=30802674" + }, + { + "expires": "Sat, 26 Oct 2013 01:50:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g065-13911ec26be-0x16d" + }, + { + "last-modified": "Wed, 08 Aug 2012 21:42:19 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "58636" + }, + { + "cache-control": "max-age=24211902" + }, + { + "expires": "Sat, 10 Aug 2013 19:04:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "last-modified": "Wed, 03 Oct 2012 22:05:50 GMT" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"804039cedf74cd1:603\"" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "content-length": "63909" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "*" + }, + { + "last-modified": "Mon, 29 Oct 2012 15:58:50 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13008" + }, + { + "cache-control": "max-age=31535919" + }, + { + "expires": "Sun, 03 Nov 2013 13:31:22 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4n%60rujfudlwc%3D9vt*ts67.4e6f0e0-13ac6793f33-0x19b" + }, + { + "cache-control": "private, no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:32:45 GMT" + }, + { + "content-length": "42" + }, + { + "set-cookie": "npii=btguid/c67883f113a0a56964e646c6ffaa1ac15276507d^cguid/c67885c613a0a0a9f6568b16ff5917ee5276507d^; Domain=.ebay.com; Expires=Sun, 03-Nov-2013 13:32:45 GMT; Path=/" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa ADMa DEVa PSDo PSAa OUR SAMo IND UNI COM NAV INT STA DEM PRE\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "rlogid": "p4pphdlwc%3D9u%7E*t%28750g3%7Fo-13a40772552-0x169" + }, + { + "last-modified": "Fri, 05 Oct 2012 05:19:14 GMT" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "115864" + }, + { + "cache-control": "max-age=29287759" + }, + { + "expires": "Tue, 08 Oct 2013 13:02:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:32:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "2703" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Wed, 28 Mar 2012 22:30:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/6.0" + }, + { + "date": "Sat, 03 Nov 2012 13:32:44 GMT" + }, + { + "expires": "Tue, 30 Oct 2012 19:27:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lucky9=1959890; Domain=.ebay.com; Expires=Thu, 02-Nov-2017 13:32:58 GMT; Path=/" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "content-length": "80064" + }, + { + "date": "Sat, 03 Nov 2012 13:32:58 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 23:04:12 GMT" + }, + { + "transaction": "uk.r+607b~k|,RcmdId FindingProductv4,RlogId p4pmiw%60jtb9%3Fuk.r%2B607b%7Ek%7C-13ac6796fd6-0xc1" + }, + { + "rlogid": "p4u%60tsjfgkpfiuf%3F%3Ctq%28qq.d%605g%6053-13ac679336d" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_26.json b/jetty-http2/http2-hpack/src/test/resources/data/story_26.json new file mode 100644 index 00000000000..143ced203fc --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_26.json @@ -0,0 +1,4439 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "522" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:20 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "IVe/SwucJuBsLtVHWJw2PMdOTOxuEWUir5igQNThkTg=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=17216869" + }, + { + "expires": "Tue, 21 May 2013 19:18:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Tue, 24 Apr 2012 22:13:35 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "95tUymdadFLd8Dpml8VnOoUG7KhisOwk74Kd/aIGfU0=" + }, + { + "x-cnection": "close" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "123" + }, + { + "cache-control": "public, max-age=16394910" + }, + { + "expires": "Sun, 12 May 2013 06:59:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:37:35 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "Qc0GcUiwi3io8aSRIdXaahYr6KKhphvV6NlN8vo/bD4=" + }, + { + "content-length": "14684" + }, + { + "cache-control": "public, max-age=31067635" + }, + { + "expires": "Tue, 29 Oct 2013 02:44:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:23 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "7exUqkoZxtfLseR1zLxJlXnpYK6MOognZuCKx7drdRo=" + }, + { + "content-length": "14438" + }, + { + "cache-control": "public, max-age=24926560" + }, + { + "expires": "Mon, 19 Aug 2013 00:53:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Mon, 29 Oct 2012 17:08:56 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "eRvyJLXIvW3Vu9d+m439v+LGKqXiLSKmz7w9/xMAUpc=" + }, + { + "content-length": "17475" + }, + { + "cache-control": "public, max-age=31124427" + }, + { + "expires": "Tue, 29 Oct 2013 18:31:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 22:55:27 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "14hoEcywNNMBIVUS5B7AD7RDGiDvJ4BGeOVgJbBDzf0=" + }, + { + "content-length": "44191" + }, + { + "cache-control": "public, max-age=31067635" + }, + { + "expires": "Tue, 29 Oct 2013 02:44:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:44 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Fri, 12 Oct 2012 18:34:48 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "41/HuGcFNMmys4cvGKlBeylojdVDP4+VBIf1giu3eNQ=" + }, + { + "content-length": "754" + }, + { + "cache-control": "public, max-age=29985162" + }, + { + "expires": "Wed, 16 Oct 2013 14:03:31 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 25 Oct 2012 16:05:53 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "oKQwv0JLYost+zqlv8x+C7MEL7zRBbeMomoc54M5RZY=" + }, + { + "x-cnection": "close" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "2349" + }, + { + "cache-control": "public, max-age=31067361" + }, + { + "expires": "Tue, 29 Oct 2013 02:40:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "2626" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:08:50 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "zh8tRHKFtERIZ+K/eGiM1utm1H66OnOj1qwPAN7Ck9A=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31068570" + }, + { + "expires": "Tue, 29 Oct 2013 03:00:19 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Fri, 28 Sep 2012 15:01:14 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "pricqIchHztHxKAQSidQiwGmRf62vAL6I7Oi0r/Ki08=" + }, + { + "content-length": "8036" + }, + { + "cache-control": "public, max-age=31066940" + }, + { + "expires": "Tue, 29 Oct 2013 02:33:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:42:19 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "Kur2FUUQjAQ0yPQJC9fvK56/+LWZHvyQF6Ce2Fuaf2k=" + }, + { + "content-length": "36302" + }, + { + "cache-control": "public, max-age=31068470" + }, + { + "expires": "Tue, 29 Oct 2013 02:58:39 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:02:51 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "wk2MWysJhw3Et7CRGMA1sE9HWuyzy8oCvtT2V7iPXeg=" + }, + { + "content-length": "8230" + }, + { + "cache-control": "public, max-age=25639699" + }, + { + "expires": "Tue, 27 Aug 2013 06:59:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:38:44 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "GMzzyj0B89LYf1zKH9hqxZekz5mYTmsuxwLugWyc2Gg=" + }, + { + "content-length": "4878" + }, + { + "cache-control": "public, max-age=31068529" + }, + { + "expires": "Tue, 29 Oct 2013 02:59:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Sat, 03 Nov 2012 04:37:48 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 04:37:48 GMT" + }, + { + "content-type": "application/ocsp-response" + }, + { + "content-transfer-encoding": "binary" + }, + { + "content-length": "1814" + }, + { + "cache-control": "max-age=575215, public, no-transform, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 12:50:53 GMT" + }, + { + "nncoection": "close" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":53,\"r\":26,\"q\":0,\"a\":25}" + }, + { + "x-fb-server": "10.74.89.23" + }, + { + "x-fb-debug": "7iLjsQVXsunUKXe3NlV2ytaBGzQ0VHCkMX/J6rEuB6Y=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:54 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 15:06:53 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "ur+THlFHeLotsmDlQWYPw2GRELyvg28JmE0JYVt56uo=" + }, + { + "content-length": "1155" + }, + { + "cache-control": "public, max-age=31067714" + }, + { + "expires": "Tue, 29 Oct 2013 02:46:08 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:54 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Fri, 31 Aug 2012 22:13:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "6/fKHkRtBpT4oqBg33tFHk2pO6SDZlUG11Uq4/AlUIE=" + }, + { + "content-length": "516" + }, + { + "cache-control": "public, max-age=26316304" + }, + { + "expires": "Wed, 04 Sep 2013 02:55:58 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:54 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "232" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Sat, 21 Apr 2012 07:03:57 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "XtTsONeGHGs/1vRRv8cvNY1ciB3XqlrvnTq2GZXvnqM=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=30419619" + }, + { + "expires": "Mon, 21 Oct 2013 14:44:35 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Fri, 07 Sep 2012 15:18:40 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "E2JBYTapyXFjxTTVqkrekTVKDp1lDQQT/7YxcxfNU2U=" + }, + { + "x-cnection": "close" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "400" + }, + { + "cache-control": "public, max-age=31066933" + }, + { + "expires": "Tue, 29 Oct 2013 02:33:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:41:45 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "iPbLdjapQzRoatbOUDrN+exDj8EPHJAcsZ48pVtprtA=" + }, + { + "content-length": "35766" + }, + { + "cache-control": "public, max-age=31068980" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:54 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Sun, 28 Oct 2012 14:34:50 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "0ci0R5R2ivIVCRrwtG507Eej+LTK8dUL8dIiZp70+dU=" + }, + { + "content-length": "10902" + }, + { + "cache-control": "public, max-age=31066965" + }, + { + "expires": "Tue, 29 Oct 2013 02:33:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:38:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "P2Bq0ebVXjtf8GyQp1HHux8NxlftUMXZuY8XF+yaOVo=" + }, + { + "content-length": "4676" + }, + { + "cache-control": "public, max-age=31088728" + }, + { + "expires": "Tue, 29 Oct 2013 08:36:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:37:10 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "yHzV/c0w3ZyInkRbLCDrA0t5adSMyAG4prBOk+i+t6Y=" + }, + { + "content-length": "20791" + }, + { + "cache-control": "public, max-age=31067654" + }, + { + "expires": "Tue, 29 Oct 2013 02:45:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "11113" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Sun, 28 Oct 2012 14:34:47 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "u363OvKFmnm717JBUXA5ePB8Ts0ppRI7+eEJwOOep6w=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31066988" + }, + { + "expires": "Tue, 29 Oct 2013 02:34:04 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:02:57 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "Yty+Te4OzfswtmjzbJmJZaybyM0hxXiRU2NtHEbDuPE=" + }, + { + "content-length": "43" + }, + { + "cache-control": "public, max-age=25753573" + }, + { + "expires": "Wed, 28 Aug 2013 14:37:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:24 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "yKFyrxwqBiumMPfWvv4morUUsmz9djZtSdmCoQMnchs=" + }, + { + "content-length": "571" + }, + { + "cache-control": "public, max-age=25753811" + }, + { + "expires": "Wed, 28 Aug 2013 14:41:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:22 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "HbryxnP7HNa7kdTChA6BppSjLQw0gz9ZzESCqEH3/9k=" + }, + { + "content-length": "43" + }, + { + "cache-control": "public, max-age=25753770" + }, + { + "expires": "Wed, 28 Aug 2013 14:40:26 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Tue, 28 Aug 2012 01:20:00 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "edgqdu1lFmUW32Et2hHoiAsp9kFIch8QDiciO71cQ4w=" + }, + { + "content-length": "12817" + }, + { + "cache-control": "public, max-age=26458041" + }, + { + "expires": "Thu, 05 Sep 2013 18:18:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:56 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:09:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "rXXtxI3fPgNHe6wKIDRBR0xjttUNeG+BDQM8QfKQa+A=" + }, + { + "content-length": "11688" + }, + { + "cache-control": "public, max-age=31068990" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "35165" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:06:47 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "fUJ2Nc9qJdBC1AnYFA5Vs1f7ozv+i/PTKO+Vep0A0HQ=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31068521" + }, + { + "expires": "Tue, 29 Oct 2013 02:59:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:07:00 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "s9ZmJKnYGlEjIGo8xQzxlhVM4nilGHgcv1fhK1Z7F1w=" + }, + { + "content-length": "1028" + }, + { + "cache-control": "public, max-age=31191849" + }, + { + "expires": "Wed, 30 Oct 2013 13:15:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:07:08 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "hMQvA7xhuAspt5fOxedr0fWzQZNLkyizVtlmspzgVG8=" + }, + { + "content-length": "47844" + }, + { + "cache-control": "public, max-age=31068990" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Mon, 29 Oct 2012 19:17:24 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "1EkJKYLfWucaDVhZCEVAAo57HpAH7rvF4r9IwDXM2B8=" + }, + { + "content-length": "42391" + }, + { + "cache-control": "public, max-age=31143832" + }, + { + "expires": "Tue, 29 Oct 2013 23:54:49 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "13181" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:10:32 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "dO6OKUf38jDdtAnTrM28wZTBz9Y5hU/0EJdd1CkWGDs=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31068989" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Fri, 02 Nov 2012 19:03:57 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "IlZ4dyc3v7fqrfiamqJbFeFTWRkUvEUs2L8KLXNa+5o=" + }, + { + "content-length": "23736" + }, + { + "cache-control": "public, max-age=31478360" + }, + { + "expires": "Sat, 02 Nov 2013 20:50:17 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Thu, 01 Nov 2012 20:35:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "REVz0k4Gud7bedzv9KSTG2i1KOporb0T14mWht95MIE=" + }, + { + "content-length": "12969" + }, + { + "cache-control": "public, max-age=31394885" + }, + { + "expires": "Fri, 01 Nov 2013 21:39:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:06:44 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "VKvuYL/9rqvjXh7mr8LjSJmcgQLZ/a+Ztqj2aUsPacc=" + }, + { + "content-length": "8457" + }, + { + "cache-control": "public, max-age=31088728" + }, + { + "expires": "Tue, 29 Oct 2013 08:36:26 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":26,\"r\":18,\"q\":0,\"a\":30}" + }, + { + "x-fb-server": "10.164.86.49" + }, + { + "x-fb-debug": "egJridVr0Ohgw3QbFe66p8hTV/ZDa+ldtrrj55f1Dwg=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":15,\"r\":74,\"q\":0,\"a\":21}" + }, + { + "x-fb-server": "10.164.212.85" + }, + { + "x-fb-debug": "7JVbUHGoJcLzIbHgkJPv0DSBycKYYPPorUc0i6OdRw8=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":33,\"r\":14,\"q\":0,\"a\":27}" + }, + { + "x-fb-server": "10.164.203.85" + }, + { + "x-fb-debug": "SHFiC3r5rPZSoyQ6AT4o7Lrz58o2i0cRMRoLoKKAVLc=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "10334" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":47,\"r\":27,\"q\":0,\"a\":24}" + }, + { + "x-fb-server": "10.164.121.55" + }, + { + "x-fb-debug": "B8TQ25HLrpUM+2nuhej+798G7ib2rXsLxKDRmmd6364=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "79019" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:05 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "q1YlNQFhUrIi0HF88gF/s47itTMC0ALVS2i6Xo/eSFQ=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=17216856" + }, + { + "expires": "Tue, 21 May 2013 19:18:35 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:20 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "OOKrpYeJ1K2euVWUg0h3X4OLDU+bPXAhHe2ZbKmaIIo=" + }, + { + "content-length": "43" + }, + { + "cache-control": "public, max-age=17216855" + }, + { + "expires": "Tue, 21 May 2013 19:18:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:42:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "BWYgCEbzeWyERD5oPP51t1mG+xnS0km1r6TZrds9BdY=" + }, + { + "content-length": "55530" + }, + { + "cache-control": "public, max-age=31068989" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:27 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:58 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/png" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":47,\"r\":27,\"q\":0,\"a\":24}" + }, + { + "x-fb-server": "10.164.121.55" + }, + { + "x-fb-debug": "6DDnMStngO3Ec4qHVJLnouT/OjWIKWOh3p7X19lwA2E=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "67" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "x-fb-debug": "DY+dO6Fs6HOjJLzXfO2vzcoACugopwtj+ZfSFe3+0Io=" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "67" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Mon, 15 Oct 2012 01:19:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "U3t5ojZAXSlz/rftvVXMdi+dQaAlCxv95u4nFdmaOpU=" + }, + { + "content-length": "6332" + }, + { + "cache-control": "public, max-age=29865483" + }, + { + "expires": "Tue, 15 Oct 2013 04:49:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:50:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:19 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "WkN9kzT0IbJnmPVAe/JpiO1KA3sDm5JiLNu+peaU22E=" + }, + { + "content-length": "1025" + }, + { + "cache-control": "public, max-age=17216854" + }, + { + "expires": "Tue, 21 May 2013 19:18:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:00 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "7905" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:38:51 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "flUDwRXAcKGlCZV+B6xp1kix2zMM2jCaLr8GXWfOS9o=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31191685" + }, + { + "expires": "Wed, 30 Oct 2013 13:12:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:00 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "960" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 07 Jun 2012 20:17:10 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "s2bSrOgSOrnc1I2Y+hCmZNjO4JKRAsJvvEShk7xvQh0=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=25753518" + }, + { + "expires": "Wed, 28 Aug 2013 14:36:20 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Fri, 13 Jul 2012 13:05:49 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "dSqFMj3BQam7KrjoHsDUySNYx2e/ZA4jk+iLwQD5q+M=" + }, + { + "content-length": "1421" + }, + { + "cache-control": "public, max-age=25753545" + }, + { + "expires": "Wed, 28 Aug 2013 14:36:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "3977" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:41:38 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "if1LyEGCEK6E/tHFIYqTdcReGf2YlH/8CNcvt0MSb5c=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31162173" + }, + { + "expires": "Wed, 30 Oct 2013 05:00:35 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:03 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "0MQqsPt7SaQdEz9msJEk0wieC0zyyvfgvjy4gscfRm4=" + }, + { + "content-length": "316" + }, + { + "cache-control": "public, max-age=25628126" + }, + { + "expires": "Tue, 27 Aug 2013 03:46:29 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6779" + }, + { + "last-modified": "Wed, 09 May 2012 22:55:50 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7899" + }, + { + "last-modified": "Mon, 14 May 2012 09:15:54 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8961" + }, + { + "last-modified": "Fri, 10 Aug 2012 23:04:25 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7270" + }, + { + "last-modified": "Thu, 17 May 2012 17:02:26 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "10284" + }, + { + "last-modified": "Fri, 14 Sep 2012 13:43:01 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6932" + }, + { + "last-modified": "Tue, 15 May 2012 16:53:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "19404" + }, + { + "last-modified": "Fri, 13 Jul 2012 21:38:17 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":23,\"r\":24,\"q\":0,\"a\":31}" + }, + { + "x-fb-server": "10.164.204.89" + }, + { + "x-fb-debug": "mhzgPOTS+rD7XyjD1gp3zWldoiZpmeeyK0sWCXxCmL8=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":13,\"r\":137,\"q\":0,\"a\":23}" + }, + { + "x-fb-server": "10.164.167.53" + }, + { + "x-fb-debug": "uWC6Yw5Jjt8tp6GMW/0c7q4sQiyN+cfsFumyrajMSLE=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":20,\"r\":43,\"q\":0,\"a\":30}" + }, + { + "x-fb-server": "10.165.52.67" + }, + { + "x-fb-debug": "K6O9zzGnsjkFUcjVnvogKEp8WyYKDD5/1SRA3JOqTz8=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "10334" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/jpeg" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":40,\"r\":33,\"q\":0,\"a\":22}" + }, + { + "x-fb-server": "10.164.10.79" + }, + { + "x-fb-debug": "gU+KRCRWrUp+aETSVFA2+QqzJ57Mry5y8i9NZISRzV4=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "79019" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0" + }, + { + "content-type": "image/png" + }, + { + "expires": "Thu, 1 Apr 2004 01:01:01 GMT" + }, + { + "last-modified": "Thu, 1 Apr 2004 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-fb-metrics": "{\"w\":40,\"r\":33,\"q\":0,\"a\":22}" + }, + { + "x-fb-server": "10.164.10.79" + }, + { + "x-fb-debug": "2KYdrNd+vAjbaW2+l9lZ0c9qQnQQuLC0uV+aDWEfnEs=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "67" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "x-fb-debug": "ltZY31wZe0x9jjXZ+/GQMCIZ6L+UzLcVFaj4Ye8cEag=" + }, + { + "date": "Sat, 03 Nov 2012 12:51:04 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "67" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "32220" + }, + { + "last-modified": "Mon, 15 Oct 2012 15:37:08 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "105703" + }, + { + "last-modified": "Mon, 15 Oct 2012 15:38:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "36768" + }, + { + "last-modified": "Thu, 01 Nov 2012 01:55:42 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "119574" + }, + { + "last-modified": "Fri, 26 Oct 2012 09:41:12 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:03 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "659" + }, + { + "content-type": "image/x-icon" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:22 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "yE8mx2kOMcI8Q4MtoKCXYAXv7xSMQBGufoB0y/qkYEs=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=16309260" + }, + { + "expires": "Sat, 11 May 2013 07:12:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:06 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6966" + }, + { + "last-modified": "Thu, 17 May 2012 16:26:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4501" + }, + { + "last-modified": "Fri, 06 Jul 2012 11:36:45 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "37432" + }, + { + "last-modified": "Mon, 04 Jun 2012 08:35:52 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7198" + }, + { + "last-modified": "Tue, 15 May 2012 16:45:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "13454" + }, + { + "last-modified": "Thu, 31 May 2012 01:48:38 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-encoding": "gzip" + }, + { + "content-type": "application/json" + }, + { + "access-control-allow-origin": "http://www.facebook.com" + }, + { + "access-control-allow-credentials": "true" + }, + { + "cache-control": "private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0" + }, + { + "pragma": "no-cache" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 12:51:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "19537" + }, + { + "last-modified": "Tue, 19 Jun 2012 08:51:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5842" + }, + { + "last-modified": "Mon, 14 May 2012 22:03:47 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6973" + }, + { + "last-modified": "Tue, 22 May 2012 23:26:43 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7263" + }, + { + "last-modified": "Mon, 11 Jun 2012 21:11:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6222" + }, + { + "last-modified": "Tue, 15 May 2012 02:10:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8005" + }, + { + "last-modified": "Fri, 13 Jul 2012 02:50:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7949" + }, + { + "last-modified": "Wed, 31 Oct 2012 17:25:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5850" + }, + { + "last-modified": "Wed, 23 May 2012 13:04:05 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4860" + }, + { + "last-modified": "Fri, 18 May 2012 06:59:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "36615" + }, + { + "last-modified": "Fri, 08 Jun 2012 09:18:35 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "26180" + }, + { + "last-modified": "Fri, 01 Jun 2012 12:58:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8551" + }, + { + "last-modified": "Wed, 16 May 2012 00:19:20 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7021" + }, + { + "last-modified": "Fri, 18 May 2012 08:58:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8126" + }, + { + "last-modified": "Thu, 17 May 2012 10:31:00 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "21780" + }, + { + "last-modified": "Fri, 20 Jul 2012 20:43:14 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "16109" + }, + { + "last-modified": "Fri, 08 Jun 2012 21:45:00 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5248" + }, + { + "last-modified": "Tue, 15 May 2012 17:19:22 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7600" + }, + { + "last-modified": "Tue, 15 May 2012 00:02:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8148" + }, + { + "last-modified": "Tue, 04 Sep 2012 05:25:17 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "23688" + }, + { + "last-modified": "Tue, 05 Jun 2012 16:58:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "32579" + }, + { + "last-modified": "Fri, 15 Jun 2012 23:21:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "36154" + }, + { + "last-modified": "Tue, 15 May 2012 16:53:04 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8261" + }, + { + "last-modified": "Thu, 17 May 2012 16:15:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "34603" + }, + { + "last-modified": "Tue, 05 Jun 2012 19:33:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "cache-control": "max-age=1209600" + }, + { + "expires": "Sat, 17 Nov 2012 12:51:03 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "19320" + }, + { + "last-modified": "Fri, 20 Jul 2012 22:33:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "date": "Sat, 03 Nov 2012 12:51:09 GMT" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sat, 27 Oct 2012 21:59:56 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "cEr4CpqyPlutZEM5egM7EW1V/FoNLas8puqhILOyn6g=" + }, + { + "content-length": "1589" + }, + { + "cache-control": "public, max-age=31191410" + }, + { + "expires": "Wed, 30 Oct 2013 13:08:05 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:34 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "SjbWzWIhc5uDeUgKzkah4oVawEfOfsqgn79tJvLiODA=" + }, + { + "content-length": "124" + }, + { + "cache-control": "public, max-age=25632795" + }, + { + "expires": "Tue, 27 Aug 2013 05:04:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:02:59 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "8BYYADIiLWZPRqrmghOTJnnu5b75InjLJYums29XQC4=" + }, + { + "content-length": "178" + }, + { + "cache-control": "public, max-age=25638838" + }, + { + "expires": "Tue, 27 Aug 2013 06:45:13 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Fri, 26 Oct 2012 21:42:07 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "rg/3x10ePyW5+Yv14okaeMgQpdIDitUpRdeQlHd62wU=" + }, + { + "content-length": "3403" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "public, max-age=31099667" + }, + { + "expires": "Tue, 29 Oct 2013 11:39:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:11:34 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "+G0d7Y1/nAK76h5l1ygZcgFyqkHdYYjzu9bN8TThTW0=" + }, + { + "content-length": "3794" + }, + { + "cache-control": "public, max-age=31090886" + }, + { + "expires": "Tue, 29 Oct 2013 09:12:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:16 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Thu, 27 Sep 2012 22:19:28 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "Zx9+0hICgorbmj40+TVQqx/6DWk0JFijw5sOouOK4x8=" + }, + { + "content-length": "4316" + }, + { + "cache-control": "public, max-age=31191442" + }, + { + "expires": "Wed, 30 Oct 2013 13:08:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:16 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:02:59 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "y9gp03qLmGwdrjrggsFyxKUnduRuH6ZkhHy3J217wnA=" + }, + { + "content-length": "82" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "public, max-age=25628121" + }, + { + "expires": "Tue, 27 Aug 2013 03:46:37 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Thu, 12 Apr 2012 03:03:15 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "y31IzOtXz6QEqDb4Yh8nL9E7Jz3QdrtFTVTfJpFI67s=" + }, + { + "content-length": "281" + }, + { + "cache-control": "public, max-age=25628127" + }, + { + "expires": "Tue, 27 Aug 2013 03:46:43 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:16 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:07:48 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "cdKo7nf6SbFgEUsu8p8ZpYkyd14IkSsYwu8pEpjIPW8=" + }, + { + "content-length": "18581" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "public, max-age=31068960" + }, + { + "expires": "Tue, 29 Oct 2013 03:07:15 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "last-modified": "Sun, 28 Oct 2012 21:28:22 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "Mcoj0fymAm3BWRvLoE9uVgrJkXk8Wldn9hUKly6PE60=" + }, + { + "content-length": "686" + }, + { + "cache-control": "public, max-age=31067324" + }, + { + "expires": "Tue, 29 Oct 2013 02:40:01 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:17 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "70824" + }, + { + "content-type": "image/png" + }, + { + "last-modified": "Sun, 28 Oct 2012 14:35:10 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "U6CnJQe7lFM5/wvYBRcEyvixo284qs3dxFI4vIJ3Sfo=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=31117935" + }, + { + "expires": "Tue, 29 Oct 2013 16:43:30 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:15 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "6953" + }, + { + "content-type": "application/x-shockwave-flash" + }, + { + "last-modified": "Mon, 29 Oct 2012 18:56:50 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "8ROXKJ/K5IoNZG3RcJoN8LoohKyoDW2iTe6nY9hRINI=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=260332" + }, + { + "expires": "Tue, 06 Nov 2012 13:10:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:20 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "6953" + }, + { + "content-type": "application/x-shockwave-flash" + }, + { + "last-modified": "Mon, 29 Oct 2012 18:56:50 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "8ROXKJ/K5IoNZG3RcJoN8LoohKyoDW2iTe6nY9hRINI=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=260331" + }, + { + "expires": "Tue, 06 Nov 2012 13:10:12 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:21 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Tue, 30 Oct 2012 17:45:29 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "x-fb-debug": "casrvtlqM38DGgUK+sC64wYFWqXchCM2wnMjgM8VC98=" + }, + { + "content-length": "15685" + }, + { + "cache-control": "public, max-age=31299110" + }, + { + "expires": "Thu, 31 Oct 2013 19:03:10 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:20 GMT" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-cnection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "1591" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "last-modified": "Thu, 20 Sep 2012 01:12:35 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-fb-debug": "E9XqLqcAPtaMWK+vlxTTyhNPMewUq9nSCKax+m9KMwk=" + }, + { + "x-cnection": "close" + }, + { + "cache-control": "public, max-age=28776235" + }, + { + "expires": "Wed, 02 Oct 2013 14:15:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 12:51:29 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_27.json b/jetty-http2/http2-hpack/src/test/resources/data/story_27.json new file mode 100644 index 00000000000..0a0077dcd2c --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_27.json @@ -0,0 +1,9890 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:41:12 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:12 GMT; path=/; domain=.flickr.com" + }, + { + "location": "http://www.flickr.com/" + }, + { + "cache-control": "private" + }, + { + "x-served-by": "www199.flickr.mud.yahoo.com" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "20" + }, + { + "connection": "close" + }, + { + "content-type": "text/html; charset=UTF-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:13 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:05:01 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www199.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "no-store, no-cache, must-revalidate, max-age=0" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r16.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:15 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Wed, 31 Oct 2012 09:50:22 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www25.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "max-age=315360000" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/png" + }, + { + "age": "273053" + }, + { + "via": "HTTP/1.1 r42.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 04:23:38 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:08 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "21830" + }, + { + "x-served-by": "www145.flickr.mud.yahoo.com" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "cache-control": "max-age=315360000" + }, + { + "content-type": "image/png" + }, + { + "age": "206257" + }, + { + "via": "HTTP/1.1 r46.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ]), HTTP/1.1 r9.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:15 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www187.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r44.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:15 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:16 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 355 dc10_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:17 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "327" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:28:23 GMT" + }, + { + "p3p": "policyref=\"http://p3p.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV\"" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:00:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding,User-Agent" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=3600" + }, + { + "content-type": "text/plain; charset=utf-8" + }, + { + "age": "773" + }, + { + "content-length": "111260" + }, + { + "connection": "keep-alive" + }, + { + "server": "ATS/3.2.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:16 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:19 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www18.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r48.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "fldetectedlang=en-us; expires=Wed, 02-Jan-2013 13:41:19 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5002" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:30:08 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:33 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "45842" + }, + { + "x-cache": "HIT from photocache510.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache510.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache510.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2849" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:51:39 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "88063" + }, + { + "x-cache": "HIT from photocache540.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache540.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache540.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3533" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Thu, 27 Oct 2022 22:31:31 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "609449" + }, + { + "x-cache": "HIT from photocache530.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache530.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache530.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8165" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 03 Jul 2022 07:34:11 UTC" + }, + { + "last-modified": "Tue, 10 Nov 2009 20:15:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "1332" + }, + { + "x-cache": "HIT from photocache324.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache324.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache324.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "16040" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:51:39 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:32 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "104768" + }, + { + "x-cache": "HIT from photocache518.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache518.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache518.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "16818" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:51:39 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "104768" + }, + { + "x-cache": "HIT from photocache530.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache530.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache530.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "258838" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:14:20 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "3930" + }, + { + "x-cache": "HIT from photocache534.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache534.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache534.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "15513" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:47:34 UTC" + }, + { + "last-modified": "Mon, 06 Jun 2011 11:22:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "9645" + }, + { + "x-cache": "HIT from photocache502.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache502.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache502.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:20 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 380 dc11_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:21 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:21 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7878" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Wed, 20 Jul 2022 12:23:18 UTC" + }, + { + "last-modified": "Mon, 23 Jun 2008 19:15:04 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "41746" + }, + { + "x-cache": "HIT from photocache114.flickr.mud.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache114.flickr.mud.yahoo.com:83" + }, + { + "via": "1.1 photocache114.flickr.mud.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:21 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:21 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3339" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sat, 01 Oct 2022 14:49:54 UTC" + }, + { + "last-modified": "Mon, 01 Oct 2012 03:50:32 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "79702" + }, + { + "x-cache": "HIT from photocache902.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache902.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache902.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:21 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www145.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/javascript; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r02.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "fldetectedlang=en-us; expires=Wed, 02-Jan-2013 13:41:19 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3403" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:01:02 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:47 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "146624" + }, + { + "x-cache": "HIT from photocache538.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache538.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache538.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3018" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:06 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "498650" + }, + { + "x-cache": "HIT from photocache509.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache509.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache509.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3493" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:01:02 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:49 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "184716" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "19066" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:06 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "498650" + }, + { + "x-cache": "HIT from photocache534.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache534.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache534.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "14587" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:06 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:44:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "498650" + }, + { + "x-cache": "HIT from photocache512.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache512.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache512.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "16541" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:51:39 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:55 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "64145" + }, + { + "x-cache": "HIT from photocache538.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache538.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache538.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "17669" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:06 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:48 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "498070" + }, + { + "x-cache": "HIT from photocache536.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache536.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache536.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "17009" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:06 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:40 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "498070" + }, + { + "x-cache": "HIT from photocache529.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache529.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache529.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "110090" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:50:49 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "104763" + }, + { + "x-cache": "HIT from photocache508.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache508.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache508.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:22 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "121145" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:14:22 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "104763" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:23 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www105.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r08.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:23 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:24 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 328 dc26_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:25 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:24 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5372" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 24 Jul 2022 05:03:05 UTC" + }, + { + "last-modified": "Sat, 10 Jul 2010 18:58:01 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "113797" + }, + { + "x-cache": "HIT from photocache417.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache417.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache417.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:24 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:25 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "101072" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:13:50 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:33 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "399124" + }, + { + "x-cache": "HIT from photocache502.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache502.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache502.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:25 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www135.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "3" + }, + { + "via": "HTTP/1.1 r34.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:25 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:26 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 358 dc28_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:27 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:26 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:26 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:27 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:27 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "131822" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:13:19 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:40 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "399125" + }, + { + "x-cache": "HIT from photocache529.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache529.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache529.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:27 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www198.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "3" + }, + { + "via": "HTTP/1.1 r34.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:27 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:28 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 366 dc36_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:29 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:29 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:29 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "137767" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 09:13:04 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:48 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "959688" + }, + { + "x-cache": "HIT from photocache512.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache512.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache512.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Fri, 06 Jul 2012 19:15:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www24.flickr.bf1.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "1" + }, + { + "via": "HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "35102" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:30 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "9755" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:41 UTC" + }, + { + "last-modified": "Mon, 04 Oct 2010 23:11:18 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "783768" + }, + { + "x-cache": "HIT from photocache526.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache526.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache526.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "8018" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:41 UTC" + }, + { + "last-modified": "Mon, 04 Oct 2010 23:11:16 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "783767" + }, + { + "x-cache": "HIT from photocache521.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache521.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache521.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5509" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:41 UTC" + }, + { + "last-modified": "Mon, 04 Oct 2010 23:11:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "849721" + }, + { + "x-cache": "HIT from photocache517.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache517.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache517.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "24244" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:41 UTC" + }, + { + "last-modified": "Mon, 04 Oct 2010 23:11:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "832233" + }, + { + "x-cache": "HIT from photocache503.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache503.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache503.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "15699" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:49:46 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:54 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "184724" + }, + { + "x-cache": "HIT from photocache535.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache535.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache535.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26051" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:41 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 19:06:02 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "783767" + }, + { + "x-cache": "HIT from photocache501.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache501.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache501.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13263" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:08 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "216108" + }, + { + "x-cache": "HIT from photocache525.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache525.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache525.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "19324" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 03 Jul 2022 22:23:27 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:49 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301732" + }, + { + "x-cache": "HIT from photocache539.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache539.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache539.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "21573" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:42 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:47 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "14644" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "20730" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:42 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:44:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301890" + }, + { + "x-cache": "HIT from photocache528.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache528.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache528.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "32916" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:08 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "251785" + }, + { + "x-cache": "HIT from photocache526.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache526.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache526.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26574" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:27:42 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:55 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "832232" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "27759" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:23 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:48 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301883" + }, + { + "x-cache": "HIT from photocache528.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache528.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache528.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "11409" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:10 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "832232" + }, + { + "x-cache": "HIT from photocache524.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache524.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache524.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26453" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 24 Jul 2022 04:56:22 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:33 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "3058" + }, + { + "x-cache": "HIT from photocache526.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache526.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache526.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "23128" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:23 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:33 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301877" + }, + { + "x-cache": "HIT from photocache534.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache534.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache534.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "28275" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:23 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:40 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301881" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:30 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "26267" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:23 UTC" + }, + { + "last-modified": "Wed, 15 Sep 2010 19:43:19 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301876" + }, + { + "x-cache": "HIT from photocache514.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache514.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache514.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:31 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 369 dc23_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:32 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:31 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:31 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:31 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Wed, 31 Oct 2012 09:31:12 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www96.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "max-age=1209600" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/vnd.microsoft.icon" + }, + { + "age": "274220" + }, + { + "via": "HTTP/1.1 r15.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cHs f ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:30 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:33 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www1.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r12.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:33 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "19144" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301872" + }, + { + "x-cache": "HIT from photocache508.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache508.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache508.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "24110" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:04 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "840419" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "32406" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 18:43:07 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "166451" + }, + { + "x-cache": "HIT from photocache529.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache529.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache529.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "20059" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "382867" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "23332" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:41:55 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:17 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "68360" + }, + { + "x-cache": "HIT from photocache525.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache525.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache525.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "18543" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:24:48 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "458533" + }, + { + "x-cache": "HIT from photocache538.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache538.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache538.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "15399" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 30 Oct 2022 01:48:16 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "424858" + }, + { + "x-cache": "HIT from photocache324.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache324.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache324.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "29793" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Tue, 16 Aug 2022 22:34:17 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 22:00:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "840419" + }, + { + "x-cache": "HIT from photocache401.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache401.flickr.ac4.yahoo.com:81" + }, + { + "via": "1.1 photocache401.flickr.ac4.yahoo.com:81 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13571" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:16:36 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "783188" + }, + { + "x-cache": "HIT from photocache508.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache508.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache508.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "18149" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 12 Jun 2022 23:12:34 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:16 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "953364" + }, + { + "x-cache": "HIT from photocache414.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache414.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache414.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "15403" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "388250" + }, + { + "x-cache": "HIT from photocache529.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache529.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache529.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "14796" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:24 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "320180" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "18710" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:24 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "840419" + }, + { + "x-cache": "HIT from photocache531.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache531.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache531.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "32555" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 19 Jun 2022 15:01:08 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 22:00:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "58741" + }, + { + "x-cache": "HIT from photocache412.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache412.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache412.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13726" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:10 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:24 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "840419" + }, + { + "x-cache": "HIT from photocache531.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache531.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache531.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "27660" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 22:06:36 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:47 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "320180" + }, + { + "x-cache": "HIT from photocache526.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache526.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache526.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "19545" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:38:09 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "840419" + }, + { + "x-cache": "HIT from photocache517.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache517.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache517.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "30518" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 16:28:03 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "49685" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:34 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 310 dc33_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:35 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:35 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:38 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 342 dc32_ne1" + }, + { + "connection": "close" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:39 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "site tracked" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:39 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www31.flickr.bf1.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "3" + }, + { + "via": "HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:39 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:40 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:41 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 352 dc19_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:42 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "imp=a$le#1351950101610_669834368_ap2101_int|; Domain=.teracent.net; Expires=Thu, 02-May-2013 13:41:41 GMT; Path=/tase" + }, + { + "p3p": "CP=\"CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"" + }, + { + "expires": "Sat, 6 May 1995 12:00:00 GMT" + }, + { + "cache-control": "post-check=0, pre-check=0" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:41:41 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:41 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www56.flickr.bf1.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:44 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2830" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:50:16 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:21 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "4009" + }, + { + "x-cache": "HIT from photocache501.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache501.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache501.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4884" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:44:25 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:51 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "159147" + }, + { + "x-cache": "HIT from photocache520.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache520.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache520.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3513" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:49:35 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:18 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "4010" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6899" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:49:08 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:22 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328198" + }, + { + "x-cache": "HIT from photocache518.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache518.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache518.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4695" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Thu, 03 Nov 2022 23:49:24 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "MISS from photocache514.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "MISS from photocache514.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache514.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2596" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:55:46 UTC" + }, + { + "last-modified": "Mon, 04 Oct 2010 23:11:49 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431512" + }, + { + "x-cache": "HIT from photocache518.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache518.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache518.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3516" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 17:53:36 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "302049" + }, + { + "x-cache": "HIT from photocache501.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache501.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache501.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4922" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:47 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "36944" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3158" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:46:15 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328157" + }, + { + "x-cache": "HIT from photocache512.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache512.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache512.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4541" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Thu, 16 Sep 2010 17:19:49 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "302053" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4145" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 07:51:21 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:40:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328231" + }, + { + "x-cache": "HIT from photocache508.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache508.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache508.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3419" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:06:37 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "650868" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5035" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:41:31 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:02 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "3999" + }, + { + "x-cache": "HIT from photocache534.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache534.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache534.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:44 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 305 dc9_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:46 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "45" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5313" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Thu, 01 Sep 2022 04:55:06 UTC" + }, + { + "last-modified": "Fri, 31 Aug 2012 18:28:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "959613" + }, + { + "x-cache": "HIT from photocache906.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache906.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache906.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4675" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Wed, 07 Sep 2022 05:56:52 UTC" + }, + { + "last-modified": "Thu, 06 Sep 2012 18:42:55 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "338945" + }, + { + "x-cache": "HIT from photocache907.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache907.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache907.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7282" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 28 Aug 2022 09:31:01 UTC" + }, + { + "last-modified": "Mon, 27 Aug 2012 22:28:20 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "73654" + }, + { + "x-cache": "HIT from photocache924.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache924.flickr.bf1.yahoo.com:85" + }, + { + "via": "1.1 photocache924.flickr.bf1.yahoo.com:85 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4242" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Thu, 01 Sep 2022 04:55:06 UTC" + }, + { + "last-modified": "Fri, 31 Aug 2012 18:28:53 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "959613" + }, + { + "x-cache": "HIT from photocache926.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache926.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache926.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4561" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 17 Jul 2022 03:19:16 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "4005" + }, + { + "x-cache": "HIT from photocache203.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache203.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache203.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6350" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 17 Jul 2022 04:55:35 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 16:18:41 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431728" + }, + { + "x-cache": "HIT from photocache204.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache204.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache204.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3341" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 17 Jul 2022 18:09:37 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:14 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328215" + }, + { + "x-cache": "HIT from photocache205.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache205.flickr.bf1.yahoo.com:85" + }, + { + "via": "1.1 photocache205.flickr.bf1.yahoo.com:85 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7005" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 18 Jul 2022 01:41:12 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "4064" + }, + { + "x-cache": "HIT from photocache202.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache202.flickr.bf1.yahoo.com:85" + }, + { + "via": "1.1 photocache202.flickr.bf1.yahoo.com:85 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4068" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 18 Jul 2022 03:45:04 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:01 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "438025" + }, + { + "x-cache": "HIT from photocache202.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache202.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache202.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7960" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 18 Jul 2022 03:44:32 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:41:20 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328207" + }, + { + "x-cache": "HIT from photocache205.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache205.flickr.bf1.yahoo.com:85" + }, + { + "via": "1.1 photocache205.flickr.bf1.yahoo.com:85 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:45 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:46 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4395" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 18 Jul 2022 03:45:05 UTC" + }, + { + "last-modified": "Mon, 01 Nov 2010 05:40:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2328241" + }, + { + "x-cache": "HIT from photocache202.flickr.bf1.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache202.flickr.bf1.yahoo.com:83" + }, + { + "via": "1.1 photocache202.flickr.bf1.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:48 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www30.flickr.bf1.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "3" + }, + { + "via": "HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:48 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3706" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "608527" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4610" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 16:47:58 UTC" + }, + { + "last-modified": "Wed, 04 Aug 2010 23:21:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "598783" + }, + { + "x-cache": "HIT from photocache515.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache515.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache515.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2551" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:45 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "801137" + }, + { + "x-cache": "HIT from photocache529.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache529.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache529.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2822" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:43:25 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache504.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache504.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache504.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "151390" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4463" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:56:37 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "252496" + }, + { + "x-cache": "HIT from photocache520.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache520.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache520.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1441" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:25 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "496025" + }, + { + "x-cache": "HIT from photocache501.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache501.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache501.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3780" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sat, 22 Oct 2022 00:35:44 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "988214" + }, + { + "x-cache": "HIT from photocache312.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache312.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache312.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5215" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 24 Oct 2022 02:15:29 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:08 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431732" + }, + { + "x-cache": "HIT from photocache324.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache324.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache324.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2610" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:08 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "872080" + }, + { + "x-cache": "HIT from photocache520.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache520.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache520.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4241" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 08:00:12 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:12 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "2356" + }, + { + "x-cache": "HIT from photocache513.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache513.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache513.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4461" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:10:07 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301869" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4292" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 13:51:59 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "258540" + }, + { + "x-cache": "HIT from photocache521.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache521.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache521.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3353" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache518.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache518.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache518.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "496025" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4008" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:42:08 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:10 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "435217" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4081" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:43:52 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "435217" + }, + { + "x-cache": "HIT from photocache521.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache521.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache521.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3996" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 15:30:11 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:46:59 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "872288" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2178" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:42:08 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:44 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431529" + }, + { + "x-cache": "HIT from photocache523.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache523.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache523.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3292" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:39:41 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:21 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431732" + }, + { + "x-cache": "HIT from photocache533.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache533.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache533.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3415" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89675" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3963" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 15:19:56 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:09 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache533.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache533.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache533.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "89675" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3036" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Wed, 04 Aug 2010 23:21:23 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "245531" + }, + { + "x-cache": "HIT from photocache511.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache511.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache511.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1843" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:40 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431517" + }, + { + "x-cache": "HIT from photocache537.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache537.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache537.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6971" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301877" + }, + { + "x-cache": "HIT from photocache537.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache537.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache537.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3968" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:02 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431731" + }, + { + "x-cache": "HIT from photocache527.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache527.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache527.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:49 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:50 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 326 dc12_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:51 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:50 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:41:50 GMT" + }, + { + "server": "YTS/1.20.13" + }, + { + "x-rightmedia-hostname": "raptor0740.rm.bf1.yahoo.com" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"" + }, + { + "location": "http://ad.yieldmanager.com/pixel?id=365081&t=2" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, max-age=0" + }, + { + "vary": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:41:50 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:50 GMT" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4726" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 17:54:01 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:36 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "211089" + }, + { + "x-cache": "HIT from photocache519.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache519.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache519.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4433" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 04 Jul 2022 00:08:57 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431736" + }, + { + "x-cache": "HIT from photocache539.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache539.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache539.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2677" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431735" + }, + { + "x-cache": "HIT from photocache524.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache524.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache524.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3081" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:54 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "164867" + }, + { + "x-cache": "HIT from photocache511.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache511.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache511.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3457" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:39 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "435221" + }, + { + "x-cache": "HIT from photocache526.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache526.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache526.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4433" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:42 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "424621" + }, + { + "x-cache": "HIT from photocache528.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache528.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache528.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "6486" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:46:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431736" + }, + { + "x-cache": "HIT from photocache540.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache540.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache540.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4899" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Wed, 04 Aug 2010 23:21:41 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "598778" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3981" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sat, 15 Oct 2022 23:23:06 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:46:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431687" + }, + { + "x-cache": "HIT from photocache311.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache311.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache311.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7338" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sun, 12 Jun 2022 22:06:49 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 22:00:34 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "608533" + }, + { + "x-cache": "HIT from photocache415.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache415.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache415.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5640" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:48:36 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:01 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "988205" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4609" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:24 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "871819" + }, + { + "x-cache": "HIT from photocache530.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache530.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache530.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3776" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:39:41 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431533" + }, + { + "x-cache": "HIT from photocache531.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache531.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache531.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4551" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:35:21 UTC" + }, + { + "last-modified": "Tue, 17 Aug 2010 18:40:02 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "415587" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4452" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:41:31 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:44 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "36952" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2023" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:45:55 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:45 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache533.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache533.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache533.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "682487" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:51 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www144.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "3" + }, + { + "via": "HTTP/1.1 r29.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:51 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4675" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:44:19 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:16 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89679" + }, + { + "x-cache": "HIT from photocache502.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache502.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache502.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3139" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:09:56 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:00 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89670" + }, + { + "x-cache": "HIT from photocache531.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache531.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache531.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3167" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:26 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431533" + }, + { + "x-cache": "HIT from photocache515.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache515.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache515.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4227" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:25 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89679" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2768" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 11:43:02 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:09 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "206489" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4375" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "988235" + }, + { + "x-cache": "HIT from photocache525.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache525.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache525.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3506" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 18:52:47 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:36 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431534" + }, + { + "x-cache": "HIT from photocache507.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache507.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache507.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3522" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 21:59:24 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "988233" + }, + { + "x-cache": "HIT from photocache515.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache515.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache515.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:53 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 307 dc1_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:55 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "45" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "server": "YTS/1.20.13" + }, + { + "x-rightmedia-hostname": "raptor0291.rm.bf1.yahoo.com" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, max-age=0" + }, + { + "vary": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "server": "YTS/1.20.13" + }, + { + "x-rightmedia-hostname": "raptor0921.rm.bf1.yahoo.com" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, max-age=0" + }, + { + "vary": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:54 GMT" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "location": "http://ad.yieldmanager.com/imp?Z=1x1&s=768714&T=3&_salt=2374354217&B=12&m=2&u=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fnasacommons%2Ftags%2Fnationalaeronauticsandspaceadministration%2Fpage3%2F&r=0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:55 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "last-modified": "Tue, 06 Mar 2012 23:48:07 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "x-served-by": "www13.flickr.mud.yahoo.com" + }, + { + "x-flickr-static": "1" + }, + { + "cache-control": "private" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "age": "0" + }, + { + "via": "HTTP/1.1 r18.ycpi.mud.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ]), HTTP/1.1 r02.ycpi.mia.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])" + }, + { + "server": "YTS/1.20.20" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-length": "6640" + }, + { + "expires": "Mon, 28 Jul 2014 23:30:00 GMT" + }, + { + "set-cookie": "localization=en-us%3Bus%3Bus; expires=Sat, 01-Nov-2014 13:41:55 GMT; path=/; domain=.flickr.com" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5525" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:39:41 UTC" + }, + { + "last-modified": "Wed, 04 Aug 2010 23:21:42 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "435224" + }, + { + "x-cache": "HIT from photocache503.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache503.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache503.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4651" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:21:30 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:08 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "166264" + }, + { + "x-cache": "HIT from photocache524.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache524.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache524.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4344" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:43:52 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301880" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4372" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:35 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431536" + }, + { + "x-cache": "HIT from photocache525.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache525.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache525.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4446" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:44 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431689" + }, + { + "x-cache": "HIT from photocache534.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache534.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache534.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4431" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:46:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache511.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache511.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache511.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "431690" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "13813" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Sat, 03 Sep 2022 23:41:41 UTC" + }, + { + "last-modified": "Mon, 17 May 2010 22:00:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "608533" + }, + { + "x-cache": "HIT from photocache408.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache408.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache408.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2010" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:43:52 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:52 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431537" + }, + { + "x-cache": "HIT from photocache535.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache535.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache535.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4596" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:24 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:27 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "301900" + }, + { + "x-cache": "HIT from photocache540.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache540.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache540.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4383" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:25 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:51 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache540.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache540.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache540.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "89682" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3501" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 08:02:11 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:15 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89673" + }, + { + "x-cache": "HIT from photocache506.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache506.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache506.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3829" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:11 UTC" + }, + { + "last-modified": "Wed, 04 Aug 2010 23:21:23 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "871646" + }, + { + "x-cache": "HIT from photocache523.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache523.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache523.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3781" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:46:07 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:03 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "435223" + }, + { + "x-cache": "HIT from photocache502.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache502.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache502.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4186" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 20:41:31 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:51 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "363909" + }, + { + "x-cache": "HIT from photocache524.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache524.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache524.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3814" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:43:52 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:15 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache537.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache537.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache537.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "89682" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2478" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:25 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:11 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431536" + }, + { + "x-cache": "HIT from photocache511.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache511.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache511.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "7387" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Wed, 31 Mar 2010 17:47:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431739" + }, + { + "x-cache": "HIT from photocache523.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache523.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache523.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5870" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:04:10 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:17 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "337938" + }, + { + "x-cache": "HIT from photocache525.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache525.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache525.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "5202" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:40:12 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:57:52 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431738" + }, + { + "x-cache": "HIT from photocache505.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache505.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache505.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "2820" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:31 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "431536" + }, + { + "x-cache": "HIT from photocache538.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache538.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache538.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3044" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:43:52 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:07:30 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "x-cache": "HIT from photocache516.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache516.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache516.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + }, + { + "age": "2363" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "4834" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 12:34:28 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:59:06 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "89682" + }, + { + "x-cache": "HIT from photocache522.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache522.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache522.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3365" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:56:07 UTC" + }, + { + "last-modified": "Tue, 03 Aug 2010 22:58:46 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "252421" + }, + { + "x-cache": "HIT from photocache528.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache528.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache528.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "3978" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "max-age=315360000,public" + }, + { + "expires": "Mon, 30 May 2022 10:39:41 UTC" + }, + { + "last-modified": "Mon, 30 Aug 2010 06:49:20 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "age": "872078" + }, + { + "x-cache": "HIT from photocache532.flickr.ac4.yahoo.com" + }, + { + "x-cache-lookup": "HIT from photocache532.flickr.ac4.yahoo.com:83" + }, + { + "via": "1.1 photocache532.flickr.ac4.yahoo.com:83 (squid/2.7.STABLE9)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:56 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "private, no-store, max-age=0" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "set-cookie": "itsessionid10001561398679=aUqazlyMaa|fses10001561398679=; path=/; domain=.analytics.yahoo.com" + }, + { + "ts": "0 372 dc33_ne1" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:58 GMT" + }, + { + "cache-control": "no-cache, private, must-revalidate" + }, + { + "content-length": "46" + }, + { + "accept-ranges": "bytes" + }, + { + "tracking-status": "fpc site tracked" + }, + { + "vary": "Accept-Encoding" + }, + { + "connection": "close" + }, + { + "content-type": "application/x-javascript" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "server": "YTS/1.20.13" + }, + { + "x-rightmedia-hostname": "raptor0663.rm.bf1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"" + }, + { + "location": "http://ad.yieldmanager.com/pixel?id=372009&t=2" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, max-age=0" + }, + { + "vary": "*" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "pragma": "no-cache" + }, + { + "content-encoding": "gzip" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:57 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:41:58 GMT" + }, + { + "p3p": "policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\"" + }, + { + "cache-control": "no-cache, no-store, private" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_28.json b/jetty-http2/http2-hpack/src/test/resources/data/story_28.json new file mode 100644 index 00000000000..26c5a59aded --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_28.json @@ -0,0 +1,5293 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "301" + }, + { + "location": "http://www.linkedin.com/" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:13:39 GMT" + }, + { + "server": "lighttpd" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "E2zvmRmjhYEFJpx7GePGrg==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:39 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 30 Oct 2012 22:43:31 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4224" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31224822" + }, + { + "expires": "Wed, 30 Oct 2013 22:47:23 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1757" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=23972673" + }, + { + "expires": "Thu, 08 Aug 2013 00:18:14 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Mon, 29 Oct 2012 17:17:34 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1104" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31119071" + }, + { + "expires": "Tue, 29 Oct 2013 17:24:52 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 30 Oct 2012 22:43:30 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4725" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31225090" + }, + { + "expires": "Wed, 30 Oct 2013 22:51:51 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 30 Oct 2012 22:43:29 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "18531" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31225288" + }, + { + "expires": "Wed, 30 Oct 2013 22:55:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 30 Oct 2012 22:43:30 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "YP+9O9z6wRIwf5dQLCsAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "81464" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31224801" + }, + { + "expires": "Wed, 30 Oct 2013 22:47:02 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "L1e=495eba97; path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "gLtcwO0VwxJQ3EsqHysAAA==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "image/gif" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:43 GMT" + }, + { + "age": "1" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Thu, 25 Oct 2012 19:08:05 GMT" + }, + { + "content-type": "image/x-icon" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "YP+9O9z6wRIwf5dQLCsAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "361" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31188041" + }, + { + "expires": "Wed, 30 Oct 2013 12:34:24 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Wed, 31 Oct 2012 19:11:14 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "CCdnnfDTwhJwlNCV9ioAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=31463444" + }, + { + "expires": "Sat, 02 Nov 2013 17:04:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:44 GMT" + }, + { + "content-length": "3489" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Mon, 13 Aug 2012 19:03:38 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1062" + }, + { + "cache-control": "max-age=24472323" + }, + { + "expires": "Tue, 13 Aug 2013 19:05:47 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:13:44 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "14888" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 22 Oct 2012 15:51:19 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 06:13:29 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 18:13:29 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "25215" + }, + { + "cache-control": "max-age=43200, public" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168216" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 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" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "age": "168216" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Sat, 03-Nov-2012 13:13:45 GMT" + }, + { + "etag": "M0-0eb75f26" + }, + { + "content-type": "application/x-javascript" + }, + { + "cache-control": "private, no-transform, must-revalidate, max-age=604800" + }, + { + "expires": "Sat, 10 Nov 2012 13:13:45 GMT" + }, + { + "content-length": "2298" + }, + { + "date": "Sat, 03 Nov 2012 13:13:45 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "set-cookie": "mc=50951889-343da-16f7e-ae952; expires=Mon, 05-May-2014 13:13:45 GMT; path=/; domain=.quantserve.com" + }, + { + "p3p": "CP=\"NOI DSP COR NID CURa ADMa DEVa PSAo PSDo OUR SAMa IND COM NAV\"" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:13:45 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Sat, 17 Nov 2012 13:13:45 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:45 GMT" + }, + { + "content-length": "1140" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-transform, max-age=1209600" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:45 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lang=\"v=2&lang=en-us\"; Version=1; Domain=linkedin.com; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "jguBxDxCP8A3strRU6z0Sw==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:49 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "8e0b81c43c423fc037b2dad153acf44b" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "lighttpd" + }, + { + "set-cookie": "lang=\"v=2&lang=en-us\"; Version=1; Domain=linkedin.com; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "jguBxDxCP8A3strRU6z0Sw==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "image/x-icon" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:49 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "8e0b81c43c423fc037b2dad153acf44b" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Wed, 22 Jun 2011 20:28:00 GMT" + }, + { + "content-length": "1150" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Thu, 16 Aug 2012 01:24:42 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1044" + }, + { + "cache-control": "max-age=24721219" + }, + { + "expires": "Fri, 16 Aug 2013 16:14:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Wed, 17 Oct 2012 23:09:52 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "9168" + }, + { + "cache-control": "max-age=30168335" + }, + { + "expires": "Fri, 18 Oct 2013 17:19:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:13:51 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:13:51 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168222" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:51 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Fri, 02 Nov 2012 18:10:36 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "eAzMxNUMwxJwGtyV9ioAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=31525993" + }, + { + "expires": "Sun, 03 Nov 2013 10:27:04 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:51 GMT" + }, + { + "content-length": "223" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Sat, 01 Sep 2012 00:58:09 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "CCdnnfDTwhJwlNCV9ioAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=26048872" + }, + { + "expires": "Sun, 01 Sep 2013 01:01:43 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:51 GMT" + }, + { + "content-length": "11160" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lang=\"v=2&lang=en-us\"; Version=1; Domain=linkedin.com; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "AZRbIR9V68fBQlYZzQoS1w==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:54 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "01945b211f55ebc7c1425619cd0a12d7" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Wed, 22 Jun 2011 20:28:00 GMT" + }, + { + "content-length": "4714" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:13:54 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:13:54 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168226" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:54 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "lang=\"v=2&lang=en-us\"; Version=1; Domain=linkedin.com; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "wL1PItpHScLBRl0PVkiLLQ==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:13:59 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "c0bd4f22da4749c2c1465d0f56488b2d" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Wed, 22 Jun 2011 20:28:00 GMT" + }, + { + "content-length": "4714" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:13:59 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:13:59 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168230" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:13:59 GMT" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "vZHDyRjuiQCkhZBzyxGqrg==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:01 GMT" + }, + { + "age": "3" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "6176" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 02 Oct 2012 07:53:23 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "4012" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=28752189" + }, + { + "expires": "Wed, 02 Oct 2013 07:57:11 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Mon, 29 Oct 2012 17:17:34 GMT" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "628" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=3381907" + }, + { + "expires": "Wed, 12 Dec 2012 16:39:09 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-length": "1044" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31490642" + }, + { + "expires": "Sun, 03 Nov 2013 00:38:04 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + }, + { + "last-modified": "Fri, 02 Nov 2012 18:36:32 GMT" + }, + { + "x-li-uuid": "KMg5e7HswhIQwgDTIysAAA==" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Wed, 31 Oct 2012 00:20:08 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "17928" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31230754" + }, + { + "expires": "Thu, 31 Oct 2013 00:26:36 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 23 Oct 2012 10:10:40 GMT" + }, + { + "content-type": "text/css" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "YP+9O9z6wRIwf5dQLCsAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "11863" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=30574946" + }, + { + "expires": "Wed, 23 Oct 2013 10:16:28 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Mon, 22 Oct 2012 17:10:42 GMT" + }, + { + "content-type": "text/javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "77011" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=30513689" + }, + { + "expires": "Tue, 22 Oct 2013 17:15:31 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "352" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:05 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "vZHDyRjuiQCkhZBzyxGqrg==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "0" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "image/gif" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:04 GMT" + }, + { + "age": "1" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "6176" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Fri, 02 Nov 2012 09:02:37 GMT" + }, + { + "expires": "Fri, 09 Nov 2012 09:02:37 GMT" + }, + { + "content-type": "application/ocsp-response" + }, + { + "content-transfer-encoding": "binary" + }, + { + "content-length": "1186" + }, + { + "cache-control": "max-age=503312, public, no-transform, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:14:05 GMT" + }, + { + "nncoection": "close" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:14:06 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:14:06 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168237" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 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" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "age": "168237" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:06 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Wed, 22 Aug 2012 09:55:42 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:08 GMT" + }, + { + "x-fs-uuid": "4062fd4fc89b6346ee2b61950a9840a5" + }, + { + "x-li-uuid": "QGL9T8ibY0buK2GVCphApQ==" + }, + { + "age": "1" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "rDlCGMNjprrsLUOMpHhJIw==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:09 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "352" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:09 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Wed, 22 Aug 2012 09:55:42 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:09 GMT" + }, + { + "x-fs-uuid": "4062fd4fc89b6346ee2b61950a9840a5" + }, + { + "x-li-uuid": "CDPTy/MVwxKQFKu9mysAAA==" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Tue, 02 Oct 2012 17:09:44 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "YP+9O9z6wRIwf5dQLCsAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "64" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=28813847" + }, + { + "expires": "Thu, 03 Oct 2013 01:04:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Wed, 31 Oct 2012 19:11:14 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-li-uuid": "iA7sd9nTwhIQefs/LCsAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=31463319" + }, + { + "expires": "Sat, 02 Nov 2013 17:02:48 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:09 GMT" + }, + { + "content-length": "603" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1156" + }, + { + "last-modified": "Fri, 18 Apr 2008 18:03:54 GMT" + }, + { + "etag": "1208541834000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=5196477" + }, + { + "expires": "Wed, 02 Jan 2013 16:42:07 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3476" + }, + { + "last-modified": "Thu, 01 Sep 2011 13:46:08 GMT" + }, + { + "etag": "1314884768000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=29243668" + }, + { + "expires": "Tue, 08 Oct 2013 00:28:38 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1465" + }, + { + "last-modified": "Wed, 15 Dec 2010 19:56:09 GMT" + }, + { + "etag": "1292442969000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=5723024" + }, + { + "expires": "Tue, 08 Jan 2013 18:57:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1705" + }, + { + "last-modified": "Wed, 13 May 2009 06:47:06 GMT" + }, + { + "etag": "1242197226000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=28717727" + }, + { + "expires": "Tue, 01 Oct 2013 22:22:57 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1748" + }, + { + "last-modified": "Mon, 13 Feb 2012 04:16:54 GMT" + }, + { + "etag": "1329106614000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=29613032" + }, + { + "expires": "Sat, 12 Oct 2013 07:04:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2115" + }, + { + "last-modified": "Mon, 06 Jun 2011 11:28:28 GMT" + }, + { + "etag": "1307359708000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=29255048" + }, + { + "expires": "Tue, 08 Oct 2013 03:38:18 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2065" + }, + { + "last-modified": "Fri, 15 Aug 2008 06:35:34 GMT" + }, + { + "etag": "1218782134000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "cache-control": "max-age=23989474" + }, + { + "expires": "Thu, 08 Aug 2013 04:58:44 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-cdn": "AKAM" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1777" + }, + { + "last-modified": "Sun, 06 Apr 2008 16:44:40 GMT" + }, + { + "etag": "1207500280000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=24015458" + }, + { + "expires": "Thu, 08 Aug 2013 12:11:48 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2536" + }, + { + "last-modified": "Sun, 17 Apr 2011 11:26:00 GMT" + }, + { + "etag": "1303039560000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=30996570" + }, + { + "expires": "Mon, 28 Oct 2013 07:23:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "1445" + }, + { + "last-modified": "Sun, 14 Dec 2008 19:47:28 GMT" + }, + { + "etag": "1229284048000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31023826" + }, + { + "expires": "Mon, 28 Oct 2013 14:57:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "11785" + }, + { + "last-modified": "Tue, 21 Feb 2012 04:44:27 GMT" + }, + { + "etag": "1329799467000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=29267475" + }, + { + "expires": "Tue, 08 Oct 2013 07:05:25 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:10 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:14:11 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:14:11 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168242" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 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" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "age": "168242" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:11 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "1013" + }, + { + "last-modified": "Sat, 03 Nov 2012 05:44:36 GMT" + }, + { + "etag": "1351921476485" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31508935" + }, + { + "expires": "Sun, 03 Nov 2013 05:43:06 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:11 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-li-uuid": "uBgHimv9whIwouPuKysAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Thu, 09 Aug 2012 02:40:28 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:12 GMT" + }, + { + "x-fs-uuid": "b73d9dcff4c8d40067468ef689e05a93" + }, + { + "x-li-uuid": "tz2dz/TI1ABnRo72ieBakw==" + }, + { + "age": "1" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "6507" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "+8Oyp3i1cl6p243WV3LM6g==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:13 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "537" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:13 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "2469" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:13 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "text/javascript" + }, + { + "last-modified": "Tue, 08 May 2012 20:09:07 GMT" + }, + { + "date": "Fri, 02 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:30:09 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "server": "sffe" + }, + { + "content-length": "321" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "81845" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Tue, 21 Feb 2012 01:03:49 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:03:29 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:03:29 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "server": "sffe" + }, + { + "content-length": "24156" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "61845" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Fri, 02 Nov 2012 18:10:35 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=31525781" + }, + { + "expires": "Sun, 03 Nov 2013 10:23:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:13 GMT" + }, + { + "content-length": "94" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"5f7cc9080cad02333445367dae64546d:1351006466\"" + }, + { + "last-modified": "Tue, 23 Oct 2012 15:34:26 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=3600" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "content-length": "1028" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 18 Jun 2012 13:12:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"eb63c14544dcd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "2955" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 16:25:49 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 16:25:49 GMT" + }, + { + "etag": "46977404F0473696BBDC518B1845C60E809A3249" + }, + { + "cache-control": "max-age=356494,public,no-transform,must-revalidate" + }, + { + "x-ocsp-reponder-id": "t8edcaocsp6" + }, + { + "content-length": "471" + }, + { + "connection": "close" + }, + { + "content-type": "application/ocsp-response" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"65786c291a4603aa5150a1884452838d:1271351254\"" + }, + { + "last-modified": "Thu, 15 Apr 2010 17:07:29 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=2144448000" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"4cdd47b7bd15f75838435f1207ac1414:1351006993\"" + }, + { + "last-modified": "Tue, 23 Oct 2012 15:43:13 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=315360000" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "content-length": "12232" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "CP=\"COM NAV INT STA NID OUR IND NOI\"" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "set-cookie": "cckz=1mcwy3r; Domain=media6degrees.com; Expires=Thu, 02-May-2013 13:14:15 GMT; Path=/" + }, + { + "location": "http://action.media6degrees.com/orbserv/nsjs?ncv=33&ns=299&pcv=39&nc=1&pixId=13086&cckz=true" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:14:14 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:14:15 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 17 Jul 2012 23:10:45 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:15 GMT" + }, + { + "x-fs-uuid": "1034b0b6c77d1f91819a2d929764b582" + }, + { + "x-li-uuid": "EDSwtsd9H5GBmi2Sl2S1gg==" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "6507" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "iPSByYTV24172TMFAcPcSg==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:15 GMT" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "539" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "CP=\"COM NAV INT STA NID OUR IND NOI\"" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "set-cookie": "cckz=1mcwy3s; Domain=media6degrees.com; Expires=Thu, 02-May-2013 13:14:16 GMT; Path=/" + }, + { + "location": "http://action.media6degrees.com/orbserv/nsjs?ncv=33&ns=299&pcv=39&nc=1&pixId=13086&cckz=true" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "CP=\"COM NAV INT STA NID OUR IND NOI\"" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "set-cookie": "JSESSIONID=CE33DFE7D94779C13B04C4D9B43D7792; Path=/orbserv; HttpOnly" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "content-language": "en-US" + }, + { + "content-length": "5" + }, + { + "date": "Sat, 03 Nov 2012 13:14:15 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "841" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "u=8|0BAgYJ9UoGCfVKAAAAAAAAQEAAQIhdawAARg9fRc3AAAAAAT9PvgAAAAAAu9ZfgAAAAAO_VtUCBMBAAuBLQA; Version=1; Domain=.agkn.com; Max-Age=63072000; Expires=Mon, 03-Nov-2014 13:14:16 GMT; Path=/" + }, + { + "p3p": "CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "image/gif;charset=ISO-8859-1" + }, + { + "content-language": "en-US" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:14:15 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Tue, 17 Jul 2012 23:10:45 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "x-fs-uuid": "1034b0b6c77d1f91819a2d929764b582" + }, + { + "x-li-uuid": "EDSwtsd9H5GBmi2Sl2S1gg==" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "6507" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "2036" + }, + { + "last-modified": "Thu, 29 Nov 2007 19:09:10 GMT" + }, + { + "etag": "1196363350000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31005797" + }, + { + "expires": "Mon, 28 Oct 2013 09:57:33 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-li-uuid": "uBgHimv9whIwouPuKysAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "access-control-allow-origin": "http://www.linkedin.com" + }, + { + "last-modified": "Sat, 15 Sep 2012 06:22:35 GMT" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=27345738" + }, + { + "expires": "Mon, 16 Sep 2013 01:16:34 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "content-length": "146" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-type": "image/jpeg" + }, + { + "last-modified": "Tue, 03 Jul 2012 21:15:31 GMT" + }, + { + "date": "Sat, 03 Nov 2012 03:30:07 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 03:30:07 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-encoding": "gzip" + }, + { + "server": "sffe" + }, + { + "content-length": "19787" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "35049" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 18 Jun 2012 13:12:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"eb63c14544dcd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "2955" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"84332e7556647543d5f87647f37a8a6d:1346087966\"" + }, + { + "last-modified": "Mon, 27 Aug 2012 17:19:26 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "application/x-javascript" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=600" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "content-length": "741" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168247" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 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" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "age": "168247" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"f13746374fa151b24abd8bf99a396878:1347294343\"" + }, + { + "last-modified": "Mon, 10 Sep 2012 16:25:43 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "image/png" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "max-age=2144448000" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "content-length": "1028" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "etag": "\"4d5ead3cfaa1fd96263197170ccaed07:1347294382\"" + }, + { + "last-modified": "Mon, 10 Sep 2012 16:26:22 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "1507" + }, + { + "content-type": "image/png" + }, + { + "cache-control": "max-age=2144448000" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:16 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Sun, 05 Aug 2012 15:35:43 GMT" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:18 GMT" + }, + { + "x-fs-uuid": "e4dcbadff47540485aebb5d079a66252" + }, + { + "x-li-uuid": "5Ny63/R1QEha67XQeaZiUg==" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "6507" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "sl=\"delete me\"; Version=1; Max-Age=0; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-li-uuid": "qwi+h66wCYWzSNcKexV4yw==" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:18 GMT" + }, + { + "age": "1" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "x-fs-uuid": "bd91c3c918ee8900a4859073cb11aaae" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1672258277\"" + }, + { + "last-modified": "Fri, 27 Nov 2009 06:27:21 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "538" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "CP=\"COM NAV INT STA NID OUR IND NOI\"" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "set-cookie": "JSESSIONID=AA69DF8838B33636B86F3AD5917D28DD; Path=/orbserv; HttpOnly" + }, + { + "content-type": "text/html;charset=ISO-8859-1" + }, + { + "content-language": "en-US" + }, + { + "content-length": "5" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-length": "859" + }, + { + "content-encoding": "gzip" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "X-LI-IDC=C1" + }, + { + "p3p": "CP=\"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\"" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "vary": "Accept-Encoding" + }, + { + "last-modified": "Sun, 05 Aug 2012 15:35:43 GMT" + }, + { + "content-type": "image/gif" + }, + { + "content-language": "en-US" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "x-fs-uuid": "e4dcbadff47540485aebb5d079a66252" + }, + { + "x-li-uuid": "aGvE/vUVwxKwMlIRJCsAAA==" + }, + { + "age": "0" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "no-cache" + }, + { + "expires": "0" + }, + { + "pragma": "no-cache" + }, + { + "content-length": "6507" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "u=8|0BAgYJ9UoGCfVKwAAAAABAQEAAQQhdawAARg9fRc3AAAAAAT9PvgAAAAAAu5WuAAAAAAO_VtUCBMBAAuBLQA; Version=1; Domain=.agkn.com; Max-Age=63072000; Expires=Mon, 03-Nov-2014 13:14:19 GMT; Path=/" + }, + { + "p3p": "CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "expires": "Sat, 01 Jan 2000 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "image/gif;charset=ISO-8859-1" + }, + { + "content-language": "en-US" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:14:18 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/png" + }, + { + "content-length": "3183" + }, + { + "last-modified": "Tue, 04 Mar 2008 16:53:17 GMT" + }, + { + "etag": "1204649597000" + }, + { + "server": "Jetty(6.1.26)" + }, + { + "x-cdn": "AKAM" + }, + { + "cache-control": "max-age=31199347" + }, + { + "expires": "Wed, 30 Oct 2013 15:43:26 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-li-uuid": "uBgHimv9whIwouPuKysAAA==" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "304" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Mon, 18 Jun 2012 13:12:57 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"eb63c14544dcd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "2955" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "nginx" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "content-type": "image/gif" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + }, + { + "keep-alive": "timeout=20" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "policyref=\"http://www.imrworldwide.com/w3c/p3p.xml\", CP=\"NOI DSP COR NID PSA ADM OUR IND UNI NAV COM\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 04 Aug 1978 12:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "server": "QS" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "35" + }, + { + "content-encoding": "gzip" + }, + { + "last-modified": "Wed, 21 Jan 2004 19:51:30 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Wed, 19 Apr 2000 11:43:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "age": "168250" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "server": "GFE/2.0" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Thu, 01 Nov 2012 14:30:09 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" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" + }, + { + "age": "168250" + }, + { + "server": "GFE/2.0" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-type": "image/gif" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:14:19 GMT" + }, + { + "content-length": "0" + }, + { + "connection": "keep-alive" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "pragma": "no-cache" + } + ] + } + ] +} \ No newline at end of file diff --git a/jetty-http2/http2-hpack/src/test/resources/data/story_29.json b/jetty-http2/http2-hpack/src/test/resources/data/story_29.json new file mode 100644 index 00000000000..01bdbbf8cb1 --- /dev/null +++ b/jetty-http2/http2-hpack/src/test/resources/data/story_29.json @@ -0,0 +1,13780 @@ +{ + "context": "response", + "cases": [ + { + "headers": [ + { + ":status": "301" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "location": "http://www.msn.com/" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:29:27 GMT" + }, + { + "content-length": "142" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "p3p": "CP=\"NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND\"" + }, + { + "set-cookie": "SRCHUSR=AUTOREDIR=0&GEOVAR=&DOB=20121103; expires=Mon, 03-Nov-2014 13:29:29 GMT; domain=.msn.com; path=/" + }, + { + "errorcodecount": "[0:0]" + }, + { + "s": "CO3SCH010020101" + }, + { + "edge-control": "no-store" + }, + { + "date": "Sat, 03 Nov 2012 13:29:28 GMT" + }, + { + "content-length": "41648" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=43200" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"808cfaf3c1ac81:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "43" + }, + { + "age": "7374" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Mon, 29 Oct 2007 15:02:13 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 23:26:35 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=86400,public" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"078def13c1fcd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "43" + }, + { + "age": "33322" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 20 Apr 2012 21:31:28 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 04:14:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"083df89b6bac81:0\"" + }, + { + "server": "BLUMPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "1162" + }, + { + "age": "9388284" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Tue, 20 May 2008 20:17:34 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:38:05 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=86400,public" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"078def13c1fcd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "43" + }, + { + "age": "33322" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 20 Apr 2012 21:31:28 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 04:14:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"096b38d19cc1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "417" + }, + { + "age": "11654605" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Tue, 03 May 2011 20:32:28 GMT" + }, + { + "expires": "Fri, 21 Jun 2013 16:06:04 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"99789f9faea8cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "2712" + }, + { + "age": "378940" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 19:20:21 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 04:13:49 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"d6db97976eb9cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "3262" + }, + { + "age": "37907" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 02:54:50 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 02:57:42 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"6c2a9d5170b1cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "4648" + }, + { + "age": "23683" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Tue, 23 Oct 2012 22:47:02 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 06:54:45 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/x-icon" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0922651f38cb1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "4286" + }, + { + "age": "9388299" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Tue, 10 Aug 2010 00:03:00 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:37:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"f9f8904b5ab9cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4352" + }, + { + "age": "46151" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:29:32 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 00:40:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8437263c89b8cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "6131" + }, + { + "age": "23313" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 23:33:02 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 07:00:56 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"54a642c148b9cd1:0\"" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "5522" + }, + { + "age": "23304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 22:23:59 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 07:01:05 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"f5d7f6f68b8cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "4048" + }, + { + "age": "23326" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 19:38:15 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 07:00:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"789825b3b68cc1:0\"" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "7075" + }, + { + "age": "304691" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Wed, 31 Aug 2011 18:27:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 00:51:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"6a4618d83cb9cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "11544" + }, + { + "age": "59087" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 20:58:43 GMT" + }, + { + "expires": "Fri, 09 Nov 2012 21:04:42 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"188d971c36b9cd1:0\"" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "3753" + }, + { + "age": "23326" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 20:10:32 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 07:00:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80a9243afa8cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "2135" + }, + { + "age": "64967" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 12 Oct 2012 19:24:57 GMT" + }, + { + "expires": "Fri, 09 Nov 2012 19:26:42 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"da259a60afb9cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "6786" + }, + { + "age": "9961" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 10:38:35 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 10:43:28 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"3a2bfd7658b9cd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "6859" + }, + { + "age": "47464" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 00:16:26 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 00:18:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"feefae84ab9cd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "7066" + }, + { + "age": "23304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 22:39:23 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 07:01:05 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"4b1b97dcc0b9cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "14928" + }, + { + "age": "2676" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 12:43:44 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 12:44:53 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80f314cf17b7cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "23864" + }, + { + "age": "290866" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 03:28:35 GMT" + }, + { + "expires": "Thu, 31 Oct 2013 04:41:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/jpeg" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"9c71d229a3b9cd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "7497" + }, + { + "age": "14681" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 09:11:09 GMT" + }, + { + "expires": "Sat, 10 Nov 2012 09:24:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=300" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=43200" + }, + { + "content-type": "application/x-javascript" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"91588811bb8bcd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "2420" + }, + { + "age": "41017" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Wed, 05 Sep 2012 23:06:23 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:05:53 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0e49dbec5aecb1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "4082" + }, + { + "age": "8615761" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 07 Jan 2011 23:51:04 GMT" + }, + { + "expires": "Fri, 26 Jul 2013 20:13:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=604800" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"ac1668bfc52ca1:0\"" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "657" + }, + { + "age": "159348" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Thu, 22 Oct 2009 09:46:35 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 17:13:42 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/x-javascript" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"803ab9aa463acd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "24630" + }, + { + "age": "9388297" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:19:05 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:37:53 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/x-javascript" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"02bfb6a29b7cd1:0\"" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "65670" + }, + { + "age": "285810" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 05:34:38 GMT" + }, + { + "expires": "Thu, 31 Oct 2013 06:06:00 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80d88a9463acd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "74" + }, + { + "age": "8077925" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:19:03 GMT" + }, + { + "expires": "Fri, 02 Aug 2013 01:37:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8097d798463acd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "48" + }, + { + "age": "9389765" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:35 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:13:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"5bc3dfd117b7cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "6234" + }, + { + "age": "290867" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 03:28:39 GMT" + }, + { + "expires": "Thu, 31 Oct 2013 04:41:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"801e6b9c463acd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "1117" + }, + { + "age": "8614139" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:41 GMT" + }, + { + "expires": "Fri, 26 Jul 2013 20:40:31 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"077efa8463acd1:0\"" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "43" + }, + { + "age": "11574965" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:19:02 GMT" + }, + { + "expires": "Sat, 22 Jun 2013 14:13:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8097d798463acd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "1142" + }, + { + "age": "9388300" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:35 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:37:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8086f4a5463acd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "172" + }, + { + "age": "9388300" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:57 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:37:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/x-javascript" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8016f7a74e67cc1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "421" + }, + { + "age": "9389765" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Tue, 30 Aug 2011 19:54:41 GMT" + }, + { + "expires": "Wed, 17 Jul 2013 21:13:25 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"9a7af237eb5cd1:0\"" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "5436" + }, + { + "age": "462287" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Mon, 29 Oct 2012 02:35:10 GMT" + }, + { + "expires": "Tue, 29 Oct 2013 05:04:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "content-length": "1640" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "3989" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10263730-T100595690-C40000000000114208" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "p3p": "CP=\"NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND\"" + }, + { + "set-cookie": "SRCHD=MS=2546729&D=2546729&AF=NOFORM; expires=Mon, 03-Nov-2014 13:29:30 GMT; domain=.msn.com; path=/" + }, + { + "errorcodecount": "[0:0]" + }, + { + "s": "CO3SCH010133009" + }, + { + "edge-control": "no-store" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "content-length": "2197" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://c.atdmt.com/c.gif?udc=true&di=340&pi=7317&ps=95101&lng=en-us&tp=http%3A%2F%2Fwww.msn.com%2Fdefaultwpe3w.aspx&rid=e32241cc231e4226b91543c154dd3b7e&rnd=1351949370023&rf=&scr=1366x768&RedC=c.msn.com&MXFR=3D632B5B5356602B36252F56575660EB" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "MUID=3D632B5B5356602B36252F56575660EB&TUID=1; domain=.msn.com; expires=Mon, 03-Nov-2014 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "content-location": "http://spe.atdmt.com/images/pixel.gif" + }, + { + "expires": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:29 GMT" + }, + { + "connection": "close" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/3642305/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "server": "GFE/2.0" + }, + { + "content-type": "text/html; charset=UTF-8" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001001" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=1800" + }, + { + "content-type": "text/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0287ded7fb9cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "1811" + }, + { + "age": "1765" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 04:58:56 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:30:04 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=1800" + }, + { + "content-type": "text/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80722a7c098cc1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "9346" + }, + { + "age": "1170" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Tue, 01 Nov 2011 18:04:09 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:40:00 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=1800" + }, + { + "content-type": "text/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0af38a5c098cc1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "20808" + }, + { + "age": "1411" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Tue, 01 Nov 2011 18:04:06 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:35:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=1800" + }, + { + "content-type": "text/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"8091e4ec7fb9cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "1142" + }, + { + "age": "1226" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 04:58:55 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:39:04 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://c.msn.com/c.gif?udc=true&di=340&pi=7317&ps=95101&lng=en-us&tp=http%3A%2F%2Fwww.msn.com%2Fdefaultwpe3w.aspx&rid=e32241cc231e4226b91543c154dd3b7e&rnd=1351949370023&rf=&scr=1366x768&MUID=39C1843BD7CB679E06238036D4CB670B&cb=1cdb9c7414258b0" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "SRM_M=39C1843BD7CB679E06238036D4CB670B; domain=c.atdmt.com; expires=Mon, 03-Nov-2014 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=1800" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"299a82bdeb9cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "access-control-allow-origin": "*" + }, + { + "content-length": "20046" + }, + { + "age": "1074" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 15:28:42 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:41:36 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Fri, 17 Aug 2012 14:27:55 GMT" + }, + { + "date": "Fri, 02 Nov 2012 19:34:58 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 19:34:58 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "46" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "64473" + }, + { + "cache-control": "public, max-age=86400" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 07:00:23 GMT" + }, + { + "server": "Jetty(6.1.22)" + }, + { + "p3p": "policyref=\"/w3c/policy.xml\", CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "x-powered-by": "Mirror Image Internet" + }, + { + "via": "1.1 bfi061004 (MII-APC/2.2)" + }, + { + "x-mii-cache-hit": "1" + }, + { + "content-length": "42" + }, + { + "keep-alive": "timeout=2" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0e2349e463acd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "93" + }, + { + "age": "8077926" + }, + { + "date": "Sat, 03 Nov 2012 13:29:31 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:44 GMT" + }, + { + "expires": "Fri, 02 Aug 2013 01:37:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "set-cookie": "pudm_AAAA=MLuxc4uHAF5HEldAttN+mTMH5l3UFcGfjYAvMSjMMwDWP3TDUWl1; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:29:31 GMT; Path=/" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "p3p": "policyref=\"http://js.revsci.net/w3c/rsip3p.xml\", CP=\"NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA\"" + }, + { + "x-proc-data": "pd3-bgas02-0" + }, + { + "content-type": "application/javascript;charset=ISO-8859-1" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "p3p": "CP=\"NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND\"" + }, + { + "set-cookie": "SRCHD=SM=1&MS=2546729&D=2546729&AF=NOFORM; expires=Mon, 03-Nov-2014 13:29:31 GMT; domain=.msn.com; path=/" + }, + { + "errorcodecount": "[0:0]" + }, + { + "s": "CO3SCH010120128" + }, + { + "edge-control": "no-store" + }, + { + "date": "Sat, 03 Nov 2012 13:29:30 GMT" + }, + { + "content-length": "1672" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/x-javascript" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0a420aa463acd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "387" + }, + { + "age": "11654712" + }, + { + "date": "Sat, 03 Nov 2012 13:29:31 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:19:04 GMT" + }, + { + "expires": "Fri, 21 Jun 2013 16:04:19 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/jpeg" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"05ba19a463acd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "4842" + }, + { + "age": "11654572" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:38 GMT" + }, + { + "expires": "Fri, 21 Jun 2013 16:06:40 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80b325a7463acd1:0\"" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "1105" + }, + { + "age": "8614141" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "last-modified": "Fri, 25 May 2012 07:18:59 GMT" + }, + { + "expires": "Fri, 26 Jul 2013 20:40:31 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "content-length": "562" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "884" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10669318-T100595843-C108000000000115722" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "3114" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-radid": "P10603404-T100595756-C48000000000113484" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:31 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "1323" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:31 GMT" + }, + { + "content-length": "1336" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "3147" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10720545-T100595939-C52000000000120598" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "406" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-radid": "P3782944-T100582739-C521263" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:31 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "325" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/gif" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0bd514f14ac31:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "content-length": "85" + }, + { + "age": "12894277" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "last-modified": "Tue, 15 Jul 2003 16:49:38 GMT" + }, + { + "expires": "Fri, 07 Jun 2013 07:44:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=31535999" + }, + { + "content-type": "image/gif" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "2710" + }, + { + "age": "3659370" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "expires": "Sun, 22 Sep 2013 05:00:01 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=31508189" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "9220" + }, + { + "age": "3659358" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "expires": "Sat, 21 Sep 2013 21:16:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=31338077" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "3607" + }, + { + "age": "3400121" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "expires": "Sun, 22 Sep 2013 22:02:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Fri, 02 Nov 2012 09:35:33 GMT" + }, + { + "etag": "\"1411999884f419ea8219bf9b531a9c66\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "application/javascript; charset=utf-8" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "3260" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "CP=\"CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/json; charset=utf-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "etag": "\"377d257f2d2e294916143c069141c1c5:1328738114\"" + }, + { + "last-modified": "Wed, 08 Feb 2012 21:55:14 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "no-cache" + }, + { + "p3p": "CP=\"CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:10:52 GMT" + }, + { + "pragma": "no-cache" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-content-type-options": "nosniff" + }, + { + "status": "200 OK" + }, + { + "content-type": "application/javascript;charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "889" + }, + { + "server": "tfe" + }, + { + "vary": "Accept-Encoding" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, post-check=0, pre-check=0" + }, + { + "expires": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "x-transaction": "49df427f743e57d8" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "expires": "Tue, 31 Mar 1981 05:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" + }, + { + "set-cookie": "guest_id=v1%3A135194937257731566; Expires=Mon, 3-Nov-2014 13:29:32 GMT; Path=/; Domain=.twitter.com" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "65" + }, + { + "server": "tfe" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "last-modified": "Fri, 02 Nov 2012 09:48:13 GMT" + }, + { + "etag": "\"b036a791811effc968bfcb43fa6d6910\"" + }, + { + "accept-ranges": "bytes" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "7242" + }, + { + "date": "Sat, 03 Nov 2012 13:29:32 GMT" + }, + { + "connection": "keep-alive" + }, + { + "p3p": "CP=\"CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT\"" + }, + { + "cache-control": "public, max-age=1800" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:34 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 16:28:26 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 16:28:26 GMT" + }, + { + "etag": "412224A3234E88A2760468333271010BB1C6D1AA" + }, + { + "cache-control": "max-age=355731,public,no-transform,must-revalidate" + }, + { + "x-ocsp-reponder-id": "t8edcaocsp4" + }, + { + "content-length": "471" + }, + { + "connection": "close" + }, + { + "content-type": "application/ocsp-response" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/ocsp-response" + }, + { + "content-transfer-encoding": "Binary" + }, + { + "content-length": "1938" + }, + { + "connection": "Close" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:34 GMT" + }, + { + "server": "Apache" + }, + { + "last-modified": "Sat, 03 Nov 2012 16:28:26 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 16:28:26 GMT" + }, + { + "etag": "412224A3234E88A2760468333271010BB1C6D1AA" + }, + { + "cache-control": "max-age=355731,public,no-transform,must-revalidate" + }, + { + "x-ocsp-reponder-id": "t8edcaocsp4" + }, + { + "content-length": "471" + }, + { + "connection": "close" + }, + { + "content-type": "application/ocsp-response" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "content-length": "28018" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 06:48:54 GMT" + }, + { + "server": "Jetty(6.1.22)" + }, + { + "p3p": "policyref=\"/w3c/policy.xml\", CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "x-powered-by": "Mirror Image Internet" + }, + { + "via": "1.1 bfi061001 (MII-APC/2.2)" + }, + { + "x-mii-cache-hit": "1" + }, + { + "content-length": "42" + }, + { + "keep-alive": "timeout=2" + }, + { + "connection": "Keep-Alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"80ebcf5152b0cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "6717" + }, + { + "age": "1026619" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:39:47 GMT" + }, + { + "expires": "Tue, 22 Oct 2013 16:19:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0195ab552b0cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "8659" + }, + { + "age": "1026617" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:42:34 GMT" + }, + { + "expires": "Tue, 22 Oct 2013 16:19:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"707a74ac52b0cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "9389" + }, + { + "age": "1026617" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:42:19 GMT" + }, + { + "expires": "Tue, 22 Oct 2013 16:19:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"f0edab8b52b0cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "3749" + }, + { + "age": "1026645" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:41:24 GMT" + }, + { + "expires": "Tue, 22 Oct 2013 16:18:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/x-icon" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "content-length": "4286" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:16:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"951751d2bdb7cd1:0\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001001" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431991" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "773" + }, + { + "age": "416777" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 17:43:09 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431989" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "4747" + }, + { + "age": "69970" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 18:03:14 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001004" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=423916" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "45125" + }, + { + "age": "4791" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 09:55:00 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public,max-age=31536000" + }, + { + "content-length": "42060" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"1ac2aef461a9cc1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "p3p": "CP=\"ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI\"" + }, + { + "vtag": "279606632500000000" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "age": "3987586" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + }, + { + "last-modified": "Tue, 22 Nov 2011 21:59:06 GMT" + }, + { + "expires": "Wed, 18 Sep 2013 09:49:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + }, + { + "content-length": "954" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "2008" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FQV_eKj?9kb10I3SSI79ox)!lG@t]; path=/; expires=Fri, 01-Feb-2013 13:29:36 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + }, + { + "content-length": "615" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "0" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:29:35 GMT" + }, + { + "connection": "close" + }, + { + "content-length": "381" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "42" + }, + { + "allow": "GET" + }, + { + "expires": "Tue, 06 Nov 2012 04:51:56 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FQV_eKj?9kb10I3SSI79ox)!lG@t]; path=/; expires=Fri, 01-Feb-2013 13:29:36 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "0" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-msadid": "300089389.300024620" + }, + { + "date": "Sat, 03 Nov 2012 13:29:36 GMT" + }, + { + "connection": "close" + }, + { + "content-length": "2290" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "40789" + }, + { + "allow": "GET" + }, + { + "expires": "Thu, 08 Nov 2012 21:57:40 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/x-javascript" + }, + { + "content-length": "20802" + }, + { + "allow": "GET" + }, + { + "expires": "Mon, 05 Nov 2012 06:30:42 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431968" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "4319" + }, + { + "age": "1707" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 13:00:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431760" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "5321" + }, + { + "age": "14923" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 09:16:54 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431996" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4605" + }, + { + "age": "46358" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 00:36:55 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431925" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4097" + }, + { + "age": "64344" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:35:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=432000" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4692" + }, + { + "age": "32851" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 04:22:06 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431754" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "2555" + }, + { + "age": "14924" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 09:16:47 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431758" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4026" + }, + { + "age": "54890" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 22:10:45 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431997" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "4589" + }, + { + "age": "403007" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 21:32:47 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431990" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "3476" + }, + { + "age": "82129" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 14:40:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431839" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "5927" + }, + { + "age": "53455" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 22:36:01 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431993" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "4900" + }, + { + "age": "83837" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 14:12:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431997" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4420" + }, + { + "age": "88061" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:01:53 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/octet-stream" + }, + { + "content-length": "2209" + }, + { + "allow": "GET" + }, + { + "expires": "Thu, 08 Nov 2012 19:27:55 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431982" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "5496" + }, + { + "age": "63170" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:56:29 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431991" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "3450" + }, + { + "age": "89554" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 12:36:54 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431990" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "2271" + }, + { + "age": "92961" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 11:40:06 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431991" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4009" + }, + { + "age": "86314" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:30:54 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431989" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "3779" + }, + { + "age": "86708" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:24:18 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431976" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "3115" + }, + { + "age": "69186" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 18:16:07 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431990" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "4867" + }, + { + "age": "80624" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 15:05:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431993" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "5187" + }, + { + "age": "140253" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 22:31:57 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431966" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "5244" + }, + { + "age": "140817" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 22:22:06 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431931" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "3807" + }, + { + "age": "303973" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Mon, 05 Nov 2012 01:02:15 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431977" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "4135" + }, + { + "age": "143835" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 21:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431943" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "5096" + }, + { + "age": "64149" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:39:31 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431988" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "3801" + }, + { + "age": "125275" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 02:41:30 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431990" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "4499" + }, + { + "age": "144182" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 21:26:25 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/json; charset=utf-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:29:37 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "23449" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0feb9575b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "5942" + }, + { + "age": "717045" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:33:48 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:18:57 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"0f9f3446b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "8528" + }, + { + "age": "717044" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:40:26 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:18:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"968a7a9552b0cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "8149" + }, + { + "age": "1026651" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "last-modified": "Mon, 22 Oct 2012 12:41:40 GMT" + }, + { + "expires": "Tue, 22 Oct 2013 16:18:51 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/x-icon" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "4286" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:16:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"951751d2bdb7cd1:0\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001004" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "954" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "2008" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001001" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=24" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********532" + }, + { + "rendertime": "11/2/2012 8:14:13 AM" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "34971" + }, + { + "age": "39" + }, + { + "date": "Sat, 03 Nov 2012 13:29:42 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 15:14:13 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:44:02 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu94FQV_eKj?9kb10I3SSI7:0wHz@)G?)i4ZhK; path=/; expires=Fri, 01-Feb-2013 13:29:43 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "content-length": "514" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=7775467" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********532" + }, + { + "rendertime": "11/2/2012 8:14:13 AM" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "27220" + }, + { + "age": "226499" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:25:52 GMT" + }, + { + "expires": "Tue, 29 Jan 2013 22:25:51 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-aspnet-version": "4.0.30319" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-length": "1465" + }, + { + "content-type": "image/png" + }, + { + "accept-ranges": "bytes" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "age": "77450" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Thu, 06 Sep 2012 03:42:16 GMT" + }, + { + "expires": "Fri, 16 Nov 2012 15:58:54 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "0" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-msadid": "300089440.299934848" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "connection": "close" + }, + { + "content-length": "514" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "3936" + }, + { + "age": "1664" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 11:56:42 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:35:01 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "4646" + }, + { + "age": "1653" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:42:24 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 17:14:40 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "14780" + }, + { + "allow": "GET" + }, + { + "expires": "Fri, 09 Nov 2012 04:45:54 GMT" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "41165" + }, + { + "age": "1664" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:52:34 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:31:59 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/json; charset=utf-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "cache-control": "private" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "location": "http://m.adnxs.com/msftcookiehandler?t=1&c=MUID%3d39C1843BD7CB679E06238036D4CB670B" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "content-length": "13" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "sess=1; path=/; expires=Sun, 04-Nov-2012 13:29:43 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "content-length": "43" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "7206" + }, + { + "age": "1871" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Tue, 30 Oct 2012 19:21:20 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:46:13 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "2833" + }, + { + "age": "4319" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 01:22:37 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:57:17 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "4141" + }, + { + "age": "1871" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 09:14:16 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:47:24 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=600" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "Sat, 03 Nov 2012 13:39:43 GMT" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********529" + }, + { + "rendertime": "11/3/2012 6:29:43 AM" + }, + { + "x-rendertime": "0.017 secs" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "content-length": "6790" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "7264" + }, + { + "age": "4321" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:45:33 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 13:47:42 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=7776000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********532" + }, + { + "rendertime": "11/2/2012 8:14:13 AM" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "3083" + }, + { + "age": "227101" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:24:43 GMT" + }, + { + "expires": "Tue, 29 Jan 2013 22:24:43 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-aspnet-version": "4.0.30319" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=7775989" + }, + { + "content-type": "text/css; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********532" + }, + { + "rendertime": "11/2/2012 8:14:13 AM" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "631" + }, + { + "age": "227144" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:23:50 GMT" + }, + { + "expires": "Tue, 29 Jan 2013 22:23:49 GMT" + }, + { + "connection": "keep-alive" + }, + { + "x-aspnet-version": "4.0.30319" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "5366" + }, + { + "age": "2169" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Thu, 01 Nov 2012 23:46:05 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:23:35 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=7775981" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "5125" + }, + { + "age": "227144" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:23:41 GMT" + }, + { + "expires": "Tue, 29 Jan 2013 22:23:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "x-aspnet-version": "2.0.50727" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "38544" + }, + { + "age": "1664" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Fri, 02 Nov 2012 02:46:18 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:32:00 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, max-age=7775962" + }, + { + "content-type": "application/x-javascript; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "content-length": "68447" + }, + { + "age": "227086" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "last-modified": "Wed, 31 Oct 2012 22:24:21 GMT" + }, + { + "expires": "Tue, 29 Jan 2013 22:24:20 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********525" + }, + { + "rendertime": "11/3/2012 6:29:44 AM" + }, + { + "x-rendertime": "0.003 secs" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:29:43 GMT" + }, + { + "content-length": "1238" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "machine": "SN1********509" + }, + { + "rendertime": "11/3/2012 6:29:44 AM" + }, + { + "set-cookie": "zip=c:cz; domain=msn.com; expires=Sat, 10-Nov-2012 14:29:44 GMT; path=/" + }, + { + "x-rendertime": "0.067 secs" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:29:44 GMT" + }, + { + "content-length": "138" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:46 GMT" + }, + { + "content-length": "25630" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:16:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"951751d2bdb7cd1:0\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001001" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=422586" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "818" + }, + { + "age": "321488" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "expires": "Sun, 04 Nov 2012 17:34:45 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-length": "954" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "1996" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FQV_eKj?9AMF4:V)4hY/82QjU'-Rw1Ra^uI$+VZ; path=/; expires=Fri, 01-Feb-2013 13:29:47 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-length": "1463" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache" + }, + { + "ntcoent-length": "42" + }, + { + "content-type": "image/gif" + }, + { + "expires": "6:29:42 AM" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "trackingid": "3bd68bdc-1e91-410e-bd92-a85913c08914" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "content-encoding": "gzip" + }, + { + "content-length": "54" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/json; charset=utf-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "must-revalidate" + }, + { + "expires": "Mon, 05 Nov 2012 13:29:48 GMT" + }, + { + "set-cookie": "fc=rqbE3Poup4Ofv8GxDEGHJ0T2mPet6qErhzJbX2aX0FVY8uK-xitYHevMNKV5qRPTQHHOFrDBExLyIrZ-jLRD_r3wc-cQ7FRKnITKYzO3zYV52dhK4dSErN9-EcLOAtq0; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:48 GMT; Path=/" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:29:47 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "private, no-cache, no-store, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:29:48 GMT" + }, + { + "content-length": "4142" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "connection": "close" + }, + { + "cache-control": "private, max-age=0, no-cache, no-store, must-revalidate, proxy-revalidate" + }, + { + "expires": "Sat, 1 Jan 2000 01:01:00 GMT" + }, + { + "last-modified": "Sat, 1 Jan 2000 01:01:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "server": "AdifyServer" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "45" + }, + { + "set-cookie": "s=1,2*50951c4c*3Q4liHxMwG*rZye1ewDYpnkdvSJkze6tOMY_w==*; path=/; expires=Mon, 03-Nov-2014 13:29:48 GMT; domain=afy11.net;" + }, + { + "p3p": "policyref=\"http://ad.afy11.net/privacy.xml\", CP=\" NOI DSP NID ADMa DEVa PSAa PSDa OUR OTRa IND COM NAV STA OTC\"" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "sess=1; path=/; expires=Sun, 04-Nov-2012 13:29:49 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "location": "http://r.turn.com/r/bd?ddc=1&pid=54&cver=1&uid=3755642153863499992" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "content-length": "0" + }, + { + "content-type": "text/html; charset=ISO-8859-1" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "GlassFish v3" + }, + { + "p3p": "policyref=\"/bh/w3c/p3p.xml\", CP=\"NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT\"" + }, + { + "set-cookie": "pb_rtb_ev=2-535461.3194305635051091579.0.0.1351949514647; Domain=.contextweb.com; Expires=Sun, 03-Nov-2013 13:31:54 GMT; Path=/" + }, + { + "cw-server": "lga-app602" + }, + { + "cache-control": "private, max-age=0, no-cache, no-store" + }, + { + "expires": "-1" + }, + { + "content-type": "image/gif;charset=ISO-8859-1" + }, + { + "content-language": "en-US" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:31:54 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "cache-control": "post-check=0, pre-check=0" + }, + { + "content-location": "partner.html" + }, + { + "content-type": "text/html" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "last-modified": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "location": "http://cdn.spotxchange.com/media/thumbs/pixel/pixel.gif" + }, + { + "p3p": "CP=\"NOI DSP COR PSAo PSDo OUR IND UNI COM NAV ADMa\"" + }, + { + "pragma": "no-cache" + }, + { + "server": "Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5" + }, + { + "set-cookie": "partner-0=eNptzM0KgkAUQOF1vUvgzzCF0MJwkpGuF3WyGXcpBKOZLYLJ%2B%2FRJtGx7OHyc7fxVdOBsU4lSxifZiCQyaiJ8vAh7EaLNnNGZ1471rMOaGp3dmvTomUpuO5ocWmkxBA4q5nKsWZfeZ6PLZxswi8GwdAigh3dOwFB9Tf%2Bfeb0UP2fgcvlRFQTJOQA6u1wJh0r4OQ3L4%2B3XH6c7OqM%3D; expires=Sun, 03-Mar-2013 13:29:49 GMT; path=/; domain=.spotxchange.com" + }, + { + "tcn": "choice" + }, + { + "vary": "negotiate" + }, + { + "transfer-encoding": "chunked" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "location": "http://r.turn.com/r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESEITR3tLElIgxNs25jzV8Md0&google_cver=1" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "server": "Cookie Matcher" + }, + { + "content-length": "300" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "server": "Apache" + }, + { + "cache-control": "public, max-age=30, proxy-revalidate" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "CP=\"CUR ADM OUR NOR STA NID\"" + }, + { + "set-cookie": "i=cbdc52da-b3d4-4f79-bc70-3121d006fdfa; expires=Mon, 03-Nov-2014 13:29:49 GMT; path=/; domain=.openx.net" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "server": "Apache/2.2.3 (CentOS)" + }, + { + "x-powered-by": "PHP/5.3.3" + }, + { + "p3p": "CP=\"NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "set-cookie": "put_1185=3194305635051091579; expires=Wed, 02-Jan-2013 13:29:49 GMT; path=/; domain=.rubiconproject.com" + }, + { + "content-length": "49" + }, + { + "keep-alive": "timeout=30, max=9907" + }, + { + "connection": "Keep-Alive" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "server": "Apache/2.2.22 (Ubuntu)" + }, + { + "x-powered-by": "PHP/5.3.10-1ubuntu3.4" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "private, max-age=0, no-cache, max-age=86400, must-revalidate" + }, + { + "p3p": "CP=\"CUR ADM OUR NOR STA NID\"" + }, + { + "set-cookie": "ljtrtb=eJyrVjJUslIyNrQ0MTYwNTM2NTA1NLA0NDW3VKoFAE9vBcg%3D; expires=Sun, 03-Nov-2013 13:29:49 GMT; path=/; domain=.lijit.com" + }, + { + "content-length": "43" + }, + { + "expires": "Sun, 04 Nov 2012 13:29:49 GMT" + }, + { + "connection": "close" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:48 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:49 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:49 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:49 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "adaptv/1.0" + }, + { + "content-type": "image/gif" + }, + { + "connection": "Keep-Alive" + }, + { + "set-cookie": "rtbData0=\"key=turn:value=3194305635051091579:expiresAt=Sat+Nov+10+05%3A29%3A49+PST+2012:32-Compatible=true\";Path=/;Domain=.adap.tv;Expires=Mon, 03-Nov-2014 13:29:49 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "W/\"21947-1351808321000\"" + }, + { + "last-modified": "Thu, 01 Nov 2012 22:18:41 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "content-length": "21947" + }, + { + "date": "Sat, 03 Nov 2012 13:29:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:49 GMT" + }, + { + "server": "Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.2" + }, + { + "set-cookie": "PUBRETARGET=82_1446557389; domain=pubmatic.com; expires=Tue, 03-Nov-2015 13:29:49 GMT; path=/" + }, + { + "content-length": "1" + }, + { + "p3p": "CP=\"NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC\"" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "connection": "close" + }, + { + "content-type": "text/html" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "last-modified": "Thu, 26 May 2011 15:59:36 UTC" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "max-age=182357" + }, + { + "date": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR DEVa TAIa OUR BUS UNI\"" + }, + { + "content-type": "image/gif" + }, + { + "expires": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "cache-control": "max-age=0, no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "date": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "content-length": "43" + }, + { + "connection": "keep-alive" + }, + { + "set-cookie": "CMDD=;domain=casalemedia.com;path=/;expires=Sun, 04 Nov 2012 13:29:50 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache" + }, + { + "p3p": "policyref=\"http://tag.admeld.com/w3c/p3p.xml\", CP=\"PSAo PSDo OUR SAM OTR BUS DSP ALL COR\"" + }, + { + "pragma": "no-cache" + }, + { + "cache-control": "no-store" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "content-length": "35" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "none" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "p3p": "policyref=\"http://files.adbrite.com/w3c/p3p.xml\",CP=\"NOI PSA PSD OUR IND UNI NAV DEM STA OTC\"" + }, + { + "server": "XPEHb/1.2" + }, + { + "set-cookie": "rb2=CiQKBjc0MjY5Nxjxxt_6vwEiEzMxOTQzMDU2MzUwNTEwOTE1NzkQAQ; path=/; domain=.adbrite.com; expires=Fri, 01-Feb-2013 13:29:50 GMT" + }, + { + "content-length": "59" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "none" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:50 GMT" + }, + { + "expires": "Mon, 26 Jul 1997 05:00:00 GMT" + }, + { + "p3p": "policyref=\"http://files.adbrite.com/w3c/p3p.xml\",CP=\"NOI PSA PSD OUR IND UNI NAV DEM STA OTC\"" + }, + { + "server": "XPEHb/1.2" + }, + { + "set-cookie": "rb2=CiUKBzExMTM4NzQY78bf-r8BIhMzMTk0MzA1NjM1MDUxMDkxNTc5EAE; path=/; domain=.adbrite.com; expires=Fri, 01-Feb-2013 13:29:50 GMT" + }, + { + "content-length": "59" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "-1" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-aspnetmvc-version": "4.0" + }, + { + "x-ua-compatible": "IE=Edge;chrome=1" + }, + { + "x-content-type-options": "nosniff" + }, + { + "x-frame-options": "SAMEORIGIN" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "date": "Sat, 03 Nov 2012 13:29:51 GMT" + }, + { + "content-length": "24328" + }, + { + "last-modified": "Wed, 31 Oct 2012 23:16:56 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"951751d2bdb7cd1:0\"" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "text/css" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"809c1885b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "7723" + }, + { + "age": "717364" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:35:09 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:13:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "application/javascript" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"08343346b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "11495" + }, + { + "age": "717363" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:39:58 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:13:49 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001003" + }, + { + "date": "Sat, 03 Nov 2012 13:29:51 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"4bbce916b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "10962" + }, + { + "age": "717363" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:38:33 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:13:49 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "max-age=31536000" + }, + { + "content-type": "image/png" + }, + { + "content-encoding": "gzip" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"cf3edfd75b2cd1:0\"" + }, + { + "vary": "Accept-Encoding" + }, + { + "server": "Microsoft-IIS/8.0" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "2004" + }, + { + "age": "717364" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "last-modified": "Wed, 24 Oct 2012 16:37:22 GMT" + }, + { + "expires": "Sat, 26 Oct 2013 06:13:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "content-length": "955" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "2008" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=309678" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "26369" + }, + { + "age": "62302" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 10:12:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001004" + }, + { + "date": "Sat, 03 Nov 2012 13:29:51 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430622" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "45394" + }, + { + "age": "62302" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG5+^Cxrx)0s]#%2L_'x%SEV/hnK]14FQV_eKj?9AMF4:V)4hY/82QjU'-Rw1k^WD2#$i1)erK!!*m?S=+svq; path=/; expires=Fri, 01-Feb-2013 13:29:52 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "content-length": "1391" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "must-revalidate" + }, + { + "expires": "Mon, 05 Nov 2012 13:29:52 GMT" + }, + { + "set-cookie": "fc=PwF5GJAr9THO6EaVkyk6nl6s2gAVQMeB09yelt5Ns41Y8uK-xitYHevMNKV5qRPT6cGxTnB2KJjyGGqZV9P7973wc-cQ7FRKnITKYzO3zYV52dhK4dSErN9-EcLOAtq0; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:52 GMT; Path=/" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "p3p": "CP=\"NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\"" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "set-cookie": "p=1-dPmPP55J4f0S;Path=/;Domain=.rfihub.com" + }, + { + "location": "http://ib.adnxs.com/pxj?bidder=18&seg=378601&action=setuids('672725195243299649','');&redir=" + }, + { + "content-length": "0" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG7DHCxrx)0s]#%2L_'x%SEV/hnK)x4FQV_eKj?9AMF4:V)4hY/82QjU'-Rw1k^WD2#$i1)erM67KPze!'cEZmBiRY; path=/; expires=Fri, 01-Feb-2013 13:29:52 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-length": "43" + }, + { + "content-type": "image/gif" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "application/json; charset=utf-8" + }, + { + "x-content-type-options": "nosniff" + }, + { + "content-length": "35" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "private, no-cache, no-store, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:29:52 GMT" + }, + { + "content-length": "4142" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:53 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + }, + { + "location": "http://dpm.demdex.net/ibs:dpid=375&dpuuid=3194305635051091579" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:53 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + }, + { + "location": "http://tags.bluekai.com/site/4499?id=3194305635051091579" + }, + { + "transfer-encoding": "chunked" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3582991558377661871; Domain=.p-td.com; Expires=Thu, 02-May-2013 13:29:53 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + }, + { + "connection": "close" + }, + { + "server": "AAWebServer" + }, + { + "p3p": "policyref=\"http://www.adadvisor.net/w3c/p3p.xml\",CP=\"NOI NID\"" + }, + { + "content-length": "21" + }, + { + "content-type": "application/javascript" + }, + { + "set-cookie": "ab=0001%3ATeN7H043oXvJ0Gd0I9Rzik4yxpbxTv3S; Domain=.adadvisor.net; Expires=Sat, 03 Nov 2013 13:29:53 GMT; Path=/" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI NID CURa ADMa DEVa PSAa PSDa OUR SAMa BUS PUR COM NAV INT\"" + }, + { + "dcs": "la-dcs-3-1.internal.demdex.com 1.9.12" + }, + { + "set-cookie": "demdex=24048888904140259620062165691276314735;Path=/;Domain=.demdex.net;Expires=Thu, 03-Nov-2022 23:37:33 GMT" + }, + { + "expires": "Thu, 01 Jan 2009 00:00:00 GMT" + }, + { + "cache-control": "no-cache,no-store,must-revalidate,max-age=0,proxy-revalidate,no-transform,private" + }, + { + "pragma": "no-cache" + }, + { + "location": "http://dpm.demdex.net/demconf.jpg?et:ibs%7cdata:dpid=375&dpuuid=3194305635051091579" + }, + { + "content-length": "0" + }, + { + "server": "Jetty(7.2.2.v20101205)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI NID CURa ADMa DEVa PSAa PSDa OUR SAMa BUS PUR COM NAV INT\"" + }, + { + "dcs": "la-dcs-6-3.internal.demdex.com 1.9.12" + }, + { + "set-cookie": "dpm=24048888904140259620062165691276314735;Path=/;Domain=.dpm.demdex.net;Expires=Thu, 03-Nov-2022 23:37:33 GMT" + }, + { + "expires": "Thu, 01 Jan 2009 00:00:00 GMT" + }, + { + "content-type": "image/jpeg" + }, + { + "cache-control": "no-cache,no-store,must-revalidate,max-age=0,proxy-revalidate,no-transform,private" + }, + { + "pragma": "no-cache" + }, + { + "sts": "OK" + }, + { + "content-length": "308" + }, + { + "server": "Jetty(7.2.2.v20101205)" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:53 GMT; Path=/" + }, + { + "location": "http://segment-pixel.invitemedia.com/set_partner_uid?partnerID=402&sscs_active=1&partnerUID=3194305635051091579" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:53 GMT; Path=/" + }, + { + "location": "http://dpm.demdex.net/ibs:dpid=470&dpuuid=3194305635051091579" + }, + { + "transfer-encoding": "chunked" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI NID CURa ADMa DEVa PSAa PSDa OUR SAMa BUS PUR COM NAV INT\"" + }, + { + "dcs": "la-dcs-6-4.internal.demdex.com 1.9.12" + }, + { + "set-cookie": "dpm=24048888904140259620062165691276314735;Path=/;Domain=.dpm.demdex.net;Expires=Thu, 03-Nov-2022 23:37:33 GMT" + }, + { + "expires": "Thu, 01 Jan 2009 00:00:00 GMT" + }, + { + "content-type": "image/gif" + }, + { + "cache-control": "no-cache,no-store,must-revalidate,max-age=0,proxy-revalidate,no-transform,private" + }, + { + "pragma": "no-cache" + }, + { + "sts": "OK" + }, + { + "content-length": "42" + }, + { + "server": "Jetty(7.2.2.v20101205)" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + }, + { + "set-cookie": "io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC\"" + }, + { + "cache-control": "no-cache" + }, + { + "location": "http://cm.g.doubleclick.net/pixel?google_nid=invitemedia&google_cm&google_hm=ZGdnc8YbR_itxPPM3K8lNw==" + }, + { + "content-length": "0" + }, + { + "connection": "close" + }, + { + "server": "Jetty(7.3.1.v20110307)" + } + ] + }, + { + "headers": [ + { + ":status": "302" + }, + { + "location": "http://g-pixel.invitemedia.com/gmatcher?google_gid=CAESEIZ7yBsa025UuJ5EUDIscrc&google_cver=1" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; charset=UTF-8" + }, + { + "server": "Cookie Matcher" + }, + { + "content-length": "293" + }, + { + "x-xss-protection": "1; mode=block" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "set-cookie": "io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT" + }, + { + "expires": "Thu, 01 Jan 1970 00:00:00 GMT" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC\"" + }, + { + "cache-control": "no-cache" + }, + { + "content-length": "43" + }, + { + "connection": "close" + }, + { + "server": "Jetty(7.3.1.v20110307)" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3512552298351731296; Domain=.audienceiq.com; Expires=Thu, 02-May-2013 13:29:54 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:53 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3819163497929337273; Domain=.audienceiq.com; Expires=Thu, 02-May-2013 13:29:54 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "server": "Apache/2.2.3 (CentOS)" + }, + { + "p3p": "CP=\"NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV\", policyref=\"http://tags.bluekai.com/w3c/p3p.xml\"" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Thu, 01 Dec 1994 16:00:00 GMT" + }, + { + "cache-control": "max-age=0, no-cache, no-store" + }, + { + "set-cookie": "bkdc=wdc; expires=Mon, 03-Dec-2012 13:29:54 GMT; path=/; domain=.bluekai.com" + }, + { + "bk-server": "f325" + }, + { + "content-length": "62" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430617" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "49975" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:27 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=402248" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "54206" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 11:55:38 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=404329" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "34129" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 12:30:19 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430621" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "30171" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=424287" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "32018" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 18:02:58 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=427425" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "24185" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 18:55:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=272174" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "33943" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Mon, 05 Nov 2012 23:47:45 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=325871" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "52353" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 14:42:41 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430158" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "29736" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:40:48 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430924" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "16459" + }, + { + "age": "62304" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:53:34 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=392023" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "16888" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 09:05:14 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430621" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "39134" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:32 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430616" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "18663" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:27 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430616" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "22545" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:27 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=309680" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "48746" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 10:12:51 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=307453" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "32656" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 09:35:44 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431902" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "4473" + }, + { + "age": "16748" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 08:49:08 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=429492" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA06" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA06" + }, + { + "content-length": "5239" + }, + { + "age": "22750" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 06:28:56 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=426970" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "4784" + }, + { + "age": "22751" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Thu, 08 Nov 2012 05:46:53 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431944" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "3843" + }, + { + "age": "50495" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 23:27:23 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431143" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "4058" + }, + { + "age": "50541" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 23:13:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=431761" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA07" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA07" + }, + { + "content-length": "3291" + }, + { + "age": "84703" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 13:54:12 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430621" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "34459" + }, + { + "age": "62302" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:48:33 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "954" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "1996" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001006" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG4S]cvjr/?0P(*AuB-u**g1:XIFC`Ei'/AQwFYO^vhHR3SSI7:0ssX1ka!s@?zYs*/7]T1O`l^oQUpqMxHLk'kk[7/>IRq; path=/; expires=Fri, 01-Feb-2013 13:29:56 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:56 GMT" + }, + { + "content-length": "1447" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "must-revalidate" + }, + { + "expires": "Mon, 05 Nov 2012 13:29:56 GMT" + }, + { + "set-cookie": "fc=2flUeaaDSas8xOI0IwXvS5DprXaL8T8Iioo9PyFO3fRY8uK-xitYHevMNKV5qRPT3ar07KU0y6i_uQzRwZVJBr3wc-cQ7FRKnITKYzO3zYV52dhK4dSErN9-EcLOAtq0; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:56 GMT; Path=/" + }, + { + "content-type": "text/javascript;charset=UTF-8" + }, + { + "transfer-encoding": "chunked" + }, + { + "content-encoding": "gzip" + }, + { + "vary": "Accept-Encoding" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001002" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=337125" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA08" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA08" + }, + { + "content-length": "47409" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Tue, 06 Nov 2012 17:50:16 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "text/html;charset=UTF-8" + }, + { + "content-encoding": "gzip" + }, + { + "cache-control": "private, no-cache, no-store, must-revalidate" + }, + { + "date": "Sat, 03 Nov 2012 13:29:56 GMT" + }, + { + "content-length": "4142" + }, + { + "connection": "keep-alive" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "public, must-revalidate, proxy-revalidate, max-age=430158" + }, + { + "content-type": "image/jpeg" + }, + { + "server": "CO1MPPSTCA05" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "s": "CO1MPPSTCA05" + }, + { + "content-length": "40464" + }, + { + "age": "62303" + }, + { + "date": "Sat, 03 Nov 2012 13:29:54 GMT" + }, + { + "expires": "Wed, 07 Nov 2012 19:40:49 GMT" + }, + { + "connection": "keep-alive" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "server": "Microsoft-IIS/7.0" + }, + { + "p3p": "CP=\"NON DSP COR CURa PSA PSD OUR BUS NAV STA\"" + }, + { + "x-aspnet-version": "4.0.30319" + }, + { + "date": "Sat, 03 Nov 2012 13:29:55 GMT" + }, + { + "content-length": "43" + }, + { + "vary": "Accept-Encoding" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:56 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:57 GMT" + }, + { + "content-length": "1162" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "2685" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10661134-T100558395-C70000000000110100" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:57 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001004" + }, + { + "date": "Sat, 03 Nov 2012 13:29:56 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:57 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-length": "2346" + }, + { + "date": "Sat, 03 Nov 2012 13:29:57 GMT" + }, + { + "location": "http://s0.2mdn.net/viewad/3642305/1-1x1.gif" + }, + { + "cache-control": "no-cache" + }, + { + "pragma": "no-cache" + }, + { + "server": "DCLK-AdSvr" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "text/javascript" + }, + { + "last-modified": "Tue, 08 May 2012 20:09:07 GMT" + }, + { + "date": "Fri, 02 Nov 2012 14:30:09 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 14:30:09 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "321" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "82788" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 24 May 2012 20:12:56 GMT" + }, + { + "date": "Fri, 02 Nov 2012 20:51:00 GMT" + }, + { + "expires": "Sat, 03 Nov 2012 20:51:00 GMT" + }, + { + "x-content-type-options": "nosniff" + }, + { + "server": "sffe" + }, + { + "content-length": "16399" + }, + { + "x-xss-protection": "1; mode=block" + }, + { + "age": "59938" + }, + { + "cache-control": "public, max-age=86400" + }, + { + "vary": "Accept-Encoding" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:57 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:29:58 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "953" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "1996" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001006" + }, + { + "date": "Sat, 03 Nov 2012 13:29:58 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG2RnOx8gy:7tmWz0W/8y; path=/; expires=Fri, 01-Feb-2013 13:29:59 GMT; domain=.adnxs.com; HttpOnly" + }, + { + "content-type": "text/html; charset=utf-8" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "539" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:58 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001003" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store" + }, + { + "content-type": "text/html" + }, + { + "content-encoding": "gzip" + }, + { + "expires": "0" + }, + { + "vary": "Accept-Encoding" + }, + { + "x-msadid": "300089440.299934848" + }, + { + "date": "Sat, 03 Nov 2012 13:29:58 GMT" + }, + { + "connection": "close" + }, + { + "content-length": "508" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "server": "Apache-Coyote/1.1" + }, + { + "p3p": "policyref=\"/w3c/p3p.xml\", CP=\"NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV\"" + }, + { + "cache-control": "max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0" + }, + { + "pragma": "no-cache" + }, + { + "set-cookie": "uid=3194305635051091579; Domain=.turn.com; Expires=Thu, 02-May-2013 13:29:59 GMT; Path=/" + }, + { + "content-type": "image/gif" + }, + { + "content-length": "43" + }, + { + "date": "Sat, 03 Nov 2012 13:29:58 GMT" + } + ] + }, + { + "headers": [ + { + ":status": "204" + }, + { + "content-length": "0" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "connection": "keep-alive" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Mon, 01 Jan 1990 00:00:00 GMT" + }, + { + "cache-control": "private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate" + }, + { + "content-type": "image/gif" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "private, no-cache, proxy-revalidate, no-store" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "last-modified": "Thu, 20 Oct 2011 10:27:58 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"04baaef128fcc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "x-powered-by": "ASP.NET" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "set-cookie": "ANONCHK=0; domain=c.msn.com; expires=Tue, 06-Nov-2012 13:29:30 GMT; path=/;" + }, + { + "date": "Sat, 03 Nov 2012 13:30:00 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, must-revalidate" + }, + { + "content-type": "text/html; Charset=utf-8" + }, + { + "last-modified": "Fri, 05 Oct 2012 19:29:28 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"01c35bc2fa3cd1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "access-control-allow-origin": "*" + }, + { + "p3p": "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "954" + }, + { + "pragma": "no-cache" + }, + { + "cteonnt-length": "2008" + }, + { + "expires": "Fri, 01 Jan 1990 00:00:00 GMT" + }, + { + "x-radid": "P10723443-T100550693-C29000000000082620" + }, + { + "content-encoding": "gzip" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001005" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001004" + }, + { + "date": "Sat, 03 Nov 2012 13:29:59 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-cache, no-store, must-revalidate" + }, + { + "pragma": "no-cache" + }, + { + "content-type": "image/gif" + }, + { + "expires": "-1" + }, + { + "last-modified": "Mon, 18 Jul 2011 19:03:37 GMT" + }, + { + "accept-ranges": "bytes" + }, + { + "etag": "\"a29327667d45cc1:0\"" + }, + { + "server": "Microsoft-IIS/7.5" + }, + { + "s": "VIEMSNVM001001" + }, + { + "date": "Sat, 03 Nov 2012 13:30:00 GMT" + }, + { + "content-length": "42" + } + ] + }, + { + "headers": [ + { + ":status": "200" + }, + { + "cache-control": "no-store, no-cache, private" + }, + { + "pragma": "no-cache" + }, + { + "expires": "Sat, 15 Nov 2008 16:00:00 GMT" + }, + { + "p3p": "policyref=\"http://cdn.adnxs.com/w3c/policy/p3p.xml\", CP=\"NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE\"" + }, + { + "x-xss-protection": "0" + }, + { + "set-cookie": "anj=Kfu=8fG6kGcvjr/?0P(*AuB-u**g1:XIDv6Ei'/AQwFYO^vhHR3SSI7:0ssX1dl0I/A@=2rt>+)p4?5?fIu+)p4?5?fIu+)p4?5?fIu+)p4?5?fIu