From 45adc44fed76126a4fd47933df234a3616b61d07 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:10:10 -0500 Subject: [PATCH 01/13] Reformat src/hpack.app.src --- src/hpack.app.src | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/src/hpack.app.src b/src/hpack.app.src index 0a4ebd3..92313d7 100644 --- a/src/hpack.app.src +++ b/src/hpack.app.src @@ -1,18 +1,14 @@ -%% -*- mode: erlang -*- -{application, hpack, - [ - {description, "HPACK Implementation"}, - {vsn, git}, - {registered, []}, - {applications, [ - kernel, - stdlib - ]}, - {env, []}, - - {pkg_name, 'hpack_erl'}, - {maintainers, ["Joe DeVivo"]}, - {licenses, ["MIT"]}, - {links, [{"Github", "https://github.com/joedevivo/hpack"}]} - ]}. -%% vim: set filetype=erlang tabstop=2 +{application, hpack, [ + {description, "HPACK Implementation"}, + {vsn, git}, + {registered, []}, + {applications, [ + kernel, + stdlib + ]}, + {env, []}, + {pkg_name, 'hpack_erl'}, + {maintainers, ["Joe DeVivo"]}, + {licenses, ["MIT"]}, + {links, [{"Github", "https://github.com/joedevivo/hpack"}]} +]}. \ No newline at end of file From a35a812ff91d3859381bff4da6133f7c407bdb51 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:12:24 -0500 Subject: [PATCH 02/13] Fixup rebar.config --- rebar.config | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/rebar.config b/rebar.config index 8c929fd..0e5c35c 100644 --- a/rebar.config +++ b/rebar.config @@ -1,21 +1,14 @@ -%% -*- mode: erlang -*- -%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*- -%% ex: ts=4 sw=4 ft=erlang et {erl_opts, [ warnings_as_errors, debug_info ]}. {deps, []}. - -{cover_enabled, true}. - {ct_opts, [{verbose,true}]}. -{profiles, [ - {test, [{erl_opts, [ - {i,["include"]} - ]} - ] - }] -}. +{eunit_opts, [ + verbose +]}. + +{cover_enabled, true}. +{cover_print_enabled, true}. From f1efbf5b48f9be778683ff1ae2b7493d274f6f0c Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:13:12 -0500 Subject: [PATCH 03/13] Simplify integer encoding/decoding --- src/hpack_integer.erl | 130 ++++++++++++---------------------- test/hpack_integer_tests.erl | 132 ++++++++++++++++++++++------------- 2 files changed, 127 insertions(+), 135 deletions(-) diff --git a/src/hpack_integer.erl b/src/hpack_integer.erl index d062066..37ce6be 100644 --- a/src/hpack_integer.erl +++ b/src/hpack_integer.erl @@ -6,101 +6,59 @@ %% as defined http://tools.ietf.org/html/rfc7541#section-5.1 -export([ - decode/2, - encode/2 - ]). + encode/2, + decode/2 +]). -%% To save every bit on the wire, an integer can fill a partial octet, -%% and usually does in HPACK. If that integer is small enough to fit, -%% then no further work is required. -%% In the octet below, the first three bits were used for something -%% else. Doesn't matter what. What matters is that we have 5 bits left -%% for the integer, which means if it's less than 2^5-1, we're all -%% good! +-spec encode(non_neg_integer(), pos_integer()) -> bitstring(). +encode( 1, 1) -> << 1:1, 0:8>>; +encode( 3, 2) -> << 3:2, 0:8>>; +encode( 7, 3) -> << 7:3, 0:8>>; +encode( 15, 4) -> << 15:4, 0:8>>; +encode( 31, 5) -> << 31:5, 0:8>>; +encode( 63, 6) -> << 63:6, 0:8>>; +encode(127, 7) -> <<127:7, 0:8>>; +encode(255, 8) -> <<255:8, 0:8>>; -%% 0 1 2 3 4 5 6 7 -%% +---+---+---+---+---+---+---+---+ -%% | ? | ? | ? | Value | -%% +---+---+---+-------------------+ - -%% So what if it's greater than 2^5-1? +encode(Int, N) when is_integer(Int), is_integer(N), Int < (1 bsl N - 1) -> + <>; -%% 0 1 2 3 4 5 6 7 -%% +---+---+---+---+---+---+---+---+ -%% | ? | ? | ? | 1 1 1 1 1 | -%% +---+---+---+-------------------+ -%% | 1 | Value-(2^5-1) LSB | -%% +---+---------------------------+ -%% ... -%% +---+---------------------------+ -%% | 0 | Value-(2^5-1) MSB | -%% +---+---------------------------+ +encode(Int, N) when is_integer(Int), is_integer(N) -> + Prefix = 1 bsl N - 1, + Remaining = Int - Prefix, + encode_int(Remaining, [<>]). -%% Then we don't want to waste those first 5 bits, so they're all set -%% to 1, and we know the integer is greater than 2^5-1. How much -%% greater? That's the question we answer with the following octets. +-spec encode_int(non_neg_integer(), [bitstring()]) -> bitstring(). +encode_int(Int, Acc) when is_integer(Int), is_list(Acc) -> + ThisByte = (Int rem 128), + RestInt = Int bsr 7, + case RestInt of + 0 -> + list_to_bitstring(lists:reverse(Acc, [<>])); + _ -> + encode_int(RestInt, [<<1:1, ThisByte:7>> | Acc]) + end. -%% "Value-(2^5-1)" is "how much greater?". Let's call it I. --spec decode(binary(), pos_integer()) -> {non_neg_integer(), binary()}. -decode(<<1:1,Bin/bits>>, 1) -> - prefix_plus(1, decode(Bin, 0, 0)); -decode(<<3:2,Bin/bits>>, 2) -> - prefix_plus(3, decode(Bin, 0, 0)); -decode(<<7:3,Bin/bits>>, 3) -> - prefix_plus(7, decode(Bin, 0, 0)); -decode(<<15:4,Bin/bits>>, 4) -> - prefix_plus(15, decode(Bin, 0, 0)); -decode(<<31:5,Bin/bits>>, 5) -> - prefix_plus(31, decode(Bin, 0, 0)); -decode(<<63:6,Bin/bits>>, 6) -> - prefix_plus(63, decode(Bin, 0, 0)); -decode(<<127:7,Bin/bits>>, 7) -> - prefix_plus(127, decode(Bin, 0, 0)); -decode(<<255:8,Bin/bits>>, 8) -> - prefix_plus(255, decode(Bin, 0, 0)); -%% This clause means we have something small enough to fit in prefix +-spec decode(bitstring(), pos_integer()) -> {non_neg_integer(), binary()}. +decode(<< 1:1, Bin/bits>>, 1) -> decode(Bin, 1, 1); +decode(<< 3:2, Bin/bits>>, 2) -> decode(Bin, 1, 3); +decode(<< 7:3, Bin/bits>>, 3) -> decode(Bin, 1, 7); +decode(<< 15:4, Bin/bits>>, 4) -> decode(Bin, 1, 15); +decode(<< 31:5, Bin/bits>>, 5) -> decode(Bin, 1, 31); +decode(<< 63:6, Bin/bits>>, 6) -> decode(Bin, 1, 63); +decode(<<127:7, Bin/bits>>, 7) -> decode(Bin, 1, 127); +decode(<<255:8, Bin/bits>>, 8) -> decode(Bin, 1, 255); decode(Bin, Prefix) -> - <> = Bin, + %% This clause means we have something small + %% enough to fit in prefix + <> = Bin, {Value, Rem}. --spec decode(binary(), non_neg_integer(), non_neg_integer()) -> {non_neg_integer(), binary()}. -decode(<<1:1,Int:7,Rem/binary>>, M, I) -> - decode(Rem, M+7, round(I + Int * math:pow(2, M))); -decode(<<0:1,Int:7,Rem/binary>>, M, I) -> - {round(I + Int * math:pow(2, M)), Rem}. --spec prefix_plus(pos_integer(), {non_neg_integer(), binary()}) -> {non_neg_integer(), binary()}. -prefix_plus(Prefix, {I, Rem}) -> - {Prefix+I, Rem}. +decode(<<1:1, Int:7, Rest/binary>>, Factor, Value) -> + decode(Rest, Factor bsl 7, Value + (Int * Factor)); --spec encode(non_neg_integer(), pos_integer()) -> binary(). -%% First clauses are peformance optimizations for Int == 2^Prefix - 1 -encode( 1,1) -> << 1:1,0:8>>; -encode( 3,2) -> << 3:2,0:8>>; -encode( 7,3) -> << 7:3,0:8>>; -encode( 15,4) -> << 15:4,0:8>>; -encode( 31,5) -> << 31:5,0:8>>; -encode( 63,6) -> << 63:6,0:8>>; -encode(127,7) -> <<127:7,0:8>>; -encode(255,8) -> <<255,0>>; -encode(Int, N) when Int < (1 bsl N - 1) -> - <>; -encode(Int, N) -> - Prefix = 1 bsl N - 1, - Remaining = Int - Prefix, - Bin = encode_(Remaining, <<>>), - <>. - --spec encode_(non_neg_integer(), binary()) -> binary(). -encode_(I, BinAcc) -> - LeastSigSeven = (I rem 128), - RestToEncode = I bsr 7, - case RestToEncode of - 0 -> - <>; - _ -> %% Adds the continuation bit - ThisByte = 128 + LeastSigSeven, - encode_(RestToEncode, <>) - end. +decode(<<0:1, Int:7, Rest/binary>>, Factor, Value) -> + {Value + (Int * Factor), Rest}. diff --git a/test/hpack_integer_tests.erl b/test/hpack_integer_tests.erl index 7c3a417..f656f94 100644 --- a/test/hpack_integer_tests.erl +++ b/test/hpack_integer_tests.erl @@ -1,51 +1,85 @@ -module(hpack_integer_tests). + -include_lib("eunit/include/eunit.hrl"). --compile([export_all]). - -decode_zero_test() -> - ?assertEqual({0, <<>>}, hpack_integer:decode(<<0:5>>, 5)), - ?assertEqual({0, <<1>>}, hpack_integer:decode(<<0:5,1:8>>, 5)), - ok. - -decode_sixtytwo_test() -> - ?assertEqual({62, <<>>}, hpack_integer:decode(<<62:6>>, 6)), - ?assertEqual({62, <<1>>}, hpack_integer:decode(<<62:6,1:8>>, 6)), - ok. - -decode_sixtyfour_test() -> - ?assertEqual({64, <<>>}, hpack_integer:decode(<<63:6,1:8>>, 6)), - ?assertEqual({64, <<1>>}, hpack_integer:decode(<<63:6,1:8,1:8>>, 6)), - ok. - -encode_integer_test() -> - ?assertEqual(<<62:6>>, hpack_integer:encode(62,6)), - ?assertEqual(<<63:6,1:8>>, hpack_integer:encode(64,6)), - ?assertEqual(<<63:6,0:8>>, hpack_integer:encode(63,6)), - ok. - -encode_prefix_max_equals_value_test() -> - ?assertEqual(<< 1:1,0:8>>, hpack_integer:encode( 1,1)), - ?assertEqual(<< 3:2,0:8>>, hpack_integer:encode( 3,2)), - ?assertEqual(<< 7:3,0:8>>, hpack_integer:encode( 7,3)), - ?assertEqual(<< 15:4,0:8>>, hpack_integer:encode( 15,4)), - ?assertEqual(<< 31:5,0:8>>, hpack_integer:encode( 31,5)), - ?assertEqual(<< 63:6,0:8>>, hpack_integer:encode( 63,6)), - ?assertEqual(<<127:7,0:8>>, hpack_integer:encode(127,7)), - ?assertEqual(<<255,0>>, hpack_integer:encode(255,8)), - ok. - -encode_zero_test() -> - ?assertEqual(<<0:1>>, hpack_integer:encode(0,1)), - ?assertEqual(<<0:2>>, hpack_integer:encode(0,2)), - ?assertEqual(<<0:3>>, hpack_integer:encode(0,3)), - ?assertEqual(<<0:4>>, hpack_integer:encode(0,4)), - ?assertEqual(<<0:5>>, hpack_integer:encode(0,5)), - ?assertEqual(<<0:6>>, hpack_integer:encode(0,6)), - ?assertEqual(<<0:7>>, hpack_integer:encode(0,7)), - ?assertEqual(<<0>>, hpack_integer:encode(0,8)), - ok. - -mplus7_test() -> - ?assertEqual(<<127:7,140,1>>, hpack_integer:encode(267, 7)), - ?assertEqual({267, <<>>}, hpack_integer:decode(<<127:7,140,1>>, 7)), - ok. + + +encode_decode_simple_test() -> + % Value, PrefixBits, Encoded + Tests = [ + % Basic tests + {0, 5, <<0:5>>}, + {62, 6, <<62:6>>}, + {63, 6, <<63:6, 0:8>>}, + {64, 6, <<63:6, 1:8>>}, + + % Three byte encoding + {267, 7, <<127:7, 140:8, 1:8>>}, + + % Max value for prefix + {1, 1, <<1:1, 0:8>>}, + {3, 2, <<3:2, 0:8>>}, + {7, 3, <<7:3, 0:8>>}, + {15, 4, <<15:4, 0:8>>}, + {31, 5, <<31:5, 0:8>>}, + {63, 6, <<63:6, 0:8>>}, + {127, 7, <<127:7, 0:8>>}, + {255, 8, <<255:8, 0:8>>}, + + % Zero for each prefix length + {0, 1, <<0:1>>}, + {0, 2, <<0:2>>}, + {0, 3, <<0:3>>}, + {0, 4, <<0:4>>}, + {0, 5, <<0:5>>}, + {0, 6, <<0:6>>}, + {0, 7, <<0:7>>}, + {0, 8, <<0:8>>} + ], + lists:foreach(fun({Value, PrefixBits, Encoded}) -> + ?assertEqual(Encoded, hpack_integer:encode(Value, PrefixBits)), + ?assertEqual({Value, <<>>}, hpack_integer:decode(Encoded, PrefixBits)) + end, Tests). + + +decode_with_tail_test() -> + Tests = [ + % Prefix bits, encoded, decoded + {5, <<0:5, 1:8>>, {0, <<1:8>>}}, + {6, <<62:6, 1:8>>, {62, <<1:8>>}}, + {6, <<63:6, 0:8, 1:8>>, {63, <<1:8>>}}, + {6, <<63:6, 1:8, 1:8>>, {64, <<1:8>>}} + ], + + lists:foreach(fun({PrefixBits, Encoded, Decoded}) -> + ?assertEqual(Decoded, hpack_integer:decode(Encoded, PrefixBits)) + end, Tests). + + +roundtrip_sequential_test() -> + lists:foreach(fun(Value) -> + lists:foreach(fun(PrefixBits) -> + roundtrip(Value, PrefixBits) + end, lists:seq(1, 8)) + end, lists:seq(0, 512)). + + +roundtrip_random_test() -> + lists:foreach(fun(_) -> + Value = hpack_tutil:random_int(16#FFFF), + lists:foreach(fun(PrefixBits) -> + roundtrip(Value, PrefixBits) + end, lists:seq(1, 8)) + end, lists:seq(0, 512)). + + +roundtrip(Value, PrefixBits) -> + Encoded = hpack_integer:encode(Value, PrefixBits), + Decoded = hpack_integer:decode(Encoded, PrefixBits), + ?assertEqual({Value, <<>>}, Decoded), + + Garbage = hpack_tutil:random_bin(64), + WithGarbage = <>, + ?assertEqual( + {Value, Garbage}, + hpack_integer:decode(WithGarbage, PrefixBits) + ). From 4bbb39fe7dbb3c32723e034c2361b9549849c968 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:13:45 -0500 Subject: [PATCH 04/13] Rename src/huffman.erl src/hpack_huffman.erl --- src/{huffman.erl => hpack_huffman.erl} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{huffman.erl => hpack_huffman.erl} (100%) diff --git a/src/huffman.erl b/src/hpack_huffman.erl similarity index 100% rename from src/huffman.erl rename to src/hpack_huffman.erl From 4b3b5f30e7bec2680e3c01103f0b089b9d5336ea Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:16:02 -0500 Subject: [PATCH 05/13] Implement complete huffman encoding/decoding --- src/hpack_huffman.erl | 595 ++++------------------------------- src/hpack_huffman.hrl | 520 ++++++++++++++++++++++++++++++ test/hpack_huffman_tests.erl | 34 ++ test/huffman_tests.erl | 14 - tools/gen_huffman.py | 333 ++++++++++++++++++++ 5 files changed, 956 insertions(+), 540 deletions(-) create mode 100644 src/hpack_huffman.hrl create mode 100644 test/hpack_huffman_tests.erl delete mode 100644 test/huffman_tests.erl create mode 100755 tools/gen_huffman.py diff --git a/src/hpack_huffman.erl b/src/hpack_huffman.erl index f932933..52bc0c0 100644 --- a/src/hpack_huffman.erl +++ b/src/hpack_huffman.erl @@ -1,531 +1,74 @@ %% @private --module(huffman). --export([decode/1, encode/1]). +-module(hpack_huffman). -decode(Bin) -> decode(Bin, []). -decode(<< 16#1ff8:13,Bits/bits>>, Acc) -> decode(Bits, [ 0|Acc]); -decode(<< 16#7fffd8:23,Bits/bits>>, Acc) -> decode(Bits, [ 1|Acc]); -decode(<< 16#fffffe2:28,Bits/bits>>, Acc) -> decode(Bits, [ 2|Acc]); -decode(<< 16#fffffe3:28,Bits/bits>>, Acc) -> decode(Bits, [ 3|Acc]); -decode(<< 16#fffffe4:28,Bits/bits>>, Acc) -> decode(Bits, [ 4|Acc]); -decode(<< 16#fffffe5:28,Bits/bits>>, Acc) -> decode(Bits, [ 5|Acc]); -decode(<< 16#fffffe6:28,Bits/bits>>, Acc) -> decode(Bits, [ 6|Acc]); -decode(<< 16#fffffe7:28,Bits/bits>>, Acc) -> decode(Bits, [ 7|Acc]); -decode(<< 16#fffffe8:28,Bits/bits>>, Acc) -> decode(Bits, [ 8|Acc]); -decode(<< 16#ffffea:24,Bits/bits>>, Acc) -> decode(Bits, [ 9|Acc]); -decode(<<16#3ffffffc:30,Bits/bits>>, Acc) -> decode(Bits, [ 10|Acc]); -decode(<< 16#fffffe9:28,Bits/bits>>, Acc) -> decode(Bits, [ 11|Acc]); -decode(<< 16#fffffea:28,Bits/bits>>, Acc) -> decode(Bits, [ 12|Acc]); -decode(<<16#3ffffffd:30,Bits/bits>>, Acc) -> decode(Bits, [ 13|Acc]); -decode(<< 16#fffffeb:28,Bits/bits>>, Acc) -> decode(Bits, [ 14|Acc]); -decode(<< 16#fffffec:28,Bits/bits>>, Acc) -> decode(Bits, [ 15|Acc]); -decode(<< 16#fffffed:28,Bits/bits>>, Acc) -> decode(Bits, [ 16|Acc]); -decode(<< 16#fffffee:28,Bits/bits>>, Acc) -> decode(Bits, [ 17|Acc]); -decode(<< 16#fffffef:28,Bits/bits>>, Acc) -> decode(Bits, [ 18|Acc]); -decode(<< 16#ffffff0:28,Bits/bits>>, Acc) -> decode(Bits, [ 19|Acc]); -decode(<< 16#ffffff1:28,Bits/bits>>, Acc) -> decode(Bits, [ 20|Acc]); -decode(<< 16#ffffff2:28,Bits/bits>>, Acc) -> decode(Bits, [ 21|Acc]); -decode(<<16#3ffffffe:30,Bits/bits>>, Acc) -> decode(Bits, [ 22|Acc]); -decode(<< 16#ffffff3:28,Bits/bits>>, Acc) -> decode(Bits, [ 23|Acc]); -decode(<< 16#ffffff4:28,Bits/bits>>, Acc) -> decode(Bits, [ 24|Acc]); -decode(<< 16#ffffff5:28,Bits/bits>>, Acc) -> decode(Bits, [ 25|Acc]); -decode(<< 16#ffffff6:28,Bits/bits>>, Acc) -> decode(Bits, [ 26|Acc]); -decode(<< 16#ffffff7:28,Bits/bits>>, Acc) -> decode(Bits, [ 27|Acc]); -decode(<< 16#ffffff8:28,Bits/bits>>, Acc) -> decode(Bits, [ 28|Acc]); -decode(<< 16#ffffff9:28,Bits/bits>>, Acc) -> decode(Bits, [ 29|Acc]); -decode(<< 16#ffffffa:28,Bits/bits>>, Acc) -> decode(Bits, [ 30|Acc]); -decode(<< 16#ffffffb:28,Bits/bits>>, Acc) -> decode(Bits, [ 31|Acc]); -decode(<< 16#14:6,Bits/bits>>, Acc) -> decode(Bits, [ 32|Acc]); -decode(<< 16#3f8:10,Bits/bits>>, Acc) -> decode(Bits, [ 33|Acc]); -decode(<< 16#3f9:10,Bits/bits>>, Acc) -> decode(Bits, [ 34|Acc]); -decode(<< 16#ffa:12,Bits/bits>>, Acc) -> decode(Bits, [ 35|Acc]); -decode(<< 16#1ff9:13,Bits/bits>>, Acc) -> decode(Bits, [ 36|Acc]); -decode(<< 16#15:6,Bits/bits>>, Acc) -> decode(Bits, [ 37|Acc]); -decode(<< 16#f8:8,Bits/bits>>, Acc) -> decode(Bits, [ 38|Acc]); -decode(<< 16#7fa:11,Bits/bits>>, Acc) -> decode(Bits, [ 39|Acc]); -decode(<< 16#3fa:10,Bits/bits>>, Acc) -> decode(Bits, [ 40|Acc]); -decode(<< 16#3fb:10,Bits/bits>>, Acc) -> decode(Bits, [ 41|Acc]); -decode(<< 16#f9:8,Bits/bits>>, Acc) -> decode(Bits, [ 42|Acc]); -decode(<< 16#7fb:11,Bits/bits>>, Acc) -> decode(Bits, [ 43|Acc]); -decode(<< 16#fa:8,Bits/bits>>, Acc) -> decode(Bits, [ 44|Acc]); -decode(<< 16#16:6,Bits/bits>>, Acc) -> decode(Bits, [ 45|Acc]); -decode(<< 16#17:6,Bits/bits>>, Acc) -> decode(Bits, [ 46|Acc]); -decode(<< 16#18:6,Bits/bits>>, Acc) -> decode(Bits, [ 47|Acc]); -decode(<< 16#0:5,Bits/bits>>, Acc) -> decode(Bits, [ 48|Acc]); -decode(<< 16#1:5,Bits/bits>>, Acc) -> decode(Bits, [ 49|Acc]); -decode(<< 16#2:5,Bits/bits>>, Acc) -> decode(Bits, [ 50|Acc]); -decode(<< 16#19:6,Bits/bits>>, Acc) -> decode(Bits, [ 51|Acc]); -decode(<< 16#1a:6,Bits/bits>>, Acc) -> decode(Bits, [ 52|Acc]); -decode(<< 16#1b:6,Bits/bits>>, Acc) -> decode(Bits, [ 53|Acc]); -decode(<< 16#1c:6,Bits/bits>>, Acc) -> decode(Bits, [ 54|Acc]); -decode(<< 16#1d:6,Bits/bits>>, Acc) -> decode(Bits, [ 55|Acc]); -decode(<< 16#1e:6,Bits/bits>>, Acc) -> decode(Bits, [ 56|Acc]); -decode(<< 16#1f:6,Bits/bits>>, Acc) -> decode(Bits, [ 57|Acc]); -decode(<< 16#5c:7,Bits/bits>>, Acc) -> decode(Bits, [ 58|Acc]); -decode(<< 16#fb:8,Bits/bits>>, Acc) -> decode(Bits, [ 59|Acc]); -decode(<< 16#7ffc:15,Bits/bits>>, Acc) -> decode(Bits, [ 60|Acc]); -decode(<< 16#20:6,Bits/bits>>, Acc) -> decode(Bits, [ 61|Acc]); -decode(<< 16#ffb:12,Bits/bits>>, Acc) -> decode(Bits, [ 62|Acc]); -decode(<< 16#3fc:10,Bits/bits>>, Acc) -> decode(Bits, [ 63|Acc]); -decode(<< 16#1ffa:13,Bits/bits>>, Acc) -> decode(Bits, [ 64|Acc]); -decode(<< 16#21:6,Bits/bits>>, Acc) -> decode(Bits, [ 65|Acc]); -decode(<< 16#5d:7,Bits/bits>>, Acc) -> decode(Bits, [ 66|Acc]); -decode(<< 16#5e:7,Bits/bits>>, Acc) -> decode(Bits, [ 67|Acc]); -decode(<< 16#5f:7,Bits/bits>>, Acc) -> decode(Bits, [ 68|Acc]); -decode(<< 16#60:7,Bits/bits>>, Acc) -> decode(Bits, [ 69|Acc]); -decode(<< 16#61:7,Bits/bits>>, Acc) -> decode(Bits, [ 70|Acc]); -decode(<< 16#62:7,Bits/bits>>, Acc) -> decode(Bits, [ 71|Acc]); -decode(<< 16#63:7,Bits/bits>>, Acc) -> decode(Bits, [ 72|Acc]); -decode(<< 16#64:7,Bits/bits>>, Acc) -> decode(Bits, [ 73|Acc]); -decode(<< 16#65:7,Bits/bits>>, Acc) -> decode(Bits, [ 74|Acc]); -decode(<< 16#66:7,Bits/bits>>, Acc) -> decode(Bits, [ 75|Acc]); -decode(<< 16#67:7,Bits/bits>>, Acc) -> decode(Bits, [ 76|Acc]); -decode(<< 16#68:7,Bits/bits>>, Acc) -> decode(Bits, [ 77|Acc]); -decode(<< 16#69:7,Bits/bits>>, Acc) -> decode(Bits, [ 78|Acc]); -decode(<< 16#6a:7,Bits/bits>>, Acc) -> decode(Bits, [ 79|Acc]); -decode(<< 16#6b:7,Bits/bits>>, Acc) -> decode(Bits, [ 80|Acc]); -decode(<< 16#6c:7,Bits/bits>>, Acc) -> decode(Bits, [ 81|Acc]); -decode(<< 16#6d:7,Bits/bits>>, Acc) -> decode(Bits, [ 82|Acc]); -decode(<< 16#6e:7,Bits/bits>>, Acc) -> decode(Bits, [ 83|Acc]); -decode(<< 16#6f:7,Bits/bits>>, Acc) -> decode(Bits, [ 84|Acc]); -decode(<< 16#70:7,Bits/bits>>, Acc) -> decode(Bits, [ 85|Acc]); -decode(<< 16#71:7,Bits/bits>>, Acc) -> decode(Bits, [ 86|Acc]); -decode(<< 16#72:7,Bits/bits>>, Acc) -> decode(Bits, [ 87|Acc]); -decode(<< 16#fc:8,Bits/bits>>, Acc) -> decode(Bits, [ 88|Acc]); -decode(<< 16#73:7,Bits/bits>>, Acc) -> decode(Bits, [ 89|Acc]); -decode(<< 16#fd:8,Bits/bits>>, Acc) -> decode(Bits, [ 90|Acc]); -decode(<< 16#1ffb:13,Bits/bits>>, Acc) -> decode(Bits, [ 91|Acc]); -decode(<< 16#7fff0:19,Bits/bits>>, Acc) -> decode(Bits, [ 92|Acc]); -decode(<< 16#1ffc:13,Bits/bits>>, Acc) -> decode(Bits, [ 93|Acc]); -decode(<< 16#3ffc:14,Bits/bits>>, Acc) -> decode(Bits, [ 94|Acc]); -decode(<< 16#22:6,Bits/bits>>, Acc) -> decode(Bits, [ 95|Acc]); -decode(<< 16#7ffd:15,Bits/bits>>, Acc) -> decode(Bits, [ 96|Acc]); -decode(<< 16#3:5,Bits/bits>>, Acc) -> decode(Bits, [ 97|Acc]); -decode(<< 16#23:6,Bits/bits>>, Acc) -> decode(Bits, [ 98|Acc]); -decode(<< 16#4:5,Bits/bits>>, Acc) -> decode(Bits, [ 99|Acc]); -decode(<< 16#24:6,Bits/bits>>, Acc) -> decode(Bits, [100|Acc]); -decode(<< 16#5:5,Bits/bits>>, Acc) -> decode(Bits, [101|Acc]); -decode(<< 16#25:6,Bits/bits>>, Acc) -> decode(Bits, [102|Acc]); -decode(<< 16#26:6,Bits/bits>>, Acc) -> decode(Bits, [103|Acc]); -decode(<< 16#27:6,Bits/bits>>, Acc) -> decode(Bits, [104|Acc]); -decode(<< 16#6:5,Bits/bits>>, Acc) -> decode(Bits, [105|Acc]); -decode(<< 16#74:7,Bits/bits>>, Acc) -> decode(Bits, [106|Acc]); -decode(<< 16#75:7,Bits/bits>>, Acc) -> decode(Bits, [107|Acc]); -decode(<< 16#28:6,Bits/bits>>, Acc) -> decode(Bits, [108|Acc]); -decode(<< 16#29:6,Bits/bits>>, Acc) -> decode(Bits, [109|Acc]); -decode(<< 16#2a:6,Bits/bits>>, Acc) -> decode(Bits, [110|Acc]); -decode(<< 16#7:5,Bits/bits>>, Acc) -> decode(Bits, [111|Acc]); -decode(<< 16#2b:6,Bits/bits>>, Acc) -> decode(Bits, [112|Acc]); -decode(<< 16#76:7,Bits/bits>>, Acc) -> decode(Bits, [113|Acc]); -decode(<< 16#2c:6,Bits/bits>>, Acc) -> decode(Bits, [114|Acc]); -decode(<< 16#8:5,Bits/bits>>, Acc) -> decode(Bits, [115|Acc]); -decode(<< 16#9:5,Bits/bits>>, Acc) -> decode(Bits, [116|Acc]); -decode(<< 16#2d:6,Bits/bits>>, Acc) -> decode(Bits, [117|Acc]); -decode(<< 16#77:7,Bits/bits>>, Acc) -> decode(Bits, [118|Acc]); -decode(<< 16#78:7,Bits/bits>>, Acc) -> decode(Bits, [119|Acc]); -decode(<< 16#79:7,Bits/bits>>, Acc) -> decode(Bits, [120|Acc]); -decode(<< 16#7a:7,Bits/bits>>, Acc) -> decode(Bits, [121|Acc]); -decode(<< 16#7b:7,Bits/bits>>, Acc) -> decode(Bits, [122|Acc]); -decode(<< 16#7ffe:15,Bits/bits>>, Acc) -> decode(Bits, [123|Acc]); -decode(<< 16#7fc:11,Bits/bits>>, Acc) -> decode(Bits, [124|Acc]); -decode(<< 16#3ffd:14,Bits/bits>>, Acc) -> decode(Bits, [125|Acc]); -decode(<< 16#1ffd:13,Bits/bits>>, Acc) -> decode(Bits, [126|Acc]); -decode(<< 16#ffffffc:28,Bits/bits>>, Acc) -> decode(Bits, [127|Acc]); -decode(<< 16#fffe6:20,Bits/bits>>, Acc) -> decode(Bits, [128|Acc]); -decode(<< 16#3fffd2:22,Bits/bits>>, Acc) -> decode(Bits, [129|Acc]); -decode(<< 16#fffe7:20,Bits/bits>>, Acc) -> decode(Bits, [130|Acc]); -decode(<< 16#fffe8:20,Bits/bits>>, Acc) -> decode(Bits, [131|Acc]); -decode(<< 16#3fffd3:22,Bits/bits>>, Acc) -> decode(Bits, [132|Acc]); -decode(<< 16#3fffd4:22,Bits/bits>>, Acc) -> decode(Bits, [133|Acc]); -decode(<< 16#3fffd5:22,Bits/bits>>, Acc) -> decode(Bits, [134|Acc]); -decode(<< 16#7fffd9:23,Bits/bits>>, Acc) -> decode(Bits, [135|Acc]); -decode(<< 16#3fffd6:22,Bits/bits>>, Acc) -> decode(Bits, [136|Acc]); -decode(<< 16#7fffda:23,Bits/bits>>, Acc) -> decode(Bits, [137|Acc]); -decode(<< 16#7fffdb:23,Bits/bits>>, Acc) -> decode(Bits, [138|Acc]); -decode(<< 16#7fffdc:23,Bits/bits>>, Acc) -> decode(Bits, [139|Acc]); -decode(<< 16#7fffdd:23,Bits/bits>>, Acc) -> decode(Bits, [140|Acc]); -decode(<< 16#7fffde:23,Bits/bits>>, Acc) -> decode(Bits, [141|Acc]); -decode(<< 16#ffffeb:24,Bits/bits>>, Acc) -> decode(Bits, [142|Acc]); -decode(<< 16#7fffdf:23,Bits/bits>>, Acc) -> decode(Bits, [143|Acc]); -decode(<< 16#ffffec:24,Bits/bits>>, Acc) -> decode(Bits, [144|Acc]); -decode(<< 16#ffffed:24,Bits/bits>>, Acc) -> decode(Bits, [145|Acc]); -decode(<< 16#3fffd7:22,Bits/bits>>, Acc) -> decode(Bits, [146|Acc]); -decode(<< 16#7fffe0:23,Bits/bits>>, Acc) -> decode(Bits, [147|Acc]); -decode(<< 16#ffffee:24,Bits/bits>>, Acc) -> decode(Bits, [148|Acc]); -decode(<< 16#7fffe1:23,Bits/bits>>, Acc) -> decode(Bits, [149|Acc]); -decode(<< 16#7fffe2:23,Bits/bits>>, Acc) -> decode(Bits, [150|Acc]); -decode(<< 16#7fffe3:23,Bits/bits>>, Acc) -> decode(Bits, [151|Acc]); -decode(<< 16#7fffe4:23,Bits/bits>>, Acc) -> decode(Bits, [152|Acc]); -decode(<< 16#1fffdc:21,Bits/bits>>, Acc) -> decode(Bits, [153|Acc]); -decode(<< 16#3fffd8:22,Bits/bits>>, Acc) -> decode(Bits, [154|Acc]); -decode(<< 16#7fffe5:23,Bits/bits>>, Acc) -> decode(Bits, [155|Acc]); -decode(<< 16#3fffd9:22,Bits/bits>>, Acc) -> decode(Bits, [156|Acc]); -decode(<< 16#7fffe6:23,Bits/bits>>, Acc) -> decode(Bits, [157|Acc]); -decode(<< 16#7fffe7:23,Bits/bits>>, Acc) -> decode(Bits, [158|Acc]); -decode(<< 16#ffffef:24,Bits/bits>>, Acc) -> decode(Bits, [159|Acc]); -decode(<< 16#3fffda:22,Bits/bits>>, Acc) -> decode(Bits, [160|Acc]); -decode(<< 16#1fffdd:21,Bits/bits>>, Acc) -> decode(Bits, [161|Acc]); -decode(<< 16#fffe9:20,Bits/bits>>, Acc) -> decode(Bits, [162|Acc]); -decode(<< 16#3fffdb:22,Bits/bits>>, Acc) -> decode(Bits, [163|Acc]); -decode(<< 16#3fffdc:22,Bits/bits>>, Acc) -> decode(Bits, [164|Acc]); -decode(<< 16#7fffe8:23,Bits/bits>>, Acc) -> decode(Bits, [165|Acc]); -decode(<< 16#7fffe9:23,Bits/bits>>, Acc) -> decode(Bits, [166|Acc]); -decode(<< 16#1fffde:21,Bits/bits>>, Acc) -> decode(Bits, [167|Acc]); -decode(<< 16#7fffea:23,Bits/bits>>, Acc) -> decode(Bits, [168|Acc]); -decode(<< 16#3fffdd:22,Bits/bits>>, Acc) -> decode(Bits, [169|Acc]); -decode(<< 16#3fffde:22,Bits/bits>>, Acc) -> decode(Bits, [170|Acc]); -decode(<< 16#fffff0:24,Bits/bits>>, Acc) -> decode(Bits, [171|Acc]); -decode(<< 16#1fffdf:21,Bits/bits>>, Acc) -> decode(Bits, [172|Acc]); -decode(<< 16#3fffdf:22,Bits/bits>>, Acc) -> decode(Bits, [173|Acc]); -decode(<< 16#7fffeb:23,Bits/bits>>, Acc) -> decode(Bits, [174|Acc]); -decode(<< 16#7fffec:23,Bits/bits>>, Acc) -> decode(Bits, [175|Acc]); -decode(<< 16#1fffe0:21,Bits/bits>>, Acc) -> decode(Bits, [176|Acc]); -decode(<< 16#1fffe1:21,Bits/bits>>, Acc) -> decode(Bits, [177|Acc]); -decode(<< 16#3fffe0:22,Bits/bits>>, Acc) -> decode(Bits, [178|Acc]); -decode(<< 16#1fffe2:21,Bits/bits>>, Acc) -> decode(Bits, [179|Acc]); -decode(<< 16#7fffed:23,Bits/bits>>, Acc) -> decode(Bits, [180|Acc]); -decode(<< 16#3fffe1:22,Bits/bits>>, Acc) -> decode(Bits, [181|Acc]); -decode(<< 16#7fffee:23,Bits/bits>>, Acc) -> decode(Bits, [182|Acc]); -decode(<< 16#7fffef:23,Bits/bits>>, Acc) -> decode(Bits, [183|Acc]); -decode(<< 16#fffea:20,Bits/bits>>, Acc) -> decode(Bits, [184|Acc]); -decode(<< 16#3fffe2:22,Bits/bits>>, Acc) -> decode(Bits, [185|Acc]); -decode(<< 16#3fffe3:22,Bits/bits>>, Acc) -> decode(Bits, [186|Acc]); -decode(<< 16#3fffe4:22,Bits/bits>>, Acc) -> decode(Bits, [187|Acc]); -decode(<< 16#7ffff0:23,Bits/bits>>, Acc) -> decode(Bits, [188|Acc]); -decode(<< 16#3fffe5:22,Bits/bits>>, Acc) -> decode(Bits, [189|Acc]); -decode(<< 16#3fffe6:22,Bits/bits>>, Acc) -> decode(Bits, [190|Acc]); -decode(<< 16#7ffff1:23,Bits/bits>>, Acc) -> decode(Bits, [191|Acc]); -decode(<< 16#3ffffe0:26,Bits/bits>>, Acc) -> decode(Bits, [192|Acc]); -decode(<< 16#3ffffe1:26,Bits/bits>>, Acc) -> decode(Bits, [193|Acc]); -decode(<< 16#fffeb:20,Bits/bits>>, Acc) -> decode(Bits, [194|Acc]); -decode(<< 16#7fff1:19,Bits/bits>>, Acc) -> decode(Bits, [195|Acc]); -decode(<< 16#3fffe7:22,Bits/bits>>, Acc) -> decode(Bits, [196|Acc]); -decode(<< 16#7ffff2:23,Bits/bits>>, Acc) -> decode(Bits, [197|Acc]); -decode(<< 16#3fffe8:22,Bits/bits>>, Acc) -> decode(Bits, [198|Acc]); -decode(<< 16#1ffffec:25,Bits/bits>>, Acc) -> decode(Bits, [199|Acc]); -decode(<< 16#3ffffe2:26,Bits/bits>>, Acc) -> decode(Bits, [200|Acc]); -decode(<< 16#3ffffe3:26,Bits/bits>>, Acc) -> decode(Bits, [201|Acc]); -decode(<< 16#3ffffe4:26,Bits/bits>>, Acc) -> decode(Bits, [202|Acc]); -decode(<< 16#7ffffde:27,Bits/bits>>, Acc) -> decode(Bits, [203|Acc]); -decode(<< 16#7ffffdf:27,Bits/bits>>, Acc) -> decode(Bits, [204|Acc]); -decode(<< 16#3ffffe5:26,Bits/bits>>, Acc) -> decode(Bits, [205|Acc]); -decode(<< 16#fffff1:24,Bits/bits>>, Acc) -> decode(Bits, [206|Acc]); -decode(<< 16#1ffffed:25,Bits/bits>>, Acc) -> decode(Bits, [207|Acc]); -decode(<< 16#7fff2:19,Bits/bits>>, Acc) -> decode(Bits, [208|Acc]); -decode(<< 16#1fffe3:21,Bits/bits>>, Acc) -> decode(Bits, [209|Acc]); -decode(<< 16#3ffffe6:26,Bits/bits>>, Acc) -> decode(Bits, [210|Acc]); -decode(<< 16#7ffffe0:27,Bits/bits>>, Acc) -> decode(Bits, [211|Acc]); -decode(<< 16#7ffffe1:27,Bits/bits>>, Acc) -> decode(Bits, [212|Acc]); -decode(<< 16#3ffffe7:26,Bits/bits>>, Acc) -> decode(Bits, [213|Acc]); -decode(<< 16#7ffffe2:27,Bits/bits>>, Acc) -> decode(Bits, [214|Acc]); -decode(<< 16#fffff2:24,Bits/bits>>, Acc) -> decode(Bits, [215|Acc]); -decode(<< 16#1fffe4:21,Bits/bits>>, Acc) -> decode(Bits, [216|Acc]); -decode(<< 16#1fffe5:21,Bits/bits>>, Acc) -> decode(Bits, [217|Acc]); -decode(<< 16#3ffffe8:26,Bits/bits>>, Acc) -> decode(Bits, [218|Acc]); -decode(<< 16#3ffffe9:26,Bits/bits>>, Acc) -> decode(Bits, [219|Acc]); -decode(<< 16#ffffffd:28,Bits/bits>>, Acc) -> decode(Bits, [220|Acc]); -decode(<< 16#7ffffe3:27,Bits/bits>>, Acc) -> decode(Bits, [221|Acc]); -decode(<< 16#7ffffe4:27,Bits/bits>>, Acc) -> decode(Bits, [222|Acc]); -decode(<< 16#7ffffe5:27,Bits/bits>>, Acc) -> decode(Bits, [223|Acc]); -decode(<< 16#fffec:20,Bits/bits>>, Acc) -> decode(Bits, [224|Acc]); -decode(<< 16#fffff3:24,Bits/bits>>, Acc) -> decode(Bits, [225|Acc]); -decode(<< 16#fffed:20,Bits/bits>>, Acc) -> decode(Bits, [226|Acc]); -decode(<< 16#1fffe6:21,Bits/bits>>, Acc) -> decode(Bits, [227|Acc]); -decode(<< 16#3fffe9:22,Bits/bits>>, Acc) -> decode(Bits, [228|Acc]); -decode(<< 16#1fffe7:21,Bits/bits>>, Acc) -> decode(Bits, [229|Acc]); -decode(<< 16#1fffe8:21,Bits/bits>>, Acc) -> decode(Bits, [230|Acc]); -decode(<< 16#7ffff3:23,Bits/bits>>, Acc) -> decode(Bits, [231|Acc]); -decode(<< 16#3fffea:22,Bits/bits>>, Acc) -> decode(Bits, [232|Acc]); -decode(<< 16#3fffeb:22,Bits/bits>>, Acc) -> decode(Bits, [233|Acc]); -decode(<< 16#1ffffee:25,Bits/bits>>, Acc) -> decode(Bits, [234|Acc]); -decode(<< 16#1ffffef:25,Bits/bits>>, Acc) -> decode(Bits, [235|Acc]); -decode(<< 16#fffff4:24,Bits/bits>>, Acc) -> decode(Bits, [236|Acc]); -decode(<< 16#fffff5:24,Bits/bits>>, Acc) -> decode(Bits, [237|Acc]); -decode(<< 16#3ffffea:26,Bits/bits>>, Acc) -> decode(Bits, [238|Acc]); -decode(<< 16#7ffff4:23,Bits/bits>>, Acc) -> decode(Bits, [239|Acc]); -decode(<< 16#3ffffeb:26,Bits/bits>>, Acc) -> decode(Bits, [240|Acc]); -decode(<< 16#7ffffe6:27,Bits/bits>>, Acc) -> decode(Bits, [241|Acc]); -decode(<< 16#3ffffec:26,Bits/bits>>, Acc) -> decode(Bits, [242|Acc]); -decode(<< 16#3ffffed:26,Bits/bits>>, Acc) -> decode(Bits, [243|Acc]); -decode(<< 16#7ffffe7:27,Bits/bits>>, Acc) -> decode(Bits, [244|Acc]); -decode(<< 16#7ffffe8:27,Bits/bits>>, Acc) -> decode(Bits, [245|Acc]); -decode(<< 16#7ffffe9:27,Bits/bits>>, Acc) -> decode(Bits, [246|Acc]); -decode(<< 16#7ffffea:27,Bits/bits>>, Acc) -> decode(Bits, [247|Acc]); -decode(<< 16#7ffffeb:27,Bits/bits>>, Acc) -> decode(Bits, [248|Acc]); -decode(<< 16#ffffffe:28,Bits/bits>>, Acc) -> decode(Bits, [249|Acc]); -decode(<< 16#7ffffec:27,Bits/bits>>, Acc) -> decode(Bits, [250|Acc]); -decode(<< 16#7ffffed:27,Bits/bits>>, Acc) -> decode(Bits, [251|Acc]); -decode(<< 16#7ffffee:27,Bits/bits>>, Acc) -> decode(Bits, [252|Acc]); -decode(<< 16#7ffffef:27,Bits/bits>>, Acc) -> decode(Bits, [253|Acc]); -decode(<< 16#7fffff0:27,Bits/bits>>, Acc) -> decode(Bits, [254|Acc]); -decode(<< 16#3ffffee:26,Bits/bits>>, Acc) -> decode(Bits, [255|Acc]); -decode(<<16#3fffffff:30,Bits/bits>>, Acc) -> decode(Bits, [256|Acc]); -decode(_, Acc) -> - list_to_binary(lists:reverse(Acc)). +-export([ + encode/1, + decode/1 +]). -encode(Bin) -> encode(Bin, <<>>). -encode(<< 0:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 1:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 2:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 3:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 4:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 5:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 6:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 7:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 8:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 9:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 10:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 11:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 12:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 13:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 14:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 15:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 16:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 17:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 18:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 19:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 20:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 21:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 22:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 23:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 24:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 25:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 26:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 27:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 28:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 29:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 30:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 31:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 32:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 33:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 34:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 35:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 36:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 37:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 38:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 39:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 40:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 41:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 42:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 43:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 44:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 45:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 46:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 47:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 48:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 49:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 50:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 51:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 52:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 53:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 54:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 55:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 56:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 57:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 58:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 59:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 60:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 61:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 62:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 63:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 64:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 65:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 66:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 67:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 68:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 69:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 70:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 71:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 72:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 73:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 74:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 75:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 76:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 77:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 78:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 79:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 80:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 81:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 82:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 83:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 84:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 85:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 86:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 87:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 88:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 89:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 90:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 91:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 92:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 93:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 94:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 95:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 96:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 97:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 98:8,T/binary>>, Acc) -> encode(T, <>); -encode(<< 99:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<100:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<101:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<102:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<103:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<104:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<105:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<106:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<107:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<108:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<109:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<110:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<111:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<112:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<113:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<114:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<115:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<116:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<117:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<118:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<119:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<120:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<121:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<122:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<123:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<124:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<125:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<126:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<127:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<128:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<129:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<130:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<131:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<132:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<133:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<134:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<135:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<136:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<137:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<138:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<139:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<140:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<141:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<142:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<143:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<144:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<145:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<146:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<147:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<148:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<149:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<150:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<151:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<152:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<153:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<154:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<155:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<156:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<157:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<158:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<159:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<160:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<161:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<162:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<163:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<164:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<165:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<166:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<167:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<168:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<169:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<170:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<171:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<172:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<173:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<174:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<175:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<176:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<177:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<178:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<179:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<180:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<181:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<182:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<183:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<184:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<185:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<186:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<187:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<188:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<189:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<190:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<191:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<192:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<193:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<194:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<195:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<196:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<197:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<198:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<199:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<200:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<201:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<202:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<203:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<204:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<205:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<206:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<207:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<208:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<209:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<210:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<211:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<212:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<213:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<214:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<215:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<216:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<217:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<218:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<219:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<220:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<221:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<222:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<223:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<224:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<225:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<226:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<227:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<228:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<229:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<230:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<231:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<232:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<233:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<234:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<235:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<236:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<237:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<238:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<239:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<240:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<241:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<242:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<243:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<244:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<245:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<246:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<247:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<248:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<249:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<250:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<251:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<252:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<253:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<254:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<255:8,T/binary>>, Acc) -> encode(T, <>); -encode(<<256:9,T/binary>>, Acc) -> encode(T, <>); -%%TODO: This "256" EOS Behavior. I really need to dig into it. -encode(<<>>, Acc) when bit_size(Acc) rem 8 > 0 -> - NumberOfBits = 8 - (bit_size(Acc) rem 8), - Bits = round(math:pow(2,NumberOfBits) - 1), - <>; -encode(<<>>, Acc) -> Acc. + +-include("hpack.hrl"). +-include("hpack_huffman.hrl"). + + +encode(Bin) -> + try + encode(Bin, [], 0, size(Bin) * 8) + catch throw:compressed_larger -> + {error, compressed_larger} + end. + + +decode(Bin) -> + decode(Bin, ?HUFFMAN_TREE, ?HUFFMAN_TREE, false, []). + + +encode(<<>>, Acc, Size, OrigSize) -> + Remainder = Size rem 8, + Tail = case 8 - Remainder of + 1 -> [<< 1:1>>]; + 2 -> [<< 3:2>>]; + 3 -> [<< 7:3>>]; + 4 -> [<< 15:4>>]; + 5 -> [<< 31:5>>]; + 6 -> [<< 63:6>>]; + 7 -> [<<127:7>>]; + 8 -> [] + end, + Padding = if Remainder > 0 -> 8 - Remainder; true -> 0 end, + if Padding + Size < OrigSize -> ok; true -> + throw(compressed_larger) + end, + list_to_bitstring(lists:reverse(Acc, Tail)); + +encode(<>, Acc, Size, OrigSize) -> + Code = element(Byte + 1, ?HUFFMAN_CODES), + NewSize = Size + bit_size(Code), + if NewSize < OrigSize -> ok; true -> + throw(compressed_larger) + end, + encode(Rest, [Code | Acc], NewSize, OrigSize). + + +decode(<<>>, _, _, ZeroSeen, Acc) -> + if not ZeroSeen -> ok; true -> + ?ERROR({invalid_huffman_encoding, partial_code}) + end, + list_to_binary(lists:reverse(Acc)); + +decode(<<0:1, Rest/bits>>, {{v, Value}, _}, Tree, _ZeroSeen, Acc) -> + decode(Rest, Tree, Tree, false, [Value | Acc]); + +decode(<<0:1, Rest/bits>>, {Left, _}, Tree, _ZeroSeen, Acc) -> + decode(Rest, Left, Tree, true, Acc); + +decode(<<1:1, Rest/bits>>, {_, {v, Value}}, Tree, _ZeroSeen, Acc) -> + if Value < 256 -> ok; true -> + ?ERROR({invalid_huffman_encoding, internal_eos}) + end, + decode(Rest, Tree, Tree, false, [Value | Acc]); + +decode(<<1:1, Rest/bits>>, {_, Right}, Tree, ZeroSeen, Acc) -> + decode(Rest, Right, Tree, ZeroSeen, Acc). diff --git a/src/hpack_huffman.hrl b/src/hpack_huffman.hrl new file mode 100644 index 0000000..e6412f1 --- /dev/null +++ b/src/hpack_huffman.hrl @@ -0,0 +1,520 @@ +-define(HUFFMAN_CODES, { + << 16#1ff8:13>>, + << 16#7fffd8:23>>, + << 16#fffffe2:28>>, + << 16#fffffe3:28>>, + << 16#fffffe4:28>>, + << 16#fffffe5:28>>, + << 16#fffffe6:28>>, + << 16#fffffe7:28>>, + << 16#fffffe8:28>>, + << 16#ffffea:24>>, + << 16#3ffffffc:30>>, + << 16#fffffe9:28>>, + << 16#fffffea:28>>, + << 16#3ffffffd:30>>, + << 16#fffffeb:28>>, + << 16#fffffec:28>>, + << 16#fffffed:28>>, + << 16#fffffee:28>>, + << 16#fffffef:28>>, + << 16#ffffff0:28>>, + << 16#ffffff1:28>>, + << 16#ffffff2:28>>, + << 16#3ffffffe:30>>, + << 16#ffffff3:28>>, + << 16#ffffff4:28>>, + << 16#ffffff5:28>>, + << 16#ffffff6:28>>, + << 16#ffffff7:28>>, + << 16#ffffff8:28>>, + << 16#ffffff9:28>>, + << 16#ffffffa:28>>, + << 16#ffffffb:28>>, + << 16#14: 6>>, + << 16#3f8:10>>, + << 16#3f9:10>>, + << 16#ffa:12>>, + << 16#1ff9:13>>, + << 16#15: 6>>, + << 16#f8: 8>>, + << 16#7fa:11>>, + << 16#3fa:10>>, + << 16#3fb:10>>, + << 16#f9: 8>>, + << 16#7fb:11>>, + << 16#fa: 8>>, + << 16#16: 6>>, + << 16#17: 6>>, + << 16#18: 6>>, + << 16#0: 5>>, + << 16#1: 5>>, + << 16#2: 5>>, + << 16#19: 6>>, + << 16#1a: 6>>, + << 16#1b: 6>>, + << 16#1c: 6>>, + << 16#1d: 6>>, + << 16#1e: 6>>, + << 16#1f: 6>>, + << 16#5c: 7>>, + << 16#fb: 8>>, + << 16#7ffc:15>>, + << 16#20: 6>>, + << 16#ffb:12>>, + << 16#3fc:10>>, + << 16#1ffa:13>>, + << 16#21: 6>>, + << 16#5d: 7>>, + << 16#5e: 7>>, + << 16#5f: 7>>, + << 16#60: 7>>, + << 16#61: 7>>, + << 16#62: 7>>, + << 16#63: 7>>, + << 16#64: 7>>, + << 16#65: 7>>, + << 16#66: 7>>, + << 16#67: 7>>, + << 16#68: 7>>, + << 16#69: 7>>, + << 16#6a: 7>>, + << 16#6b: 7>>, + << 16#6c: 7>>, + << 16#6d: 7>>, + << 16#6e: 7>>, + << 16#6f: 7>>, + << 16#70: 7>>, + << 16#71: 7>>, + << 16#72: 7>>, + << 16#fc: 8>>, + << 16#73: 7>>, + << 16#fd: 8>>, + << 16#1ffb:13>>, + << 16#7fff0:19>>, + << 16#1ffc:13>>, + << 16#3ffc:14>>, + << 16#22: 6>>, + << 16#7ffd:15>>, + << 16#3: 5>>, + << 16#23: 6>>, + << 16#4: 5>>, + << 16#24: 6>>, + << 16#5: 5>>, + << 16#25: 6>>, + << 16#26: 6>>, + << 16#27: 6>>, + << 16#6: 5>>, + << 16#74: 7>>, + << 16#75: 7>>, + << 16#28: 6>>, + << 16#29: 6>>, + << 16#2a: 6>>, + << 16#7: 5>>, + << 16#2b: 6>>, + << 16#76: 7>>, + << 16#2c: 6>>, + << 16#8: 5>>, + << 16#9: 5>>, + << 16#2d: 6>>, + << 16#77: 7>>, + << 16#78: 7>>, + << 16#79: 7>>, + << 16#7a: 7>>, + << 16#7b: 7>>, + << 16#7ffe:15>>, + << 16#7fc:11>>, + << 16#3ffd:14>>, + << 16#1ffd:13>>, + << 16#ffffffc:28>>, + << 16#fffe6:20>>, + << 16#3fffd2:22>>, + << 16#fffe7:20>>, + << 16#fffe8:20>>, + << 16#3fffd3:22>>, + << 16#3fffd4:22>>, + << 16#3fffd5:22>>, + << 16#7fffd9:23>>, + << 16#3fffd6:22>>, + << 16#7fffda:23>>, + << 16#7fffdb:23>>, + << 16#7fffdc:23>>, + << 16#7fffdd:23>>, + << 16#7fffde:23>>, + << 16#ffffeb:24>>, + << 16#7fffdf:23>>, + << 16#ffffec:24>>, + << 16#ffffed:24>>, + << 16#3fffd7:22>>, + << 16#7fffe0:23>>, + << 16#ffffee:24>>, + << 16#7fffe1:23>>, + << 16#7fffe2:23>>, + << 16#7fffe3:23>>, + << 16#7fffe4:23>>, + << 16#1fffdc:21>>, + << 16#3fffd8:22>>, + << 16#7fffe5:23>>, + << 16#3fffd9:22>>, + << 16#7fffe6:23>>, + << 16#7fffe7:23>>, + << 16#ffffef:24>>, + << 16#3fffda:22>>, + << 16#1fffdd:21>>, + << 16#fffe9:20>>, + << 16#3fffdb:22>>, + << 16#3fffdc:22>>, + << 16#7fffe8:23>>, + << 16#7fffe9:23>>, + << 16#1fffde:21>>, + << 16#7fffea:23>>, + << 16#3fffdd:22>>, + << 16#3fffde:22>>, + << 16#fffff0:24>>, + << 16#1fffdf:21>>, + << 16#3fffdf:22>>, + << 16#7fffeb:23>>, + << 16#7fffec:23>>, + << 16#1fffe0:21>>, + << 16#1fffe1:21>>, + << 16#3fffe0:22>>, + << 16#1fffe2:21>>, + << 16#7fffed:23>>, + << 16#3fffe1:22>>, + << 16#7fffee:23>>, + << 16#7fffef:23>>, + << 16#fffea:20>>, + << 16#3fffe2:22>>, + << 16#3fffe3:22>>, + << 16#3fffe4:22>>, + << 16#7ffff0:23>>, + << 16#3fffe5:22>>, + << 16#3fffe6:22>>, + << 16#7ffff1:23>>, + << 16#3ffffe0:26>>, + << 16#3ffffe1:26>>, + << 16#fffeb:20>>, + << 16#7fff1:19>>, + << 16#3fffe7:22>>, + << 16#7ffff2:23>>, + << 16#3fffe8:22>>, + << 16#1ffffec:25>>, + << 16#3ffffe2:26>>, + << 16#3ffffe3:26>>, + << 16#3ffffe4:26>>, + << 16#7ffffde:27>>, + << 16#7ffffdf:27>>, + << 16#3ffffe5:26>>, + << 16#fffff1:24>>, + << 16#1ffffed:25>>, + << 16#7fff2:19>>, + << 16#1fffe3:21>>, + << 16#3ffffe6:26>>, + << 16#7ffffe0:27>>, + << 16#7ffffe1:27>>, + << 16#3ffffe7:26>>, + << 16#7ffffe2:27>>, + << 16#fffff2:24>>, + << 16#1fffe4:21>>, + << 16#1fffe5:21>>, + << 16#3ffffe8:26>>, + << 16#3ffffe9:26>>, + << 16#ffffffd:28>>, + << 16#7ffffe3:27>>, + << 16#7ffffe4:27>>, + << 16#7ffffe5:27>>, + << 16#fffec:20>>, + << 16#fffff3:24>>, + << 16#fffed:20>>, + << 16#1fffe6:21>>, + << 16#3fffe9:22>>, + << 16#1fffe7:21>>, + << 16#1fffe8:21>>, + << 16#7ffff3:23>>, + << 16#3fffea:22>>, + << 16#3fffeb:22>>, + << 16#1ffffee:25>>, + << 16#1ffffef:25>>, + << 16#fffff4:24>>, + << 16#fffff5:24>>, + << 16#3ffffea:26>>, + << 16#7ffff4:23>>, + << 16#3ffffeb:26>>, + << 16#7ffffe6:27>>, + << 16#3ffffec:26>>, + << 16#3ffffed:26>>, + << 16#7ffffe7:27>>, + << 16#7ffffe8:27>>, + << 16#7ffffe9:27>>, + << 16#7ffffea:27>>, + << 16#7ffffeb:27>>, + << 16#ffffffe:28>>, + << 16#7ffffec:27>>, + << 16#7ffffed:27>>, + << 16#7ffffee:27>>, + << 16#7ffffef:27>>, + << 16#7fffff0:27>>, + << 16#3ffffee:26>>, + << 16#3fffffff:30>> +}). + + +-define(HUFFMAN_TREE, + {{{{{{v, 48}, + {v, 49}}, + {{v, 50}, + {v, 97}}}, + {{{v, 99}, + {v, 101}}, + {{v, 105}, + {v, 111}}}}, + {{{{v, 115}, + {v, 116}}, + {{{v, 32}, + {v, 37}}, + {{v, 45}, + {v, 46}}}}, + {{{{v, 47}, + {v, 51}}, + {{v, 52}, + {v, 53}}}, + {{{v, 54}, + {v, 55}}, + {{v, 56}, + {v, 57}}}}}}, + {{{{{{v, 61}, + {v, 65}}, + {{v, 95}, + {v, 98}}}, + {{{v, 100}, + {v, 102}}, + {{v, 103}, + {v, 104}}}}, + {{{{v, 108}, + {v, 109}}, + {{v, 110}, + {v, 112}}}, + {{{v, 114}, + {v, 117}}, + {{{v, 58}, + {v, 66}}, + {{v, 67}, + {v, 68}}}}}}, + {{{{{{v, 69}, + {v, 70}}, + {{v, 71}, + {v, 72}}}, + {{{v, 73}, + {v, 74}}, + {{v, 75}, + {v, 76}}}}, + {{{{v, 77}, + {v, 78}}, + {{v, 79}, + {v, 80}}}, + {{{v, 81}, + {v, 82}}, + {{v, 83}, + {v, 84}}}}}, + {{{{{v, 85}, + {v, 86}}, + {{v, 87}, + {v, 89}}}, + {{{v, 106}, + {v, 107}}, + {{v, 113}, + {v, 118}}}}, + {{{{v, 119}, + {v, 120}}, + {{v, 121}, + {v, 122}}}, + {{{{v, 38}, + {v, 42}}, + {{v, 44}, + {v, 59}}}, + {{{v, 88}, + {v, 90}}, + {{{{v, 33}, + {v, 34}}, + {{v, 40}, + {v, 41}}}, + {{{v, 63}, + {{v, 39}, + {v, 43}}}, + {{{v, 124}, + {{v, 35}, + {v, 62}}}, + {{{{v, 0}, + {v, 36}}, + {{v, 64}, + {v, 91}}}, + {{{v, 93}, + {v, 126}}, + {{{v, 94}, + {v, 125}}, + {{{v, 60}, + {v, 96}}, + {{v, 123}, + {{{{{v, 92}, + {v, 195}}, + {{v, 208}, + {{v, 128}, + {v, 130}}}}, + {{{{v, 131}, + {v, 162}}, + {{v, 184}, + {v, 194}}}, + {{{v, 224}, + {v, 226}}, + {{{v, 153}, + {v, 161}}, + {{v, 167}, + {v, 172}}}}}}, + {{{{{{v, 176}, + {v, 177}}, + {{v, 179}, + {v, 209}}}, + {{{v, 216}, + {v, 217}}, + {{v, 227}, + {v, 229}}}}, + {{{{v, 230}, + {{v, 129}, + {v, 132}}}, + {{{v, 133}, + {v, 134}}, + {{v, 136}, + {v, 146}}}}, + {{{{v, 154}, + {v, 156}}, + {{v, 160}, + {v, 163}}}, + {{{v, 164}, + {v, 169}}, + {{v, 170}, + {v, 173}}}}}}, + {{{{{{v, 178}, + {v, 181}}, + {{v, 185}, + {v, 186}}}, + {{{v, 187}, + {v, 189}}, + {{v, 190}, + {v, 196}}}}, + {{{{v, 198}, + {v, 228}}, + {{v, 232}, + {v, 233}}}, + {{{{v, 1}, + {v, 135}}, + {{v, 137}, + {v, 138}}}, + {{{v, 139}, + {v, 140}}, + {{v, 141}, + {v, 143}}}}}}, + {{{{{{v, 147}, + {v, 149}}, + {{v, 150}, + {v, 151}}}, + {{{v, 152}, + {v, 155}}, + {{v, 157}, + {v, 158}}}}, + {{{{v, 165}, + {v, 166}}, + {{v, 168}, + {v, 174}}}, + {{{v, 175}, + {v, 180}}, + {{v, 182}, + {v, 183}}}}}, + {{{{{v, 188}, + {v, 191}}, + {{v, 197}, + {v, 231}}}, + {{{v, 239}, + {{v, 9}, + {v, 142}}}, + {{{v, 144}, + {v, 145}}, + {{v, 148}, + {v, 159}}}}}, + {{{{{v, 171}, + {v, 206}}, + {{v, 215}, + {v, 225}}}, + {{{v, 236}, + {v, 237}}, + {{{v, 199}, + {v, 207}}, + {{v, 234}, + {v, 235}}}}}, + {{{{{{v, 192}, + {v, 193}}, + {{v, 200}, + {v, 201}}}, + {{{v, 202}, + {v, 205}}, + {{v, 210}, + {v, 213}}}}, + {{{{v, 218}, + {v, 219}}, + {{v, 238}, + {v, 240}}}, + {{{v, 242}, + {v, 243}}, + {{v, 255}, + {{v, 203}, + {v, 204}}}}}}, + {{{{{{v, 211}, + {v, 212}}, + {{v, 214}, + {v, 221}}}, + {{{v, 222}, + {v, 223}}, + {{v, 241}, + {v, 244}}}}, + {{{{v, 245}, + {v, 246}}, + {{v, 247}, + {v, 248}}}, + {{{v, 250}, + {v, 251}}, + {{v, 252}, + {v, 253}}}}}, + {{{{{v, 254}, + {{v, 2}, + {v, 3}}}, + {{{v, 4}, + {v, 5}}, + {{v, 6}, + {v, 7}}}}, + {{{{v, 8}, + {v, 11}}, + {{v, 12}, + {v, 14}}}, + {{{v, 15}, + {v, 16}}, + {{v, 17}, + {v, 18}}}}}, + {{{{{v, 19}, + {v, 20}}, + {{v, 21}, + {v, 23}}}, + {{{v, 24}, + {v, 25}}, + {{v, 26}, + {v, 27}}}}, + {{{{v, 28}, + {v, 29}}, + {{v, 30}, + {v, 31}}}, + {{{v, 127}, + {v, 220}}, + {{v, 249}, + {{{v, 10}, + {v, 13}}, + {{v, 22}, + {v, 256}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} +). diff --git a/test/hpack_huffman_tests.erl b/test/hpack_huffman_tests.erl new file mode 100644 index 0000000..17da413 --- /dev/null +++ b/test/hpack_huffman_tests.erl @@ -0,0 +1,34 @@ + +-module(hpack_huffman_tests). + +-include_lib("eunit/include/eunit.hrl"). + + +www_example_com_test() -> + Expect = << + 16#f1, 16#e3, 16#c2, 16#e5, + 16#f2, 16#3a, 16#6b, 16#a0, + 16#ab, 16#90, 16#f4, 16#ff + >>, + ?assertEqual(Expect, hpack_huffman:encode(<<"www.example.com">>)), + ?assertEqual(<<"www.example.com">>, hpack_huffman:decode(Expect)). + + +invalid_eos_padding_test() -> + ?assertEqual(<<"foo">>, hpack_huffman:decode(<<148, 231>>)), + ?assertThrow( + {hpack_error, {invalid_huffman_encoding, partial_code}}, + hpack_huffman:decode(<<148, 231, 0>>) + ). + + +invalid_internal_eos_test() -> + Bin = << + 16#25:6, % "f" + 16#3fffffff:30, % "eos" + 16#ffa:12 % "#" + >>, + ?assertThrow( + {hpack_error, {invalid_huffman_encoding, internal_eos}}, + hpack_huffman:decode(Bin) + ). diff --git a/test/huffman_tests.erl b/test/huffman_tests.erl deleted file mode 100644 index bae5d6d..0000000 --- a/test/huffman_tests.erl +++ /dev/null @@ -1,14 +0,0 @@ --module(huffman_tests). --include_lib("eunit/include/eunit.hrl"). --compile([export_all]). - -encode_wwwexamplecom_test() -> - ?assertEqual(<<16#f1,16#e3,16#c2,16#e5,16#f2,16#3a,16#6b,16#a0,16#ab,16#90,16#f4,16#ff>>, - huffman:encode(<<"www.example.com">>)), - ok. - -decode_wwwexamplecom_test() -> - - ?assertEqual(<<"www.example.com">>, - huffman:decode(<<16#f1,16#e3,16#c2,16#e5,16#f2,16#3a,16#6b,16#a0,16#ab,16#90,16#f4,16#ff>>)), - ok. diff --git a/tools/gen_huffman.py b/tools/gen_huffman.py new file mode 100755 index 0000000..8fd9c27 --- /dev/null +++ b/tools/gen_huffman.py @@ -0,0 +1,333 @@ +#!/usr/bin/env python + +# Columns are byte value, codeword binary, codeword hex, bit length + +TABLE = """ + 0 |11111111|11000 1ff8 13 + 1 |11111111|11111111|1011000 7fffd8 23 + 2 |11111111|11111111|11111110|0010 fffffe2 28 + 3 |11111111|11111111|11111110|0011 fffffe3 28 + 4 |11111111|11111111|11111110|0100 fffffe4 28 + 5 |11111111|11111111|11111110|0101 fffffe5 28 + 6 |11111111|11111111|11111110|0110 fffffe6 28 + 7 |11111111|11111111|11111110|0111 fffffe7 28 + 8 |11111111|11111111|11111110|1000 fffffe8 28 + 9 |11111111|11111111|11101010 ffffea 24 + 10 |11111111|11111111|11111111|111100 3ffffffc 30 + 11 |11111111|11111111|11111110|1001 fffffe9 28 + 12 |11111111|11111111|11111110|1010 fffffea 28 + 13 |11111111|11111111|11111111|111101 3ffffffd 30 + 14 |11111111|11111111|11111110|1011 fffffeb 28 + 15 |11111111|11111111|11111110|1100 fffffec 28 + 16 |11111111|11111111|11111110|1101 fffffed 28 + 17 |11111111|11111111|11111110|1110 fffffee 28 + 18 |11111111|11111111|11111110|1111 fffffef 28 + 19 |11111111|11111111|11111111|0000 ffffff0 28 + 20 |11111111|11111111|11111111|0001 ffffff1 28 + 21 |11111111|11111111|11111111|0010 ffffff2 28 + 22 |11111111|11111111|11111111|111110 3ffffffe 30 + 23 |11111111|11111111|11111111|0011 ffffff3 28 + 24 |11111111|11111111|11111111|0100 ffffff4 28 + 25 |11111111|11111111|11111111|0101 ffffff5 28 + 26 |11111111|11111111|11111111|0110 ffffff6 28 + 27 |11111111|11111111|11111111|0111 ffffff7 28 + 28 |11111111|11111111|11111111|1000 ffffff8 28 + 29 |11111111|11111111|11111111|1001 ffffff9 28 + 30 |11111111|11111111|11111111|1010 ffffffa 28 + 31 |11111111|11111111|11111111|1011 ffffffb 28 + 32 |010100 14 6 + 33 |11111110|00 3f8 10 + 34 |11111110|01 3f9 10 + 35 |11111111|1010 ffa 12 + 36 |11111111|11001 1ff9 13 + 37 |010101 15 6 + 38 |11111000 f8 8 + 39 |11111111|010 7fa 11 + 40 |11111110|10 3fa 10 + 41 |11111110|11 3fb 10 + 42 |11111001 f9 8 + 43 |11111111|011 7fb 11 + 44 |11111010 fa 8 + 45 |010110 16 6 + 46 |010111 17 6 + 47 |011000 18 6 + 48 |00000 0 5 + 49 |00001 1 5 + 50 |00010 2 5 + 51 |011001 19 6 + 52 |011010 1a 6 + 53 |011011 1b 6 + 54 |011100 1c 6 + 55 |011101 1d 6 + 56 |011110 1e 6 + 57 |011111 1f 6 + 58 |1011100 5c 7 + 59 |11111011 fb 8 + 60 |11111111|1111100 7ffc 15 + 61 |100000 20 6 + 62 |11111111|1011 ffb 12 + 63 |11111111|00 3fc 10 + 64 |11111111|11010 1ffa 13 + 65 |100001 21 6 + 66 |1011101 5d 7 + 67 |1011110 5e 7 + 68 |1011111 5f 7 + 69 |1100000 60 7 + 70 |1100001 61 7 + 71 |1100010 62 7 + 72 |1100011 63 7 + 73 |1100100 64 7 + 74 |1100101 65 7 + 75 |1100110 66 7 + 76 |1100111 67 7 + 77 |1101000 68 7 + 78 |1101001 69 7 + 79 |1101010 6a 7 + 80 |1101011 6b 7 + 81 |1101100 6c 7 + 82 |1101101 6d 7 + 83 |1101110 6e 7 + 84 |1101111 6f 7 + 85 |1110000 70 7 + 86 |1110001 71 7 + 87 |1110010 72 7 + 88 |11111100 fc 8 + 89 |1110011 73 7 + 90 |11111101 fd 8 + 91 |11111111|11011 1ffb 13 + 92 |11111111|11111110|000 7fff0 19 + 93 |11111111|11100 1ffc 13 + 94 |11111111|111100 3ffc 14 + 95 |100010 22 6 + 96 |11111111|1111101 7ffd 15 + 97 |00011 3 5 + 98 |100011 23 6 + 99 |00100 4 5 + 100 |100100 24 6 + 101 |00101 5 5 + 102 |100101 25 6 + 103 |100110 26 6 + 104 |100111 27 6 + 105 |00110 6 5 + 106 |1110100 74 7 + 107 |1110101 75 7 + 108 |101000 28 6 + 109 |101001 29 6 + 110 |101010 2a 6 + 111 |00111 7 5 + 112 |101011 2b 6 + 113 |1110110 76 7 + 114 |101100 2c 6 + 115 |01000 8 5 + 116 |01001 9 5 + 117 |101101 2d 6 + 118 |1110111 77 7 + 119 |1111000 78 7 + 120 |1111001 79 7 + 121 |1111010 7a 7 + 122 |1111011 7b 7 + 123 |11111111|1111110 7ffe 15 + 124 |11111111|100 7fc 11 + 125 |11111111|111101 3ffd 14 + 126 |11111111|11101 1ffd 13 + 127 |11111111|11111111|11111111|1100 ffffffc 28 + 128 |11111111|11111110|0110 fffe6 20 + 129 |11111111|11111111|010010 3fffd2 22 + 130 |11111111|11111110|0111 fffe7 20 + 131 |11111111|11111110|1000 fffe8 20 + 132 |11111111|11111111|010011 3fffd3 22 + 133 |11111111|11111111|010100 3fffd4 22 + 134 |11111111|11111111|010101 3fffd5 22 + 135 |11111111|11111111|1011001 7fffd9 23 + 136 |11111111|11111111|010110 3fffd6 22 + 137 |11111111|11111111|1011010 7fffda 23 + 138 |11111111|11111111|1011011 7fffdb 23 + 139 |11111111|11111111|1011100 7fffdc 23 + 140 |11111111|11111111|1011101 7fffdd 23 + 141 |11111111|11111111|1011110 7fffde 23 + 142 |11111111|11111111|11101011 ffffeb 24 + 143 |11111111|11111111|1011111 7fffdf 23 + 144 |11111111|11111111|11101100 ffffec 24 + 145 |11111111|11111111|11101101 ffffed 24 + 146 |11111111|11111111|010111 3fffd7 22 + 147 |11111111|11111111|1100000 7fffe0 23 + 148 |11111111|11111111|11101110 ffffee 24 + 149 |11111111|11111111|1100001 7fffe1 23 + 150 |11111111|11111111|1100010 7fffe2 23 + 151 |11111111|11111111|1100011 7fffe3 23 + 152 |11111111|11111111|1100100 7fffe4 23 + 153 |11111111|11111110|11100 1fffdc 21 + 154 |11111111|11111111|011000 3fffd8 22 + 155 |11111111|11111111|1100101 7fffe5 23 + 156 |11111111|11111111|011001 3fffd9 22 + 157 |11111111|11111111|1100110 7fffe6 23 + 158 |11111111|11111111|1100111 7fffe7 23 + 159 |11111111|11111111|11101111 ffffef 24 + 160 |11111111|11111111|011010 3fffda 22 + 161 |11111111|11111110|11101 1fffdd 21 + 162 |11111111|11111110|1001 fffe9 20 + 163 |11111111|11111111|011011 3fffdb 22 + 164 |11111111|11111111|011100 3fffdc 22 + 165 |11111111|11111111|1101000 7fffe8 23 + 166 |11111111|11111111|1101001 7fffe9 23 + 167 |11111111|11111110|11110 1fffde 21 + 168 |11111111|11111111|1101010 7fffea 23 + 169 |11111111|11111111|011101 3fffdd 22 + 170 |11111111|11111111|011110 3fffde 22 + 171 |11111111|11111111|11110000 fffff0 24 + 172 |11111111|11111110|11111 1fffdf 21 + 173 |11111111|11111111|011111 3fffdf 22 + 174 |11111111|11111111|1101011 7fffeb 23 + 175 |11111111|11111111|1101100 7fffec 23 + 176 |11111111|11111111|00000 1fffe0 21 + 177 |11111111|11111111|00001 1fffe1 21 + 178 |11111111|11111111|100000 3fffe0 22 + 179 |11111111|11111111|00010 1fffe2 21 + 180 |11111111|11111111|1101101 7fffed 23 + 181 |11111111|11111111|100001 3fffe1 22 + 182 |11111111|11111111|1101110 7fffee 23 + 183 |11111111|11111111|1101111 7fffef 23 + 184 |11111111|11111110|1010 fffea 20 + 185 |11111111|11111111|100010 3fffe2 22 + 186 |11111111|11111111|100011 3fffe3 22 + 187 |11111111|11111111|100100 3fffe4 22 + 188 |11111111|11111111|1110000 7ffff0 23 + 189 |11111111|11111111|100101 3fffe5 22 + 190 |11111111|11111111|100110 3fffe6 22 + 191 |11111111|11111111|1110001 7ffff1 23 + 192 |11111111|11111111|11111000|00 3ffffe0 26 + 193 |11111111|11111111|11111000|01 3ffffe1 26 + 194 |11111111|11111110|1011 fffeb 20 + 195 |11111111|11111110|001 7fff1 19 + 196 |11111111|11111111|100111 3fffe7 22 + 197 |11111111|11111111|1110010 7ffff2 23 + 198 |11111111|11111111|101000 3fffe8 22 + 199 |11111111|11111111|11110110|0 1ffffec 25 + 200 |11111111|11111111|11111000|10 3ffffe2 26 + 201 |11111111|11111111|11111000|11 3ffffe3 26 + 202 |11111111|11111111|11111001|00 3ffffe4 26 + 203 |11111111|11111111|11111011|110 7ffffde 27 + 204 |11111111|11111111|11111011|111 7ffffdf 27 + 205 |11111111|11111111|11111001|01 3ffffe5 26 + 206 |11111111|11111111|11110001 fffff1 24 + 207 |11111111|11111111|11110110|1 1ffffed 25 + 208 |11111111|11111110|010 7fff2 19 + 209 |11111111|11111111|00011 1fffe3 21 + 210 |11111111|11111111|11111001|10 3ffffe6 26 + 211 |11111111|11111111|11111100|000 7ffffe0 27 + 212 |11111111|11111111|11111100|001 7ffffe1 27 + 213 |11111111|11111111|11111001|11 3ffffe7 26 + 214 |11111111|11111111|11111100|010 7ffffe2 27 + 215 |11111111|11111111|11110010 fffff2 24 + 216 |11111111|11111111|00100 1fffe4 21 + 217 |11111111|11111111|00101 1fffe5 21 + 218 |11111111|11111111|11111010|00 3ffffe8 26 + 219 |11111111|11111111|11111010|01 3ffffe9 26 + 220 |11111111|11111111|11111111|1101 ffffffd 28 + 221 |11111111|11111111|11111100|011 7ffffe3 27 + 222 |11111111|11111111|11111100|100 7ffffe4 27 + 223 |11111111|11111111|11111100|101 7ffffe5 27 + 224 |11111111|11111110|1100 fffec 20 + 225 |11111111|11111111|11110011 fffff3 24 + 226 |11111111|11111110|1101 fffed 20 + 227 |11111111|11111111|00110 1fffe6 21 + 228 |11111111|11111111|101001 3fffe9 22 + 229 |11111111|11111111|00111 1fffe7 21 + 230 |11111111|11111111|01000 1fffe8 21 + 231 |11111111|11111111|1110011 7ffff3 23 + 232 |11111111|11111111|101010 3fffea 22 + 233 |11111111|11111111|101011 3fffeb 22 + 234 |11111111|11111111|11110111|0 1ffffee 25 + 235 |11111111|11111111|11110111|1 1ffffef 25 + 236 |11111111|11111111|11110100 fffff4 24 + 237 |11111111|11111111|11110101 fffff5 24 + 238 |11111111|11111111|11111010|10 3ffffea 26 + 239 |11111111|11111111|1110100 7ffff4 23 + 240 |11111111|11111111|11111010|11 3ffffeb 26 + 241 |11111111|11111111|11111100|110 7ffffe6 27 + 242 |11111111|11111111|11111011|00 3ffffec 26 + 243 |11111111|11111111|11111011|01 3ffffed 26 + 244 |11111111|11111111|11111100|111 7ffffe7 27 + 245 |11111111|11111111|11111101|000 7ffffe8 27 + 246 |11111111|11111111|11111101|001 7ffffe9 27 + 247 |11111111|11111111|11111101|010 7ffffea 27 + 248 |11111111|11111111|11111101|011 7ffffeb 27 + 249 |11111111|11111111|11111111|1110 ffffffe 28 + 250 |11111111|11111111|11111101|100 7ffffec 27 + 251 |11111111|11111111|11111101|101 7ffffed 27 + 252 |11111111|11111111|11111101|110 7ffffee 27 + 253 |11111111|11111111|11111101|111 7ffffef 27 + 254 |11111111|11111111|11111110|000 7fffff0 27 + 255 |11111111|11111111|11111011|10 3ffffee 26 + 256 |11111111|11111111|11111111|111111 3fffffff 30 +""" + + +def gen_tuple(data): + maxlen = 0 + for (_, _, hexval, _) in data: + maxlen = max(maxlen, len(hexval)) + lines = [] + for (_, _, hexval, bitlen) in data: + hexstr = ("16#" + hexval).rjust(maxlen + 4) + bitstr = bitlen.rjust(2) + lines.append(" <<%s:%s>>" % (hexstr, bitstr)) + print "-define(HUFFMAN_CODES, {" + print ",\n".join(lines) + print "})." + + +def gen_tree(data): + tree = {} + for (byte, hexval, _, _) in data: + curr = tree + for lr in hexval: + curr.setdefault(lr, {}) + curr = curr[lr] + curr["value"] = byte + tokens = [] + print_tree(tree, tokens) + lines = [] + for t in tokens: + if t == ",": + lines[-1] = lines[-1] + t + elif lines and t[0] == lines[-1][-1]: + lines[-1] = lines[-1] + t + else: + lines.append(t) + print "-define(HUFFMAN_TREE," + for line in lines: + print " " + line + print ")." + + +def print_tree(tree, acc): + if "value" in tree: + assert len(tree) == 1 + acc.append("{v, %s}" % tree["value"]) + return + + assert len(tree) == 2 + acc.append("{") + print_tree(tree["0"], acc) + acc.append(",") + print_tree(tree["1"], acc) + acc.append("}") + + +def main(): + parsed = [] + for line in TABLE.splitlines(): + if not line.strip(): + continue + (byte, binval, hexval, bitlen) = line.split() + binval = binval.replace("|", "") + parsed.append((byte, binval, hexval, bitlen)) + + gen_tuple(parsed) + print "\n" + gen_tree(parsed) + + +if __name__ == "__main__": + main() From 988f9222352678fa09c1f903b674ae6e964eebfb Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:17:35 -0500 Subject: [PATCH 06/13] Implement proper string encoding/decoding --- src/hpack_string.erl | 69 ++++++++++++++------ test/hpack_string_tests.erl | 81 +++++++++++++++++------ test/hpack_tutil.erl | 126 ++++++++++++++++++++++++++++++++++++ 3 files changed, 236 insertions(+), 40 deletions(-) create mode 100644 test/hpack_tutil.erl diff --git a/src/hpack_string.erl b/src/hpack_string.erl index 5a7f451..34681a4 100644 --- a/src/hpack_string.erl +++ b/src/hpack_string.erl @@ -3,26 +3,55 @@ -module(hpack_string). -export([ - decode/1 - ]). + encode/2, + decode/1, + + is_uncompressed/1, + any_uncompressed/1 +]). + + +-include("hpack.hrl"). + + +-spec encode(binary(), [header_opt()]) -> binary(). +encode(Bin, Opts) -> + Uncompressed = lists:member(uncompressed, Opts), + {Compressed, DataBin} = case Uncompressed of + true -> + {false, Bin}; + false -> + case hpack_huffman:encode(Bin) of + {error, compressed_larger} -> + {false, Bin}; + HBin when is_binary(HBin) -> + {true, HBin} + end + end, + SizeBin = hpack_integer:encode(size(DataBin), 7), + case Compressed of + true -> <<1:1, SizeBin/bits, DataBin/binary>>; + false -> <<0:1, SizeBin/bits, DataBin/binary>> + end. + -spec decode(binary()) -> {binary(), binary()}. decode(<<>>) -> - {<<>>, <<>>}; -decode(<>) -> - {Length, Rem} = hpack_integer:decode(Bin, 7), - <> = Rem, - Literal = case Huff of - 1 -> - huffman:decode(RawLiteral); - 0 -> - RawLiteral - end, - {Literal, B2}. - -%% As the Huffman-encoded data doesn't always end at an octet -%% boundary, some padding is inserted after it, up to the next octet -%% boundary. To prevent this padding from being misinterpreted as -%% part of the string literal, the most significant bits of the code -%% corresponding to the EOS (end-of-string) symbol are used. -%% EOS (256) |11111111|11111111|11111111|111111 3fffffff [30] + ?ERROR({invalid_string, no_data}); + +decode(<>) -> + {Length, B2} = hpack_integer:decode(B1, 7), + <> = B2, + Value = case Huff of + 0 -> Data; + 1 -> hpack_huffman:decode(Data) + end, + {Value, B3}. + + +is_uncompressed(<<0:1, _/bits>>) -> true; +is_uncompressed(<<1:1, _/bits>>) -> false. + + +any_uncompressed(Bins) when is_list(Bins) -> + lists:any(fun is_uncompressed/1, Bins). diff --git a/test/hpack_string_tests.erl b/test/hpack_string_tests.erl index 9e979bd..203bd33 100644 --- a/test/hpack_string_tests.erl +++ b/test/hpack_string_tests.erl @@ -1,26 +1,67 @@ + -module(hpack_string_tests). + -include_lib("eunit/include/eunit.hrl"). --compile([export_all]). + basic_decode_test() -> - %% "Commands - Bin = <<0:1,8:7,$C,$o,$m,$m,$a,$n,$d,$s>>, - ?assertEqual({<<"Commands">>, <<>>}, hpack_string:decode(Bin)), - ok. + Bin = <<0:1, 8:7, $C,$o,$m,$m,$a,$n,$d,$s>>, + ?assertEqual({<<"Commands">>, <<>>}, hpack_string:decode(Bin)). + basic_decode_with_huffman_test() -> - %% "Commands" - Bin = <<1:1, - 6:7, %% now it's 6 bytes instead of 8. Savings! - 2#1011110:7, %% $C 7 - 2#00111:5, %% $o 5 - 2#101001:6, %% $m 6 - 2#101001:6, %% $m 6 - 2#00011:5, %% $a 5 - 2#101010:6, %% $n 6 - 2#100100:6, %% $d 6 - 2#01000:5, %% $s +5 - 0:2 %% =46 - >>, - ?assertEqual({<<"Commands">>, <<>>}, hpack_string:decode(Bin)), - ok. + Bin = << + 1:1, + 6:7, %% now it's 6 bytes instead of 8. Savings! + 2#1011110:7, %% $C 7 + 2#00111:5, %% $o 5 + 2#101001:6, %% $m 6 + 2#101001:6, %% $m 6 + 2#00011:5, %% $a 5 + 2#101010:6, %% $n 6 + 2#100100:6, %% $d 6 + 2#01000:5, %% $s +5 + 2#11:2 %% =46 + >>, + ?assertEqual({<<"Commands">>, <<>>}, hpack_string:decode(Bin)). + + +short_string_uncompressed_test() -> + % 302 can compress into two bytes + ?assertEqual(<<130, 100, 2>>, hpack_string:encode(<<"302">>, [])), + % 307 takes three bytes which is equivalent + % to the uncompressed versions so that's + % what we use. + ?assertEqual(<<3, "307">>, hpack_string:encode(<<"307">>, [])). + + +empty_binary_test() -> + ?assertThrow( + {hpack_error, {invalid_string, no_data}}, + hpack_string:decode(<<>>) + ). + + +roundtrip_sequential_test() -> + lists:foreach(fun(IntValue) -> + roundtrip(integer_to_binary(IntValue), []), + roundtrip(integer_to_binary(IntValue), [uncompressed]) + end, lists:seq(0, 512)). + + +roundtrip_random_test() -> + lists:foreach(fun(_) -> + Value = hpack_tutil:random_bin(256), + roundtrip(Value, []), + roundtrip(Value, [uncompressed]) + end, lists:seq(0, 512)). + + +roundtrip(Value, Opts) -> + Encoded = hpack_string:encode(Value, Opts), + Decoded = hpack_string:decode(Encoded), + ?assertEqual({Value, <<>>}, Decoded), + + Garbage = hpack_tutil:random_bin(64), + WithGarbage = <>, + ?assertEqual({Value, Garbage}, hpack_string:decode(WithGarbage)). diff --git a/test/hpack_tutil.erl b/test/hpack_tutil.erl new file mode 100644 index 0000000..03c82f7 --- /dev/null +++ b/test/hpack_tutil.erl @@ -0,0 +1,126 @@ + +-module(hpack_tutil). + + +-export([ + headers_equal/2, + + random_int/0, + random_int/1, + + random_bin/0, + random_bin/1, + + dehex/1 +]). + + +headers_equal([], []) -> + true; +headers_equal([{N, V} | RestL], [{N, V} | RestR]) -> + headers_equal(RestL, RestR); +headers_equal([{N, V, _O} | RestL], RestR) -> + headers_equal([{N, V} | RestL], RestR); +headers_equal(RestL, [{N, V, _P} | RestR]) -> + headers_equal(RestL, [{N, V} | RestR]); +headers_equal([H1 | _], [H2 | _]) -> + erlang:error({not_equal, H1, H2}). + + +random_int() -> + random_int(16#FFFFFFFF). + + +random_int(Range) -> + rand:uniform(Range). + + +random_bin() -> + random_bin(1024). + + +random_bin(Size) -> + Bytes = [ + random_int(256) - 1 + || _ <- lists:seq(1, Size) + ], + list_to_binary(Bytes). + + +dehex(Binary) -> + dehex(strip(Binary, []), []). + + +dehex(<<>>, Acc) -> + list_to_binary(lists:reverse(Acc)); + +dehex(<>, Acc) -> + HN = nibble(Hi), + LN = nibble(Lo), + dehex(Rest, [<> | Acc]). + + +strip(<<>>, Acc) -> + list_to_binary(lists:reverse(Acc)); + +strip(<<" ", Rest/binary>>, Acc) -> + strip(Rest, Acc); + +strip(<<"\n", Rest/binary>>, Acc) -> + strip(Rest, Acc); + +strip(<>, Acc) -> + strip(Rest, [Byte | Acc]). + + +nibble($0) -> 0; +nibble($1) -> 1; +nibble($2) -> 2; +nibble($3) -> 3; +nibble($4) -> 4; +nibble($5) -> 5; +nibble($6) -> 6; +nibble($7) -> 7; +nibble($8) -> 8; +nibble($9) -> 9; +nibble($a) -> 10; +nibble($A) -> 10; +nibble($b) -> 11; +nibble($B) -> 11; +nibble($c) -> 12; +nibble($C) -> 12; +nibble($d) -> 13; +nibble($D) -> 13; +nibble($e) -> 14; +nibble($E) -> 14; +nibble($f) -> 15; +nibble($F) -> 15. + + +-ifdef(TEST). + +-include_lib("eunit/include/eunit.hrl"). + + +headers_not_equal_test() -> + ?assertError({not_equal, _, _}, headers_equal([{a, b}], [{a, c}])), + ?assertError({not_equal, _, _}, headers_equal([{a, b}], [{c, d}])), + ?assertError({not_equal, _, _}, headers_equal([{a, b}], [{c, b}])). + + +random_test() -> + ?assert(is_integer(random_int())), + ?assert(is_integer(random_int(10))), + ?assert(random_int(10) =< 10), + ?assert(is_binary(random_bin())), + ?assert(is_binary(random_bin(10))), + ?assert(size(random_bin(10)) == 10). + + +hex_test() -> + lists:foreach(fun(Val) -> + Bin = list_to_binary(io_lib:format("~2.16.0B", [Val])), + ?assertEqual(<>, dehex(Bin)) + end, lists:seq(0, 255)). + +-endif. From 848854e171ca4f43fd3e17fc1aa679684c9e9b42 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:20:55 -0500 Subject: [PATCH 07/13] Fix dynamic table management --- src/hpack_index.erl | 531 ++++++++++++++++++------------------- src/hpack_index.hrl | 65 +++++ test/hpack_index_tests.erl | 149 +++++++++-- 3 files changed, 445 insertions(+), 300 deletions(-) create mode 100644 src/hpack_index.hrl diff --git a/src/hpack_index.erl b/src/hpack_index.erl index 0f547a7..58aab89 100644 --- a/src/hpack_index.erl +++ b/src/hpack_index.erl @@ -3,290 +3,277 @@ -module(hpack_index). -export([ - new/0, - new/1, + resize/2, + size/1, + max_size/1, + table/1, + add/3, + lookup/2, - resize/2, - table_size/1, - max_table_size/1, match/2 ]). --type header_name() :: binary(). --type header_value():: binary(). --type header() :: {header_name(), header_value()}. --export_type([header/0]). --define(DYNAMIC_TABLE_MIN_INDEX, 62). +-include("hpack.hrl"). +-include("hpack_index.hrl"). --record(dynamic_table, { - table = [] :: [{pos_integer(), header_name(), header_value()}], - %% max_size is the size allowed by the protocol - max_size = 4096 :: non_neg_integer(), - %% size is how big this thing really is - size = 0 :: non_neg_integer() - }). --type dynamic_table() :: #dynamic_table{}. --spec new() -> dynamic_table(). -new() -> #dynamic_table{}. +-spec resize(context(), pos_integer()) -> context(). +resize(#hpack_ctx{} = Ctx0, NewMaxSize) -> + #hpack_ctx{ + table = Table + } = Ctx0, + Ctx1 = Ctx0#hpack_ctx{ + max_size = NewMaxSize + }, + drop_entries(Ctx1, lists:reverse(Table), 0). --spec new(pos_integer()) -> dynamic_table(). -new(S) -> #dynamic_table{max_size=S}. --spec entry_size({pos_integer(), header_name(), header_value()}) -> pos_integer(). -entry_size({_, Name, Value}) -> - entry_size(Name, Value). +-spec size(context()) -> pos_integer(). +size(#hpack_ctx{} = Ctx) -> + Ctx#hpack_ctx.cur_size. --spec entry_size(header_name(), header_value()) -> pos_integer(). -entry_size(Name, Value) -> - 32 + size(Name) + size(Value). - --spec add(header_name(), header_value(), dynamic_table()) -> dynamic_table(). -add(Name, Value, DT) -> - add(Name, Value, entry_size(Name, Value), DT). - --spec add(header_name(), header_value(), pos_integer(), dynamic_table()) -> dynamic_table(). -add(Name, Value, EntrySize, DT=#dynamic_table{table=T, size=S, max_size=MS}) - when EntrySize + S =< MS -> - TPlus = lists:map(fun({N,H,V}) -> {N+1, H,V} end, T), - DT#dynamic_table{size=S+EntrySize, table=[{?DYNAMIC_TABLE_MIN_INDEX, Name, Value}|TPlus]}; -add(_Name, _Value, EntrySize, DT=#dynamic_table{max_size=MS, table=[]}) - when EntrySize > MS -> - DT; -add(Name, Value, EntrySize, DT=#dynamic_table{size=S, max_size=MS}) - when EntrySize + S > MS -> - add(Name, Value, EntrySize, - droplast(DT)). - --spec droplast(dynamic_table()) -> dynamic_table(). -droplast(DT=#dynamic_table{table=[]}) -> DT; -droplast(DT=#dynamic_table{table=T, size=S}) -> - [Last|NewTR] = lists:reverse(T), - DT#dynamic_table{size=S-entry_size(Last), table=lists:reverse(NewTR)}. - - -%% TODO: There's a problem here, where if you shink the dynamic table -%% size, you can never increase it. - -%% resize/2 sets the max_table_size, and truncates the table if it -%% needs to be smaller to fit in that maximum --spec resize(pos_integer(), dynamic_table()) -> dynamic_table(). -resize(NewSize, DT=#dynamic_table{size=S}) - when NewSize >= S -> - DT#dynamic_table{max_size=NewSize}; -resize(NewSize, DT) -> - resize(NewSize, droplast(DT)). - --spec table_size(dynamic_table()) -> pos_integer(). -table_size(#dynamic_table{size=S}) -> S. - --spec max_table_size(dynamic_table()) -> pos_integer(). -max_table_size(#dynamic_table{max_size=S}) -> S. - --spec lookup(pos_integer(), dynamic_table()) -> header() | undefined. -lookup(1 , _) -> {<<":authority">>, <<>>}; -lookup(2 , _) -> {<<":method">>, <<"GET">>}; -lookup(3 , _) -> {<<":method">>, <<"POST">>}; -lookup(4 , _) -> {<<":path">>, <<"/">>}; -lookup(5 , _) -> {<<":path">>, <<"/index.html">>}; -lookup(6 , _) -> {<<":scheme">>, <<"http">>}; -lookup(7 , _) -> {<<":scheme">>, <<"https">>}; -lookup(8 , _) -> {<<":status">>, <<"200">>}; -lookup(9 , _) -> {<<":status">>, <<"204">>}; -lookup(10, _) -> {<<":status">>, <<"206">>}; -lookup(11, _) -> {<<":status">>, <<"304">>}; -lookup(12, _) -> {<<":status">>, <<"400">>}; -lookup(13, _) -> {<<":status">>, <<"404">>}; -lookup(14, _) -> {<<":status">>, <<"500">>}; -lookup(15, _) -> {<<"accept-charset">>, <<>>}; -lookup(16, _) -> {<<"accept-encoding">>, <<"gzip, deflate">>}; -lookup(17, _) -> {<<"accept-language">>, <<>>}; -lookup(18, _) -> {<<"accept-ranges">>, <<>>}; -lookup(19, _) -> {<<"accept">>, <<>>}; -lookup(20, _) -> {<<"access-control-allow-origin">>, <<>>}; -lookup(21, _) -> {<<"age">>, <<>>}; -lookup(22, _) -> {<<"allow">>, <<>>}; -lookup(23, _) -> {<<"authorization">>, <<>>}; -lookup(24, _) -> {<<"cache-control">>, <<>>}; -lookup(25, _) -> {<<"content-disposition">>, <<>>}; -lookup(26, _) -> {<<"content-encoding">>, <<>>}; -lookup(27, _) -> {<<"content-language">>, <<>>}; -lookup(28, _) -> {<<"content-length">>, <<>>}; -lookup(29, _) -> {<<"content-location">>, <<>>}; -lookup(30, _) -> {<<"content-range">>, <<>>}; -lookup(31, _) -> {<<"content-type">>, <<>>}; -lookup(32, _) -> {<<"cookie">>, <<>>}; -lookup(33, _) -> {<<"date">>, <<>>}; -lookup(34, _) -> {<<"etag">>, <<>>}; -lookup(35, _) -> {<<"expect">>, <<>>}; -lookup(36, _) -> {<<"expires">>, <<>>}; -lookup(37, _) -> {<<"from">>, <<>>}; -lookup(38, _) -> {<<"host">>, <<>>}; -lookup(39, _) -> {<<"if-match">>, <<>>}; -lookup(40, _) -> {<<"if-modified-since">>, <<>>}; -lookup(41, _) -> {<<"if-none-match">>, <<>>}; -lookup(42, _) -> {<<"if-range">>, <<>>}; -lookup(43, _) -> {<<"if-unmodified-since">>, <<>>}; -lookup(44, _) -> {<<"last-modified">>, <<>>}; -lookup(45, _) -> {<<"link">>, <<>>}; -lookup(46, _) -> {<<"location">>, <<>>}; -lookup(47, _) -> {<<"max-forwards">>, <<>>}; -lookup(48, _) -> {<<"proxy-authenticate">>, <<>>}; -lookup(49, _) -> {<<"proxy-authorization">>, <<>>}; -lookup(50, _) -> {<<"range">>, <<>>}; -lookup(51, _) -> {<<"referer">>, <<>>}; -lookup(52, _) -> {<<"refresh">>, <<>>}; -lookup(53, _) -> {<<"retry-after">>, <<>>}; -lookup(54, _) -> {<<"server">>, <<>>}; -lookup(55, _) -> {<<"set-cookie">>, <<>>}; -lookup(56, _) -> {<<"strict-transport-security">>, <<>>}; -lookup(57, _) -> {<<"transfer-encoding">>, <<>>}; -lookup(58, _) -> {<<"user-agent">>, <<>>}; -lookup(59, _) -> {<<"vary">>, <<>>}; -lookup(60, _) -> {<<"via">>, <<>>}; -lookup(61, _) -> {<<"www-authenticate">>, <<>>}; -lookup(Idx, #dynamic_table{table=T}) -> - case lists:keyfind(Idx, 1, T) of - false -> - undefined; - {Idx, Name, V} -> - {Name, V} + +-spec max_size(context()) -> pos_integer(). +max_size(#hpack_ctx{} = Ctx) -> + Ctx#hpack_ctx.max_size. + + +-spec table(context()) -> {non_neg_integer(), [any()]}. +table(#hpack_ctx{} = Ctx) -> + {Ctx#hpack_ctx.cur_size, Ctx#hpack_ctx.table}. + + +-spec add(context(), header_name(), header_value()) -> context(). +add(Ctx0, Name, Value) -> + #hpack_ctx{ + table = Table, + max_size = MaxSize + } = Ctx0, + + EntrySize = entry_size(Name, Value), + Ctx1 = drop_entries(Ctx0, lists:reverse(Table), EntrySize), + Ctx2 = relable_entries(Ctx1), + if EntrySize > MaxSize -> Ctx2; true -> + add_entry(Ctx2, Name, Value, EntrySize) end. --spec match(header(), dynamic_table()) -> {atom(), pos_integer()|undefined}. -match({<<":authority">>, <<>>}, _) -> {indexed, 1 }; -match({<<":method">>, <<"GET">>}, _) -> {indexed, 2 }; -match({<<":method">>, <<"POST">>}, _) -> {indexed, 3 }; -match({<<":path">>, <<"/">>}, _) -> {indexed, 4 }; -match({<<":path">>, <<"/index.html">>}, _) -> {indexed, 5 }; -match({<<":scheme">>, <<"http">>}, _) -> {indexed, 6 }; -match({<<":scheme">>, <<"https">>}, _) -> {indexed, 7 }; -match({<<":status">>, <<"200">>}, _) -> {indexed, 8 }; -match({<<":status">>, <<"204">>}, _) -> {indexed, 9 }; -match({<<":status">>, <<"206">>}, _) -> {indexed, 10}; -match({<<":status">>, <<"304">>}, _) -> {indexed, 11}; -match({<<":status">>, <<"400">>}, _) -> {indexed, 12}; -match({<<":status">>, <<"404">>}, _) -> {indexed, 13}; -match({<<":status">>, <<"500">>}, _) -> {indexed, 14}; -match({<<"accept-charset">>, <<>>}, _) -> {indexed, 15}; -match({<<"accept-encoding">>, <<"gzip, deflate">>}, _) -> {indexed, 16}; -match({<<"accept-language">>, <<>>}, _) -> {indexed, 17}; -match({<<"accept-ranges">>, <<>>}, _) -> {indexed, 18}; -match({<<"accept">>, <<>>}, _) -> {indexed, 19}; -match({<<"access-control-allow-origin">>, <<>>}, _) -> {indexed, 20}; -match({<<"age">>, <<>>}, _) -> {indexed, 21}; -match({<<"allow">>, <<>>}, _) -> {indexed, 22}; -match({<<"authorization">>, <<>>}, _) -> {indexed, 23}; -match({<<"cache-control">>, <<>>}, _) -> {indexed, 24}; -match({<<"content-disposition">>, <<>>}, _) -> {indexed, 25}; -match({<<"content-encoding">>, <<>>}, _) -> {indexed, 26}; -match({<<"content-language">>, <<>>}, _) -> {indexed, 27}; -match({<<"content-length">>, <<>>}, _) -> {indexed, 28}; -match({<<"content-location">>, <<>>}, _) -> {indexed, 29}; -match({<<"content-range">>, <<>>}, _) -> {indexed, 30}; -match({<<"content-type">>, <<>>}, _) -> {indexed, 31}; -match({<<"cookie">>, <<>>}, _) -> {indexed, 32}; -match({<<"date">>, <<>>}, _) -> {indexed, 33}; -match({<<"etag">>, <<>>}, _) -> {indexed, 34}; -match({<<"expect">>, <<>>}, _) -> {indexed, 35}; -match({<<"expires">>, <<>>}, _) -> {indexed, 36}; -match({<<"from">>, <<>>}, _) -> {indexed, 37}; -match({<<"host">>, <<>>}, _) -> {indexed, 38}; -match({<<"if-match">>, <<>>}, _) -> {indexed, 39}; -match({<<"if-modified-since">>, <<>>}, _) -> {indexed, 40}; -match({<<"if-none-match">>, <<>>}, _) -> {indexed, 41}; -match({<<"if-range">>, <<>>}, _) -> {indexed, 42}; -match({<<"if-unmodified-since">>, <<>>}, _) -> {indexed, 43}; -match({<<"last-modified">>, <<>>}, _) -> {indexed, 44}; -match({<<"link">>, <<>>}, _) -> {indexed, 45}; -match({<<"location">>, <<>>}, _) -> {indexed, 46}; -match({<<"max-forwards">>, <<>>}, _) -> {indexed, 47}; -match({<<"proxy-authenticate">>, <<>>}, _) -> {indexed, 48}; -match({<<"proxy-authorization">>, <<>>}, _) -> {indexed, 49}; -match({<<"range">>, <<>>}, _) -> {indexed, 50}; -match({<<"referer">>, <<>>}, _) -> {indexed, 51}; -match({<<"refresh">>, <<>>}, _) -> {indexed, 52}; -match({<<"retry-after">>, <<>>}, _) -> {indexed, 53}; -match({<<"server">>, <<>>}, _) -> {indexed, 54}; -match({<<"set-cookie">>, <<>>}, _) -> {indexed, 55}; -match({<<"strict-transport-security">>, <<>>}, _) -> {indexed, 56}; -match({<<"transfer-encoding">>, <<>>}, _) -> {indexed, 57}; -match({<<"user-agent">>, <<>>}, _) -> {indexed, 58}; -match({<<"vary">>, <<>>}, _) -> {indexed, 59}; -match({<<"via">>, <<>>}, _) -> {indexed, 60}; -match({<<"www-authenticate">>, <<>>}, _) -> {indexed, 61}; -match({Name, Value}, #dynamic_table{table=T}) -> - %% If there's a N/V match in the DT, return {indexed, Int} - %% If there's a N match, make sure there's not also a static_match - %% if so, use it, otherwise use the first element in the first match - %% If not - Found = lists:filter(fun({_,N,_}) -> N =:= Name end, T), - ExactFound = lists:filter(fun({_,_,V}) -> V =:= Value end, Found), - - case {ExactFound, Found, static_match(Name)} of - {[{I,Name,Value}|_], _, _} -> - {indexed, I}; - {[], [{I,Name,_}|_], undefined} -> - {literal_with_indexing, I}; - {[], _, I} when is_integer(I) -> - {literal_with_indexing, I}; - {[], [], undefined} -> - {literal_wo_indexing, undefined} + +-spec lookup(context(), pos_integer()) -> header() | undefined. +lookup(_Ctx, Idx) when Idx > 0, Idx < ?DYNAMIC_TABLE_MIN_INDEX -> + element(Idx, ?STATIC_TABLE); + +lookup(#hpack_ctx{} = Ctx, Idx) -> + DynamicIdx = Idx - ?DYNAMIC_TABLE_MIN_INDEX + 1, + case lists:keyfind(DynamicIdx, 1, Ctx#hpack_ctx.table) of + {DynamicIdx, Name, Value} -> {Name, Value}; + false -> undefined end. --spec static_match(header_name()) -> pos_integer() | undefined. -static_match(<<":authority">>) -> 1 ; -static_match(<<":method">>) -> 2 ; -static_match(<<":path">>) -> 4 ; -static_match(<<":scheme">>) -> 6 ; -static_match(<<":status">>) -> 8 ; -static_match(<<"accept-charset">>) -> 15; -static_match(<<"accept-encoding">>) -> 16; -static_match(<<"accept-language">>) -> 17; -static_match(<<"accept-ranges">>) -> 18; -static_match(<<"accept">>) -> 19; -static_match(<<"access-control-allow-origin">>) -> 20; -static_match(<<"age">>) -> 21; -static_match(<<"allow">>) -> 22; -static_match(<<"authorization">>) -> 23; -static_match(<<"cache-control">>) -> 24; -static_match(<<"content-disposition">>) -> 25; -static_match(<<"content-encoding">>) -> 26; -static_match(<<"content-language">>) -> 27; -static_match(<<"content-length">>) -> 28; -static_match(<<"content-location">>) -> 29; -static_match(<<"content-range">>) -> 30; -static_match(<<"content-type">>) -> 31; -static_match(<<"cookie">>) -> 32; -static_match(<<"date">>) -> 33; -static_match(<<"etag">>) -> 34; -static_match(<<"expect">>) -> 35; -static_match(<<"expires">>) -> 36; -static_match(<<"from">>) -> 37; -static_match(<<"host">>) -> 38; -static_match(<<"if-match">>) -> 39; -static_match(<<"if-modified-since">>) -> 40; -static_match(<<"if-none-match">>) -> 41; -static_match(<<"if-range">>) -> 42; -static_match(<<"if-unmodified-since">>) -> 43; -static_match(<<"last-modified">>) -> 44; -static_match(<<"link">>) -> 45; -static_match(<<"location">>) -> 46; -static_match(<<"max-forwards">>) -> 47; -static_match(<<"proxy-authenticate">>) -> 48; -static_match(<<"proxy-authorization">>) -> 49; -static_match(<<"range">>) -> 50; -static_match(<<"referer">>) -> 51; -static_match(<<"refresh">>) -> 52; -static_match(<<"retry-after">>) -> 53; -static_match(<<"server">>) -> 54; -static_match(<<"set-cookie">>) -> 55; -static_match(<<"strict-transport-security">>) -> 56; -static_match(<<"transfer-encoding">>) -> 57; -static_match(<<"user-agent">>) -> 58; -static_match(<<"vary">>) -> 59; -static_match(<<"via">>) -> 60; -static_match(<<"www-authenticate">>) -> 61; -static_match(_) -> undefined. + +-spec match(context(), {header_name(), header_value()}) -> match_result(). +match(#hpack_ctx{} = Ctx, {Name, Value}) -> + % The order of preference for finding a usable cached + % header index is: + % + % 1. An exact static match + % 2. An exact dynamic match + % 3. A name only static match + % 4. A name only dynamic match + try + case static_exact({Name, Value}) of + I1 when is_integer(I1) -> + throw({hdr_indexed, I1}); + undefined -> + ok + end, + + DynamicNameIdx = lists:foldl(fun({I, N, V}, Acc) -> + case Name == N andalso Value == V of + true -> + throw({hdr_indexed, I + ?DYNAMIC_TABLE_MIN_INDEX - 1}); + false -> + ok + end, + case Name == N andalso Acc == undefined of + true -> I + ?DYNAMIC_TABLE_MIN_INDEX - 1; + false -> Acc + end + end, undefined, Ctx#hpack_ctx.table), + + case {static_name(Name), DynamicNameIdx} of + {I2, _} when is_integer(I2) -> {name_indexed, I2}; + {_, I2} when is_integer(I2) -> {name_indexed, I2}; + {undefined, undefined} -> not_indexed + end + catch + throw:{hdr_indexed, Idx} -> + {hdr_indexed, Idx} + end. + + +drop_entries(#hpack_ctx{cur_size = 0} = Ctx, [], _EntrySize) -> + Ctx#hpack_ctx{ + table = [] + }; + +drop_entries(Ctx, [{_Pos, Name, Value} | RevRest] = RevTable, EntrySize) -> + #hpack_ctx{ + cur_size = CurSize, + max_size = MaxSize + } = Ctx, + case EntrySize + CurSize =< MaxSize of + true -> + Ctx#hpack_ctx{ + table = lists:reverse(RevTable) + }; + false -> + RemSize = entry_size(Name, Value), + NewCtx = Ctx#hpack_ctx{ + cur_size = CurSize - RemSize + }, + drop_entries(NewCtx, RevRest, EntrySize) + end. + + +entry_size(Name, Value) -> + erlang:size(Name) + erlang:size(Value) + 32. + + +relable_entries(Ctx) -> + #hpack_ctx{ + table = Table + } = Ctx, + Ctx#hpack_ctx{ + table = [{Idx + 1, Name, Value} || {Idx, Name, Value} <- Table] + }. + + +add_entry(Ctx, Name, Value, EntrySize) -> + #hpack_ctx{ + table = Table, + cur_size = CurSize + } = Ctx, + Ctx#hpack_ctx{ + table = [{1, Name, Value} | Table], + cur_size = CurSize + EntrySize + }. + + +static_exact({<<":authority">>, <<>>}) -> 1; +static_exact({<<":method">>, <<"GET">>}) -> 2; +static_exact({<<":method">>, <<"POST">>}) -> 3; +static_exact({<<":path">>, <<"/">>}) -> 4; +static_exact({<<":path">>, <<"/index.html">>}) -> 5; +static_exact({<<":scheme">>, <<"http">>}) -> 6; +static_exact({<<":scheme">>, <<"https">>}) -> 7; +static_exact({<<":status">>, <<"200">>}) -> 8; +static_exact({<<":status">>, <<"204">>}) -> 9; +static_exact({<<":status">>, <<"206">>}) -> 10; +static_exact({<<":status">>, <<"304">>}) -> 11; +static_exact({<<":status">>, <<"400">>}) -> 12; +static_exact({<<":status">>, <<"404">>}) -> 13; +static_exact({<<":status">>, <<"500">>}) -> 14; +static_exact({<<"accept-charset">>, <<>>}) -> 15; +static_exact({<<"accept-encoding">>, <<"gzip, deflate">>}) -> 16; +static_exact({<<"accept-language">>, <<>>}) -> 17; +static_exact({<<"accept-ranges">>, <<>>}) -> 18; +static_exact({<<"accept">>, <<>>}) -> 19; +static_exact({<<"access-control-allow-origin">>, <<>>}) -> 20; +static_exact({<<"age">>, <<>>}) -> 21; +static_exact({<<"allow">>, <<>>}) -> 22; +static_exact({<<"authorization">>, <<>>}) -> 23; +static_exact({<<"cache-control">>, <<>>}) -> 24; +static_exact({<<"content-disposition">>, <<>>}) -> 25; +static_exact({<<"content-encoding">>, <<>>}) -> 26; +static_exact({<<"content-language">>, <<>>}) -> 27; +static_exact({<<"content-length">>, <<>>}) -> 28; +static_exact({<<"content-location">>, <<>>}) -> 29; +static_exact({<<"content-range">>, <<>>}) -> 30; +static_exact({<<"content-type">>, <<>>}) -> 31; +static_exact({<<"cookie">>, <<>>}) -> 32; +static_exact({<<"date">>, <<>>}) -> 33; +static_exact({<<"etag">>, <<>>}) -> 34; +static_exact({<<"expect">>, <<>>}) -> 35; +static_exact({<<"expires">>, <<>>}) -> 36; +static_exact({<<"from">>, <<>>}) -> 37; +static_exact({<<"host">>, <<>>}) -> 38; +static_exact({<<"if-match">>, <<>>}) -> 39; +static_exact({<<"if-modified-since">>, <<>>}) -> 40; +static_exact({<<"if-none-match">>, <<>>}) -> 41; +static_exact({<<"if-range">>, <<>>}) -> 42; +static_exact({<<"if-unmodified-since">>, <<>>}) -> 43; +static_exact({<<"last-modified">>, <<>>}) -> 44; +static_exact({<<"link">>, <<>>}) -> 45; +static_exact({<<"location">>, <<>>}) -> 46; +static_exact({<<"max-forwards">>, <<>>}) -> 47; +static_exact({<<"proxy-authenticate">>, <<>>}) -> 48; +static_exact({<<"proxy-authorization">>, <<>>}) -> 49; +static_exact({<<"range">>, <<>>}) -> 50; +static_exact({<<"referer">>, <<>>}) -> 51; +static_exact({<<"refresh">>, <<>>}) -> 52; +static_exact({<<"retry-after">>, <<>>}) -> 53; +static_exact({<<"server">>, <<>>}) -> 54; +static_exact({<<"set-cookie">>, <<>>}) -> 55; +static_exact({<<"strict-transport-security">>, <<>>}) -> 56; +static_exact({<<"transfer-encoding">>, <<>>}) -> 57; +static_exact({<<"user-agent">>, <<>>}) -> 58; +static_exact({<<"vary">>, <<>>}) -> 59; +static_exact({<<"via">>, <<>>}) -> 60; +static_exact({<<"www-authenticate">>, <<>>}) -> 61; +static_exact(_) -> undefined. + +static_name(<<":authority">>) -> 1; +static_name(<<":method">>) -> 2; +static_name(<<":path">>) -> 4; +static_name(<<":scheme">>) -> 6; +static_name(<<":status">>) -> 8; +static_name(<<"accept-charset">>) -> 15; +static_name(<<"accept-encoding">>) -> 16; +static_name(<<"accept-language">>) -> 17; +static_name(<<"accept-ranges">>) -> 18; +static_name(<<"accept">>) -> 19; +static_name(<<"access-control-allow-origin">>) -> 20; +static_name(<<"age">>) -> 21; +static_name(<<"allow">>) -> 22; +static_name(<<"authorization">>) -> 23; +static_name(<<"cache-control">>) -> 24; +static_name(<<"content-disposition">>) -> 25; +static_name(<<"content-encoding">>) -> 26; +static_name(<<"content-language">>) -> 27; +static_name(<<"content-length">>) -> 28; +static_name(<<"content-location">>) -> 29; +static_name(<<"content-range">>) -> 30; +static_name(<<"content-type">>) -> 31; +static_name(<<"cookie">>) -> 32; +static_name(<<"date">>) -> 33; +static_name(<<"etag">>) -> 34; +static_name(<<"expect">>) -> 35; +static_name(<<"expires">>) -> 36; +static_name(<<"from">>) -> 37; +static_name(<<"host">>) -> 38; +static_name(<<"if-match">>) -> 39; +static_name(<<"if-modified-since">>) -> 40; +static_name(<<"if-none-match">>) -> 41; +static_name(<<"if-range">>) -> 42; +static_name(<<"if-unmodified-since">>) -> 43; +static_name(<<"last-modified">>) -> 44; +static_name(<<"link">>) -> 45; +static_name(<<"location">>) -> 46; +static_name(<<"max-forwards">>) -> 47; +static_name(<<"proxy-authenticate">>) -> 48; +static_name(<<"proxy-authorization">>) -> 49; +static_name(<<"range">>) -> 50; +static_name(<<"referer">>) -> 51; +static_name(<<"refresh">>) -> 52; +static_name(<<"retry-after">>) -> 53; +static_name(<<"server">>) -> 54; +static_name(<<"set-cookie">>) -> 55; +static_name(<<"strict-transport-security">>) -> 56; +static_name(<<"transfer-encoding">>) -> 57; +static_name(<<"user-agent">>) -> 58; +static_name(<<"vary">>) -> 59; +static_name(<<"via">>) -> 60; +static_name(<<"www-authenticate">>) -> 61; +static_name(_) -> undefined. diff --git a/src/hpack_index.hrl b/src/hpack_index.hrl new file mode 100644 index 0000000..f430ad9 --- /dev/null +++ b/src/hpack_index.hrl @@ -0,0 +1,65 @@ + + +-define(STATIC_TABLE, { + {<<":authority">>, <<>>}, + {<<":method">>, <<"GET">>}, + {<<":method">>, <<"POST">>}, + {<<":path">>, <<"/">>}, + {<<":path">>, <<"/index.html">>}, + {<<":scheme">>, <<"http">>}, + {<<":scheme">>, <<"https">>}, + {<<":status">>, <<"200">>}, + {<<":status">>, <<"204">>}, + {<<":status">>, <<"206">>}, + {<<":status">>, <<"304">>}, + {<<":status">>, <<"400">>}, + {<<":status">>, <<"404">>}, + {<<":status">>, <<"500">>}, + {<<"accept-charset">>, <<>>}, + {<<"accept-encoding">>, <<"gzip, deflate">>}, + {<<"accept-language">>, <<>>}, + {<<"accept-ranges">>, <<>>}, + {<<"accept">>, <<>>}, + {<<"access-control-allow-origin">>, <<>>}, + {<<"age">>, <<>>}, + {<<"allow">>, <<>>}, + {<<"authorization">>, <<>>}, + {<<"cache-control">>, <<>>}, + {<<"content-disposition">>, <<>>}, + {<<"content-encoding">>, <<>>}, + {<<"content-language">>, <<>>}, + {<<"content-length">>, <<>>}, + {<<"content-location">>, <<>>}, + {<<"content-range">>, <<>>}, + {<<"content-type">>, <<>>}, + {<<"cookie">>, <<>>}, + {<<"date">>, <<>>}, + {<<"etag">>, <<>>}, + {<<"expect">>, <<>>}, + {<<"expires">>, <<>>}, + {<<"from">>, <<>>}, + {<<"host">>, <<>>}, + {<<"if-match">>, <<>>}, + {<<"if-modified-since">>, <<>>}, + {<<"if-none-match">>, <<>>}, + {<<"if-range">>, <<>>}, + {<<"if-unmodified-since">>, <<>>}, + {<<"last-modified">>, <<>>}, + {<<"link">>, <<>>}, + {<<"location">>, <<>>}, + {<<"max-forwards">>, <<>>}, + {<<"proxy-authenticate">>, <<>>}, + {<<"proxy-authorization">>, <<>>}, + {<<"range">>, <<>>}, + {<<"referer">>, <<>>}, + {<<"refresh">>, <<>>}, + {<<"retry-after">>, <<>>}, + {<<"server">>, <<>>}, + {<<"set-cookie">>, <<>>}, + {<<"strict-transport-security">>, <<>>}, + {<<"transfer-encoding">>, <<>>}, + {<<"user-agent">>, <<>>}, + {<<"vary">>, <<>>}, + {<<"via">>, <<>>}, + {<<"www-authenticate">>, <<>>} +}). \ No newline at end of file diff --git a/test/hpack_index_tests.erl b/test/hpack_index_tests.erl index 9edd583..75bfbc6 100644 --- a/test/hpack_index_tests.erl +++ b/test/hpack_index_tests.erl @@ -1,42 +1,135 @@ -module(hpack_index_tests). + +-include("../src/hpack_index.hrl"). -include_lib("eunit/include/eunit.hrl"). --compile([export_all]). + +size_test() -> + Ctx0 = hpack:new(), + ?assertEqual(0, hpack_index:size(Ctx0)), + ?assertEqual(4096, hpack_index:max_size(Ctx0)). + + +evict_one_test() -> + Ctx0 = hpack:new(64), + Ctx1 = hpack_index:add(Ctx0, <<"four">>, <<"four">>), + Ctx2 = hpack_index:add(Ctx1, <<"foo">>, <<"bar">>), + + ?assertEqual( + {40, [{1, <<"four">>, <<"four">>}]}, + hpack_index:table(Ctx1) + ), + ?assertEqual( + {38, [{1, <<"foo">>, <<"bar">>}]}, + hpack_index:table(Ctx2) + ). + + +evict_multiple_test() -> + Ctx0 = hpack:new(96), + Ctx1 = hpack_index:add(Ctx0, <<"four">>, <<"four">>), + Ctx2 = hpack_index:add(Ctx1, <<"foo">>, <<"bar">>), + Ctx3 = hpack_index:add(Ctx2, + <<"this-is-a-super-long-header-name">>, + <<"this-is-also-a-long-value">> + ), + + ?assertEqual({78, [ + {1, <<"foo">>, <<"bar">>}, + {2, <<"four">>, <<"four">>} + ]}, hpack_index:table(Ctx2)), + + ?assertEqual({89, [ + { + 1, + <<"this-is-a-super-long-header-name">>, + <<"this-is-also-a-long-value">> + } + ]}, hpack_index:table(Ctx3)). + + +evict_all_test() -> + Ctx0 = hpack:new(96), + Ctx1 = hpack_index:add(Ctx0, <<"four">>, <<"four">>), + Ctx2 = hpack_index:add(Ctx1, <<"foo">>, <<"bar">>), + Ctx3 = hpack_index:add(Ctx2, + <<"this-is-an-extra-super-duper-long-header-name">>, + <<"this-is-also-a-super-duper-extra-long-value">> + ), + + ?assertEqual({78, [ + {1, <<"foo">>, <<"bar">>}, + {2, <<"four">>, <<"four">>} + ]}, hpack_index:table(Ctx2)), + + ?assertEqual({0, []}, hpack_index:table(Ctx3)). + resize_test() -> - DT = hpack_index:new(64), - DT2 = hpack_index:add(<<"four">>,<<"four">>,DT), - ?assertEqual(40, hpack_index:table_size(DT2)), - DT3 = hpack_index:add(<<"--eight-">>,<<"--eight-">>,DT2), - ?assertEqual(48, hpack_index:table_size(DT3)), - ok. + Ctx0 = hpack:new(), + Ctx1 = hpack:resize(Ctx0, 2048), + Ctx2 = hpack_index:add(Ctx1, <<"four">>, <<"four">>), + Ctx3 = hpack_index:add(Ctx2, <<"foo">>, <<"bar">>), + Ctx4 = hpack_index:add(Ctx3, <<"baz">>, <<"boop">>), + + Table1 = {117, [ + {1, <<"baz">>, <<"boop">>}, + {2, <<"foo">>, <<"bar">>}, + {3, <<"four">>, <<"four">>} + ]}, + + ?assertEqual(Table1, hpack_index:table(Ctx4)), + ?assertEqual(Table1, hpack_index:table(hpack:resize(Ctx4, 4096))), + ?assertEqual({0, []}, hpack_index:table(hpack:resize(Ctx4, 0))), + + Table2 = {77, [ + {1, <<"baz">>, <<"boop">>}, + {2, <<"foo">>, <<"bar">>} + ]}, + ?assertEqual(Table2, hpack_index:table(hpack:resize(Ctx4, 100))), + + Table3 = {39, [ + {1, <<"baz">>, <<"boop">>} + ]}, + ?assertEqual(Table3, hpack_index:table(hpack:resize(Ctx4, 64))). -increase_max_size_test() -> - DT = hpack_index:new(64), - %% add data, less than max size - DT2 = hpack_index:add(<<"keyA">>, <<"valA">>, DT), - ?assertEqual(40, %% 32 + length("keyA") + length("valA") - hpack_index:table_size(DT2)), +index_not_found_test() -> + ?assertEqual(undefined, hpack_index:lookup(hpack:new(), 70)). - %% increase max size - DT3 = hpack_index:resize(128, DT2), - %% what fit before should still fit - ?assertEqual(hpack_index:table_size(DT2), - hpack_index:table_size(DT3)). +prefer_static_name_index_test() -> + Ctx = hpack_index:add(hpack:new(), <<"user-agent">>, <<"Firefox">>), + ?assertEqual( + {49, [{1, <<"user-agent">>, <<"Firefox">>}]}, + hpack_index:table(Ctx) + ), + ?assertEqual( + {name_indexed, 58}, + hpack_index:match(Ctx, {<<"user-agent">>, <<"Chrome">>}) + ). -decrease_max_size_test() -> - DT = hpack_index:new(64), - %% add data, less than max size - DT2 = hpack_index:add(<<"keyA">>, <<"valA">>, DT), - ?assertEqual(40, %% 32 + length("keyA") + length("valA") - hpack_index:table_size(DT2)), +match_static_exact_test() -> + Entries = tuple_to_list(?STATIC_TABLE), + Ctx = hpack:new(), + lists:foldl(fun(Entry, Idx) -> + ?assertEqual({hdr_indexed, Idx}, hpack_index:match(Ctx, Entry)), + Idx + 1 + end, 1, Entries). - %% reduce max size below current size - DT3 = hpack_index:resize(32, DT2), - %% the lone entry should have been removed, it didn't fit - ?assertEqual(0, hpack_index:table_size(DT3)). +match_static_name_test() -> + AllEntries = tuple_to_list(?STATIC_TABLE), + {_, Entries} = lists:foldl(fun({Name, _}, {Idx, EntryAcc}) -> + case lists:keyfind(Name, 1, EntryAcc) of + {_, _} -> {Idx + 1, EntryAcc}; + false -> {Idx + 1, [{Name, Idx} | EntryAcc]} + end + end, {1, []}, AllEntries), + Ctx = hpack:new(), + lists:foreach(fun({HdrName, Idx}) -> + Entry = {HdrName, undefined}, + ?assertEqual({name_indexed, Idx}, hpack_index:match(Ctx, Entry)) + end, Entries). \ No newline at end of file From a314f8a2293da1728e0178497b72056ee204c014 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:24:27 -0500 Subject: [PATCH 08/13] Fix hpack encoding/decoding --- src/hpack.erl | 515 ++++++++++++++++++++---------------- src/hpack.hrl | 40 +++ test/hpack_decode_tests.erl | 308 +++++++++++++++++++++ test/hpack_encode_tests.erl | 235 ++++++++++++++++ 4 files changed, 865 insertions(+), 233 deletions(-) create mode 100644 src/hpack.hrl create mode 100644 test/hpack_decode_tests.erl create mode 100644 test/hpack_encode_tests.erl diff --git a/src/hpack.erl b/src/hpack.erl index eddc031..8df6101 100644 --- a/src/hpack.erl +++ b/src/hpack.erl @@ -1,270 +1,319 @@ %% @doc %% The `hpack' module provides functions for working with HPACK as described in %% RFC 7541. - +%% %% @reference RFC 7541 -module(hpack). -%% API Exports + -export([ - new_context/0, - new_context/1, - decode/2, - encode/2, - new_max_table_size/2 - ]). - -%% Datatypes for the real world: --record(hpack_context, - { - dynamic_table = hpack_index:new(), - connection_max_table_size = 4096 :: non_neg_integer() - }). --type context() :: #hpack_context{}. - --export_type([context/0]). - --type header_name() :: binary(). --type header_value() :: binary(). --type header() :: {header_name(), header_value()}. --type headers() :: [header()]. + new/0, + new/1, + + resize/2, + + decode/2, + encode/2 +]). + + +-include("hpack.hrl"). + -export_type([ - header_name/0, - header_value/0, - header/0, - headers/0 - ]). + context/0, + + header_name/0, + header_value/0, + header_opt/0, + header/0, + headers/0, + + encode_error/0, + decode_error/0 +]). + + +%% @equiv new(4096) +-spec new() -> context(). +new() -> + #hpack_ctx{}. -%% @equiv new_context(4096) --spec new_context() -> context(). -new_context() -> #hpack_context{}. %% @doc -%% Returns a new HPACK context with the given `MaxTableSize' as the max table size. --spec new_context(non_neg_integer()) -> context(). -new_context(MaxTableSize) -> - #hpack_context{ - connection_max_table_size=MaxTableSize - }. +%% Returns a new HPACK context with the given `ConnMaxTableSize' +-spec new(non_neg_integer()) -> context(). +new(ConnMaxTableSize) -> + #hpack_ctx{ + max_size = min(ConnMaxTableSize, 4096), + conn_max_size = ConnMaxTableSize + }. + %% @doc -%% Updates the max table size of the given HPACK context (`Context') to the given -%% `NewSize'. -%% -%% Useful when HTTP/2 settings are renegotiated. --spec new_max_table_size(non_neg_integer(), context()) - -> context(). -new_max_table_size(NewSize, - #hpack_context{ - dynamic_table=T, - connection_max_table_size=OldSize - }=Context) -> - NewT = case OldSize > NewSize of - true -> - hpack_index:resize(NewSize, T); - _ -> - T - end, - Context#hpack_context{ - dynamic_table=NewT, - connection_max_table_size=NewSize - }. +%% Updates the max table size of the given HPACK +%% context to the given `NewSize'. `NewSize` must +%% not exceed the size specified when creating +%% the context. +-spec resize(context(), non_neg_integer()) -> context(). +resize(#hpack_ctx{} = Ctx, NewSize) when is_integer(NewSize) -> + #hpack_ctx{ + max_size = OldSize, + conn_max_size = ConnMaxSize + } = Ctx, + if NewSize =< ConnMaxSize -> ok; true -> + ?ERROR({invalid_table_size, NewSize}) + end, + case NewSize > OldSize of + true -> Ctx#hpack_ctx{max_size = NewSize}; + false -> hpack_index:resize(Ctx, NewSize) + end. + %% @doc -%% Encodes the given `Headers' using the given `Context'. +%% Encodes the given `Headers' using the given `Ctx'. %% -%% When successful, returns a `{ok, {EncodedHeaders, NewContext}}' tuple where -%% `EncodedHeaders' is a binary representing the encoded headers and `NewContext' -%% is the new HPACK context. +%% When successful, returns a `{ok, NewContext, EncodedHeaders}' +%% tuple where `EncodedHeaders' is a binary representing the +%% encoded headers and `NewContext' is the new HPACK context. %% %% For example: %% ``` %% Headers = [{<<":method">>, <<"GET">>}], -%% {ok, {EncodedHeaders, NewContext}} = hpack:encode(Headers, hpack:new_context()). +%% {ok, NewCtx EncodedHeaders} = hpack:encode(hpack:new(), Headers). %% ''' --spec encode(headers(), - context()) - -> {ok, {binary(), context()}} - | {error, term()}. -encode(Headers, Context) -> - encode(Headers, <<>>, Context). +-spec encode(context(), headers()) -> + {ok, context(), binary()} | + {error, encode_error()}. +encode(#hpack_ctx{} = Ctx, Headers) when is_list(Headers) -> + try + encode(Ctx, Headers, []) + catch throw:{hpack_error, Error} -> + {error, Error} + end. + %% @doc -%% Decodes the given binary into a list of headers using the given HPACK -%% context. +%% Decodes the provided binary `Bin` using the HPACK +%% context `Ctx`. %% -%% If successful, returns a `{ok, {Headers, NewContext}}' tuple where `Headers' -%% are the decoded headers and `NewContext' is the new HPACK context. +%% If successful, returns `{ok, NewCtx, Headers}' %% %% For example: %% ``` -%% {Headers, NewContext} = hpack:decode(Binary, OldContext). +%% {ok, NewCtx, Headers} = hpack:decode(OldCtx, Binary) %% ''' --spec decode(binary(), context()) -> - {ok, {headers(), context()}} - | {error, compression_error} - | {error, {compression_error, {bad_header_packet, binary()}}}. -decode(Bin, Context) -> - decode(Bin, [], Context). - -%% Private Functions - --spec decode(binary(), headers(), context()) - -> - {ok, {headers(), context()}} - | {error, compression_error} - | {error, {compression_error, {bad_header_packet, binary()}}}. -%% We're done decoding, return headers -decode(<<>>, HeadersAcc, C) -> - {ok, {HeadersAcc, C}}; -%% First bit is '1', so it's an 'Indexed Header Feild' -%% http://http2.github.io/http2-spec/compression.html#rfc.section.6.1 -decode(<<2#1:1,_/bits>>=B, HeaderAcc, Context) -> - decode_indexed_header(B, HeaderAcc, Context); -%% First two bits are '01' so it's a 'Literal Header Field with Incremental Indexing' -%% http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.1 -decode(<<2#01:2,_/bits>>=B, HeaderAcc, Context) -> - decode_literal_header_with_indexing(B, HeaderAcc, Context); - -%% First four bits are '0000' so it's a 'Literal Header Field without Indexing' -%% http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.2 -decode(<<2#0000:4,_/bits>>=B, HeaderAcc, Context) -> - decode_literal_header_without_indexing(B, HeaderAcc, Context); - -%% First four bits are '0001' so it's a 'Literal Header Field never Indexed' -%% http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.3 -decode(<<2#0001:4,_/bits>>=B, HeaderAcc, Context) -> - decode_literal_header_never_indexed(B, HeaderAcc, Context); - -%% First three bits are '001' so it's a 'Dynamic Table Size Update' -%% http://http2.github.io/http2-spec/compression.html#rfc.section.6.3 -decode(<<2#001:3,_/bits>>=B, HeaderAcc, Context) -> - decode_dynamic_table_size_update(B, HeaderAcc, Context); - -%% Oops! -decode(<>, _HeaderAcc, _Context) -> - {error, {compression_error, {bad_header_packet, B}}}. - -decode_indexed_header(<<2#1:1,B1/bits>>, - Acc, - Context = #hpack_context{dynamic_table=T}) -> - {Index, B2} = hpack_integer:decode(B1, 7), - decode(B2, Acc ++ [hpack_index:lookup(Index, T)], Context). - -%% The case where the field isn't indexed yet, but should be. -decode_literal_header_with_indexing(<<2#01:2,2#000000:6>>, _Acc, _Context) -> - {error, compression_error}; -decode_literal_header_with_indexing(<<2#01:2,2#000000:6,B1/bits>>, Acc, - #hpack_context{ - dynamic_table=T - }=Context) -> - {Str, B2} = hpack_string:decode(B1), +-spec decode(context(), binary()) -> + {ok, {headers(), context()}} | + {error, decode_error()}. +decode(#hpack_ctx{} = Ctx, Bin) when is_binary(Bin) -> + try + decode(Ctx, Bin, []) + catch throw:{hpack_error, Error} -> + {error, Error} + end. + + +encode(Ctx, [], Acc) -> + {ok, Ctx, iolist_to_binary(lists:reverse(Acc))}; + +encode(Ctx, [{Name, Value} | Tail], Acc) -> + encode(Ctx, [{Name, Value, []} | Tail], Acc); + +encode(Ctx, [{Name, Value, Opts} | Tail], Acc) + when is_binary(Name), is_binary(Value), is_list(Opts) -> + NeverIndex = lists:member(never_index, Opts), + NoIndex = lists:member(no_index, Opts), + NoNameIndex = lists:member(no_name_index, Opts), + + {NewCtx, Encoded} = if + NeverIndex and NoNameIndex -> + {Ctx, encode_never_index(Name, Value, Opts)}; + NeverIndex -> + {Ctx, encode_never_index(name_index(Ctx, Name), Value, Opts)}; + NoIndex and NoNameIndex -> + {Ctx, encode_no_index(Name, Value, Opts)}; + NoIndex -> + {Ctx, encode_no_index(name_index(Ctx, Name), Value, Opts)}; + true -> + case hpack_index:match(Ctx, {Name, Value}) of + {hdr_indexed, Idx} -> + {Ctx, encode_indexed(Idx)}; + {name_indexed, Idx} -> + { + hpack_index:add(Ctx, Name, Value), + encode_indexed(Idx, Value, Opts) + }; + not_indexed -> + { + hpack_index:add(Ctx, Name, Value), + encode_indexed(Name, Value, Opts) + } + end + end, + + encode(NewCtx, Tail, [Encoded | Acc]); + +encode(_Ctx, [InvalidHeader | _], _Acc) -> + ?ERROR({invalid_header, InvalidHeader}). + + +encode_never_index(Idx, Value, Opts) when is_integer(Idx) -> + Prefix = <<2#0001:4>>, + IdxBin = hpack_integer:encode(Idx, 4), + ValueBin = hpack_string:encode(Value, Opts), + <>; + +encode_never_index(Name, Value, Opts) when is_binary(Name) -> + Prefix = <<2#0001:4, 0:4>>, + NameBin = hpack_string:encode(Name, Opts), + ValueBin = hpack_string:encode(Value, Opts), + <>. + + +encode_no_index(Idx, Value, Opts) when is_integer(Idx) -> + Prefix = <<2#0000:4>>, + IdxBin = hpack_integer:encode(Idx, 4), + ValueBin = hpack_string:encode(Value, Opts), + <>; + +encode_no_index(Name, Value, Opts) when is_binary(Name) -> + Prefix = <<2#0000:4, 0:4>>, + NameBin = hpack_string:encode(Name, Opts), + ValueBin = hpack_string:encode(Value, Opts), + <>. + + +encode_indexed(Idx) -> + IdxBin = hpack_integer:encode(Idx, 7), + <<2#1:1, IdxBin/bits>>. + + +encode_indexed(Idx, Value, Opts) when is_integer(Idx) -> + Prefix = <<2#01:2>>, + IdxBin = hpack_integer:encode(Idx, 6), + ValueBin = hpack_string:encode(Value, Opts), + <>; + +encode_indexed(Name, Value, Opts) when is_binary(Name) -> + Prefix = <<2#01:2, 2#000000:6>>, + NameBin = hpack_string:encode(Name, Opts), + ValueBin = hpack_string:encode(Value, Opts), + <>. + + +name_index(Ctx, Name) when is_binary(Name) -> + case hpack_index:match(Ctx, {Name, undefined}) of + {_, Idx} when is_integer(Idx) -> Idx; + not_indexed -> Name + end. + + +decode(Ctx, <<>>, Acc) -> + {ok, Ctx, lists:reverse(Acc)}; + +decode(Ctx, <<2#1:1, _/bits>> = Bin, Acc) -> + decode_indexed(Ctx, Bin, Acc); + +decode(Ctx, <<2#01:2, _/bits>> = Bin, Acc) -> + decode_and_index(Ctx, Bin, Acc); + +decode(Ctx, <<2#0000:4, _/bits>> = Bin, Acc) -> + decode_no_index(Ctx, Bin, Acc); + +decode(Ctx, <<2#0001:4, _/bits>> = Bin, Acc) -> + decode_never_index(Ctx, Bin, Acc); + +decode(Ctx, <<2#001:3, _/bits>> = Bin, Acc) -> + decode_size_update(Ctx, Bin, Acc). + + +decode_indexed(_Ctx, <<2#1:1, 2#0000000:7, _/binary>>, _Acc) -> + ?ERROR({invalid_index, 0}); + +decode_indexed(Ctx, <<2#1:1, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 7), + Header = case hpack_index:lookup(Ctx, Idx) of + {N, V} -> {N, V, []}; + undefined -> ?ERROR({unknown_index, Idx}) + end, + decode(Ctx, B2, [Header | Acc]). + + +decode_and_index(Ctx, <<2#01:2, 2#000000:6, B1/bits>>, Acc) -> + {Name, B2} = hpack_string:decode(B1), + {Value, B3} = hpack_string:decode(B2), + Header = case hpack_string:any_uncompressed([B1, B2]) of + true -> {Name, Value, [uncompressed]}; + false -> {Name, Value, []} + end, + decode(hpack_index:add(Ctx, Name, Value), B3, [Header | Acc]); + +decode_and_index(Ctx, <<2#01:2, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 6), + Name = case hpack_index:lookup(Ctx, Idx) of + {N, _} -> N; + undefined -> ?ERROR({unknown_index, Idx}) + end, {Value, B3} = hpack_string:decode(B2), - decode(B3, - Acc ++ [{Str, Value}], - Context#hpack_context{dynamic_table=hpack_index:add(Str, Value, T)}); -%% This is the case when the index is greater than 0, 0 being not yet -%% indexed -decode_literal_header_with_indexing(<<2#01:2,B1/bits>>, Acc, - Context = #hpack_context{dynamic_table=T}) -> - {Index, Rem} = hpack_integer:decode(B1,6), - {Str, B2} = hpack_string:decode(Rem), - {Name,_} = - case hpack_index:lookup(Index, T) of - undefined -> - throw(undefined); - {N, V} -> - {N, V} + Header = case hpack_string:is_uncompressed(B2) of + true -> {Name, Value, [uncompressed]}; + false -> {Name, Value, []} end, - decode(B2, - Acc ++ [{Name, Str}], - Context#hpack_context{dynamic_table=hpack_index:add(Name, Str, T)}). + decode(hpack_index:add(Ctx, Name, Value), B3, [Header | Acc]). -decode_literal_header_without_indexing(<<2#0000:4,2#0000:4,B1/bits>>, Acc, - Context) -> - {Str, B2} = hpack_string:decode(B1), + +decode_no_index(Ctx, <<2#0000:4, 2#0000:4, B1/bits>>, Acc) -> + {Name, B2} = hpack_string:decode(B1), {Value, B3} = hpack_string:decode(B2), - decode(B3, Acc ++ [{Str, Value}], Context); -decode_literal_header_without_indexing(<<2#0000:4,B1/bits>>, Acc, - Context = #hpack_context{dynamic_table=T}) -> - {Index, Rem} = hpack_integer:decode(B1,4), - {Str, B2} = hpack_string:decode(Rem), - {Name,_}= hpack_index:lookup(Index, T), - decode(B2, Acc ++ [{Name, Str}], Context). - -decode_literal_header_never_indexed(<<2#0001:4,2#0000:4,B1/bits>>, Acc, - Context) -> - {Str, B2} = hpack_string:decode(B1), + Header = case hpack_string:any_uncompressed([B1, B2]) of + true -> {Name, Value, [uncompressed, no_index, no_name_index]}; + false -> {Name, Value, [no_index, no_name_index]} + end, + decode(Ctx, B3, [Header | Acc]); + +decode_no_index(Ctx, <<2#0000:4, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 4), + Name = case hpack_index:lookup(Ctx, Idx) of + {N, _} -> N; + undefined -> ?ERROR({unknown_index, Idx}) + end, {Value, B3} = hpack_string:decode(B2), - decode(B3, Acc ++ [{Str, Value}], Context); -decode_literal_header_never_indexed(<<2#0001:4,B1/bits>>, Acc, - Context = #hpack_context{dynamic_table=T}) -> - {Index, Rem} = hpack_integer:decode(B1,4), - {Str, B2} = hpack_string:decode(Rem), - {Name,_}= hpack_index:lookup(Index, T), - decode(B2, Acc ++ [{Name, Str}], Context). - -decode_dynamic_table_size_update( - <<2#001:3,Bin/bits>>, []=Acc, - #hpack_context{ - dynamic_table=T, - connection_max_table_size=ConnMaxSize - }=Context - ) -> - {NewSize, Rem} = hpack_integer:decode(Bin,5), - case ConnMaxSize >= NewSize of - true -> - decode(Rem, - Acc, - Context#hpack_context{ - dynamic_table=hpack_index:resize(NewSize, T) - }); - _ -> - {error, compression_error} - end. + Header = case hpack_string:is_uncompressed(B2) of + true -> {Name, Value, [uncompressed, no_index]}; + false -> {Name, Value, [no_index]} + end, + decode(Ctx, B3, [Header | Acc]). --spec encode(headers(), - binary(), - context()) -> - {ok, {binary(), context()}} - | {error, term()}. -encode([], Acc, Context) -> - {ok, {Acc, Context}}; -encode([{HeaderName, HeaderValue}|Tail], B, Context = #hpack_context{dynamic_table=T}) -> - {BinToAdd, NewContext} = case hpack_index:match({HeaderName, HeaderValue}, T) of - {indexed, I} -> - {encode_indexed(I), Context}; - {literal_with_indexing, I} -> - {encode_literal_indexed(I, HeaderValue), - Context#hpack_context{dynamic_table=hpack_index:add(HeaderName, HeaderValue, T)}}; - {literal_wo_indexing, _X} -> - {encode_literal_wo_index(HeaderName, HeaderValue), - Context#hpack_context{dynamic_table=hpack_index:add(HeaderName, HeaderValue, T)}} + +decode_never_index(Ctx, <<2#0001:4, 2#0000:4, B1/bits>>, Acc) -> + {Name, B2} = hpack_string:decode(B1), + {Value, B3} = hpack_string:decode(B2), + Header = case hpack_string:any_uncompressed([B1, B2]) of + true -> {Name, Value, [uncompressed, never_index, no_name_index]}; + false -> {Name, Value, [never_index, no_name_index]} end, - NewB = <>, - encode(Tail, NewB, NewContext). - -encode_indexed(I) when I < 63 -> - <<2#1:1,I:7>>; -encode_indexed(I) -> - Encoded = hpack_integer:encode(I, 7), - <<2#1:1, Encoded/bits>>. - -encode_literal_indexed(I, Value) when I < 63 -> - BinToAdd = encode_literal(Value), - <<2#01:2,I:6,BinToAdd/binary>>; -encode_literal_indexed(I, Value) -> - Index = hpack_integer:encode(I, 6), - BinToAdd = encode_literal(Value), - <<2#01:2,Index/bits,BinToAdd/binary>>. - -encode_literal(Value) -> - L = hpack_integer:encode(size(Value),7), - <<2#0:1,L/bits,Value/binary>>. - -encode_literal_wo_index(Name, Value) -> - EncName = encode_literal(Name), - EncValue = encode_literal(Value), - <<2#01000000,EncName/binary,EncValue/binary>>. + decode(Ctx, B3, [Header | Acc]); + +decode_never_index(Ctx, <<2#0001:4, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 4), + Name = case hpack_index:lookup(Ctx, Idx) of + {N, _} -> N; + undefined -> ?ERROR({unknown_index, Idx}) + end, + {Value, B3} = hpack_string:decode(B2), + Header = case hpack_string:is_uncompressed(B2) of + true -> {Name, Value, [uncompressed, never_index]}; + false -> {Name, Value, [never_index]} + end, + decode(Ctx, B3, [Header | Acc]). + + +% TODO: Test whether resize has to precede all headers +decode_size_update(Ctx, <<2#001:3, B1/bits>>, []) -> + {NewSize, B2} = hpack_integer:decode(B1, 5), + decode(resize(Ctx, NewSize), B2, []); + +decode_size_update(_Ctx, _Bin, Acc) when length(Acc) > 0 -> + ?ERROR({invalid_size_update, headers_received}). diff --git a/src/hpack.hrl b/src/hpack.hrl new file mode 100644 index 0000000..05c60ca --- /dev/null +++ b/src/hpack.hrl @@ -0,0 +1,40 @@ + +-record(hpack_ctx, { + table = [] :: [{pos_integer(), header_name(), header_value()}], + cur_size = 0 :: non_neg_integer(), + max_size = 4096 :: non_neg_integer(), + conn_max_size = 4096 :: non_neg_integer() +}). + + +-define(DYNAMIC_TABLE_MIN_INDEX, 62). +-define(ERROR(Reason), throw({hpack_error, Reason})). + + +-type context() :: #hpack_ctx{}. +-type header_name() :: binary(). +-type header_value() :: binary(). +-type header_opt() :: never_index | no_index | no_name_index | uncompressed. +-type header() :: {header_name(), header_value(), [header_opt()]}. +-type headers() :: [header()]. +-type index_entry() :: {pos_integer(), header_name(), header_value()}. + + +-type encode_error() :: + {invalid_table_size, integer()}. + + +-type decode_error() :: + {invalid_packet, binary()} | + {invalid_index, integer()} | + {invalid_size_update, integer()} | + {invalid_huffman_encoding, partial_code} | + {invalid_huffman_encoding, internal_eos}. + + +-type match_result() :: + {hdr_indexed, pos_integer()} | + {name_indexed, pos_integer()} | + no_index_entry. + + diff --git a/test/hpack_decode_tests.erl b/test/hpack_decode_tests.erl new file mode 100644 index 0000000..13c22a2 --- /dev/null +++ b/test/hpack_decode_tests.erl @@ -0,0 +1,308 @@ +-module(hpack_decode_tests). + +-include_lib("eunit/include/eunit.hrl"). + + +decode_static_indexed_test() -> + Encoded = <<2#1:1, 2#0000010:7>>, + Decoded = [{<<":method">>, <<"GET">>}], + + {ok, _, Result} = hpack:decode(hpack:new(), Encoded), + ?assert(hpack_tutil:headers_equal(Decoded, Result)). + + +decode_known_name_incremental_index_test() -> + AddToIndex = <<2#01:2>>, % Add to index + + IndexedUA = << + 2#111010:6 % Static table index: 58 user-agent + >>, + + CompFF = << + 2#1:1, % compressed + 2#0000110:7, % 6 bytes + 194, 107, 11, 41, 252, 255 % data + >>, + + UncompFF = << + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + Combinations = [ + [AddToIndex, IndexedUA, CompFF], + [AddToIndex, IndexedUA, UncompFF] + ], + + check_combinations(Combinations, [{<<"user-agent">>, <<"Firefox">>}]). + + +decode_unknown_name_incremental_index_test() -> + AddToIndex = <<2#01:2>>, % Add to index + NoNameIndex = <<2#000000:6>>, % No name index + + CompName = << + 2#1:1, % Compressed + 2#0001000:7, % 8 bytes + 37, 168, 73, 233, + 90, 161, 210, 95 % compressed: custom-name + >>, + + UncompName = << + 2#0:1, % Uncompressed + 2#0001011:7, % 11 bytes + "custom-name" % data + >>, + + CompValue = << + 2#1:1, % compressed + 2#0001001:7, % 9 bytes + 37, 168, 73, 233, + 91, 184, 232, 180, + 191 % compressed: custom-value + >>, + + UncompValue = << + 2#0:1, % Uncompressed + 2#0001100:7, % 12 bytes + "custom-value" % data + >>, + + Combinations = [ + [AddToIndex, NoNameIndex, CompName, CompValue], + [AddToIndex, NoNameIndex, UncompName, UncompValue] + ], + + check_combinations(Combinations, [{<<"custom-name">>, <<"custom-value">>}]). + + +decode_unindexed_test() -> + NoIndex = <<2#0000:4>>, % Don't index this header + NeverIndex = <<2#0001:4>>, % Never index this header + + NoNameIndex = <<2#0000:4>>, % 0 indicates name follows + + IndexedUA = << + 2#1111:4, 2#00101011:8 % Static table index: 58 user-agent + >>, + + CompUA = << + 2#1:1, % huffman encoded + 2#0000111:7, % number of bytes + 181, 5, 177, 97, 204, 90, 147 % compressed: user-agent + >>, + + UncompUA = << + 2#0:1, % uncompressed + 2#0001010:7, % 10 bytes + "user-agent" % data + >>, + + CompFF = << + 2#1:1, % compressed + 2#0000110:7, % 6 bytes + 194, 107, 11, 41, 252, 255 % data + >>, + + UncompFF = << + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + Combinations = [ + [NoIndex, IndexedUA, CompFF], + [NeverIndex, IndexedUA, CompFF], + [NoIndex, NoNameIndex, CompUA, CompFF], + [NeverIndex, NoNameIndex, CompUA, CompFF], + [NoIndex, IndexedUA, UncompFF], + [NeverIndex, IndexedUA, UncompFF], + [NoIndex, NoNameIndex, UncompUA, UncompFF], + [NeverIndex, NoNameIndex, UncompUA, UncompFF] + ], + + check_combinations(Combinations, [{<<"user-agent">>, <<"Firefox">>}]). + + +decode_unknown_name_unindexed_test() -> + NoIndex = <<2#0000:4>>, % Don't index this header + NeverIndex = <<2#0001:4>>, % Never index this header + NoNameIndex = <<2#0000:4>>, % No name index + + CompName = << + 2#1:1, % Compressed + 2#0001000:7, % 8 bytes + 37, 168, 73, 233, + 90, 161, 210, 95 % compressed: custom-name + >>, + + UncompName = << + 2#0:1, % Uncompressed + 2#0001011:7, % 11 bytes + "custom-name" % data + >>, + + CompValue = << + 2#1:1, % compressed + 2#0001001:7, % 9 bytes + 37, 168, 73, 233, + 91, 184, 232, 180, + 191 % compressed: custom-value + >>, + + UncompValue = << + 2#0:1, % Uncompressed + 2#0001100:7, % 12 bytes + "custom-value" % data + >>, + + Combinations = [ + [NoIndex, NoNameIndex, CompName, CompValue], + [NeverIndex, NoNameIndex, CompName, CompValue], + [NoIndex, NoNameIndex, CompName, CompValue], + [NeverIndex, NoNameIndex, CompName, CompValue], + [NoIndex, NoNameIndex, UncompName, UncompValue], + [NeverIndex, NoNameIndex, UncompName, UncompValue], + [NoIndex, NoNameIndex, UncompName, UncompValue], + [NeverIndex, NoNameIndex, UncompName, UncompValue] + ], + + check_combinations(Combinations, [{<<"custom-name">>, <<"custom-value">>}]). + + +decode_size_update_test() -> + Encoded = << + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + Ctx1 = hpack:new(), + {ok, Ctx2, []} = hpack:decode(Ctx1, Encoded), + + ?assertEqual(4096, hpack_index:max_size(Ctx1)), + ?assertEqual(2048, hpack_index:max_size(Ctx2)). + + +decode_multiple_size_updates_test() -> + Encoded = << + 2#001:3, % Size update + 2#00000:5, % Integer: 0 + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + + Ctx1 = hpack:new(), + {ok, Ctx2, []} = hpack:decode(Ctx1, Encoded), + + ?assertEqual(4096, hpack_index:max_size(Ctx1)), + ?assertEqual(2048, hpack_index:max_size(Ctx2)). + + +decode_invalid_indexed_header_test() -> + Encoded = << + 2#1:1, % Indexed header + 2#0000000:7 % Index: 0 + >>, + ?assertEqual( + {error, {invalid_index, 0}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_unknown_indexed_header_test() -> + Encoded = << + 2#1:1, % Indexed header + 2#1111110:7 % Index: 126 + >>, + ?assertEqual( + {error, {unknown_index, 126}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_unknown_index_name_test() -> + Encoded = << + 2#01:2, % Add to index + 2#111110:6, % Index: 62 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual( + {error, {unknown_index, 62}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_unknown_index_name_no_index_test() -> + Encoded = << + 2#0000:4, % Don't index + 2#1111:4, + 2#01101111:8, % Index: 126 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual( + {error, {unknown_index, 126}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_unknown_index_name_never_index_test() -> + Encoded = << + 2#0001:4, % Don't index + 2#1111:4, + 2#01101111:8, % Index: 126 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual( + {error, {unknown_index, 126}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_size_update_too_large_test() -> + Encoded = << + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#01111111:8 % Integer: 16,384 + >>, + ?assertEqual( + {error, {invalid_table_size, 16384}}, + hpack:decode(hpack:new(), Encoded) + ). + + +decode_invalid_size_update_test() -> + % RFC 7541 Section 4.2 says size updates have + % to happen at the beginning of a header block + + Encoded = << + 2#1:1, % Indexed header + 2#0000010:7, % Index 2: :method GET + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + + ?assertEqual( + {error, {invalid_size_update, headers_received}}, + hpack:decode(hpack:new(), Encoded) + ). + + +check_combinations(Combinations, Headers) -> + lists:foreach(fun(Parts) -> + <> = list_to_bitstring(Parts), + {ok, _, Result} = hpack:decode(hpack:new(), Encoded), + ?assert(hpack_tutil:headers_equal(Headers, Result)) + end, Combinations). diff --git a/test/hpack_encode_tests.erl b/test/hpack_encode_tests.erl new file mode 100644 index 0000000..64d6cf7 --- /dev/null +++ b/test/hpack_encode_tests.erl @@ -0,0 +1,235 @@ +-module(hpack_encode_tests). + +-include_lib("eunit/include/eunit.hrl"). + + +encode_static_indexed_test() -> + Encoded = <<2#1:1, 2#0000010:7>>, + ?assertMatch( + {ok, _, Encoded}, + hpack:encode(hpack:new(), [{<<":method">>, <<"GET">>}]) + ). + + +encode_known_name_incremental_index_test() -> + AddToIndex = <<2#01:2>>, % Add to index + + IndexedUA = << + 2#111010:6 % Static table index: 58 user-agent + >>, + + CompFF = << + 2#1:1, % compressed + 2#0000110:7, % 6 bytes + 194, 107, 11, 41, 252, 255 % data + >>, + + UncompFF = << + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + Combinations = [ + {[], [AddToIndex, IndexedUA, CompFF]}, + {[uncompressed], [AddToIndex, IndexedUA, UncompFF]} + ], + + check_combinations(Combinations, <<"user-agent">>, <<"Firefox">>). + + +encode_unknown_name_incremental_index_test() -> + AddToIndex = <<2#01:2>>, % Add to index + NoNameIndex = <<2#000000:6>>, % No name index + + CompName = << + 2#1:1, % Compressed + 2#0001000:7, % 8 bytes + 37, 168, 73, 233, + 90, 161, 210, 95 % compressed: custom-name + >>, + + UncompName = << + 2#0:1, % Uncompressed + 2#0001011:7, % 11 bytes + "custom-name" % data + >>, + + CompValue = << + 2#1:1, % compressed + 2#0001001:7, % 9 bytes + 37, 168, 73, 233, + 91, 184, 232, 180, + 191 % compressed: custom-value + >>, + + UncompValue = << + 2#0:1, % Uncompressed + 2#0001100:7, % 12 bytes + "custom-value" % data + >>, + + Combinations = [ + {[], [AddToIndex, NoNameIndex, CompName, CompValue]}, + {[uncompressed], [AddToIndex, NoNameIndex, UncompName, UncompValue]} + ], + + check_combinations(Combinations, <<"custom-name">>, <<"custom-value">>). + + +encode_unindexed_test() -> + NoIndex = <<2#0000:4>>, % Don't index this header + NeverIndex = <<2#0001:4>>, % Never index this header + + NoNameIndex = <<2#0000:4>>, % 0 indicates name follows + + IndexedUA = << + 2#1111:4, 2#00101011:8 % Static table index: 58 user-agent + >>, + + CompUA = << + 2#1:1, % huffman encoded + 2#0000111:7, % number of bytes + 181, 5, 177, 97, 204, 90, 147 % compressed: user-agent + >>, + + UncompUA = << + 2#0:1, % uncompressed + 2#0001010:7, % 10 bytes + "user-agent" % data + >>, + + CompFF = << + 2#1:1, % compressed + 2#0000110:7, % 6 bytes + 194, 107, 11, 41, 252, 255 % data + >>, + + UncompFF = << + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + Combinations = [ + { + [no_index], + [NoIndex, IndexedUA, CompFF] + }, + { + [never_index], + [NeverIndex, IndexedUA, CompFF] + }, + { + [no_index, no_name_index], + [NoIndex, NoNameIndex, CompUA, CompFF] + }, + { + [never_index, no_name_index], + [NeverIndex, NoNameIndex, CompUA, CompFF] + }, + { + [no_index, uncompressed], + [NoIndex, IndexedUA, UncompFF] + }, + { + [never_index, uncompressed], + [NeverIndex, IndexedUA, UncompFF] + }, + { + [no_index, no_name_index, uncompressed], + [NoIndex, NoNameIndex, UncompUA, UncompFF] + }, + { + [never_index, no_name_index, uncompressed], + [NeverIndex, NoNameIndex, UncompUA, UncompFF] + } + ], + + check_combinations(Combinations, <<"user-agent">>, <<"Firefox">>). + + +encode_unknown_name_unindexed_test() -> + NoIndex = <<2#0000:4>>, % Don't index this header + NeverIndex = <<2#0001:4>>, % Never index this header + NoNameIndex = <<2#0000:4>>, % No name index + + CompName = << + 2#1:1, % Compressed + 2#0001000:7, % 8 bytes + 37, 168, 73, 233, + 90, 161, 210, 95 % compressed: custom-name + >>, + + UncompName = << + 2#0:1, % Uncompressed + 2#0001011:7, % 11 bytes + "custom-name" % data + >>, + + CompValue = << + 2#1:1, % compressed + 2#0001001:7, % 9 bytes + 37, 168, 73, 233, + 91, 184, 232, 180, + 191 % compressed: custom-value + >>, + + UncompValue = << + 2#0:1, % Uncompressed + 2#0001100:7, % 12 bytes + "custom-value" % data + >>, + + Combinations = [ + { + [no_index], + [NoIndex, NoNameIndex, CompName, CompValue] + }, + { + [never_index], + [NeverIndex, NoNameIndex, CompName, CompValue] + }, + { + [no_index, no_name_index], + [NoIndex, NoNameIndex, CompName, CompValue] + }, + { + [never_index, no_name_index], + [NeverIndex, NoNameIndex, CompName, CompValue] + }, + { + [no_index, uncompressed], + [NoIndex, NoNameIndex, UncompName, UncompValue] + }, + { + [never_index, uncompressed], + [NeverIndex, NoNameIndex, UncompName, UncompValue] + }, + { + [no_index, no_name_index, uncompressed], + [NoIndex, NoNameIndex, UncompName, UncompValue] + }, + { + [never_index, no_name_index, uncompressed], + [NeverIndex, NoNameIndex, UncompName, UncompValue] + } + ], + + check_combinations(Combinations, <<"custom-name">>, <<"custom-value">>). + + +encode_invalid_header_test() -> + ?assertEqual( + {error, {invalid_header, foo}}, + hpack:encode(hpack:new(), [foo]) + ). + + +check_combinations(Combinations, Name, Value) -> + lists:foreach(fun({Opts, Parts}) -> + <> = list_to_bitstring(Parts), + Headers = [{Name, Value, Opts}], + {ok, _, Result} = hpack:encode(hpack:new(), Headers), + ?assertEqual(Expect, Result) + end, Combinations). From d9a4dd757708d1a1d2fdc68ded97fa32e2d64f4e Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:27:27 -0500 Subject: [PATCH 09/13] Remove old test suite --- test/hpack_tests.erl | 277 ------------------------------------------- 1 file changed, 277 deletions(-) delete mode 100644 test/hpack_tests.erl diff --git a/test/hpack_tests.erl b/test/hpack_tests.erl deleted file mode 100644 index 40b9d49..0000000 --- a/test/hpack_tests.erl +++ /dev/null @@ -1,277 +0,0 @@ --module(hpack_tests). - --include_lib("eunit/include/eunit.hrl"). - --compile([export_all]). - -basic_nghttp2_request_test() -> - Bin = <<130,132,134,65,138,160,228,29,19,157,9,184,240,30,7,83,3,42,47,42,144, - 122,138,170,105,210,154,196,192,23,117,119,127>>, - - {ok, - {Decoded=[H1,H2,H3,H4,H5,H6,H7], _DC}} = hpack:decode(Bin, hpack:new_context()), - % :method: GET - ?assertEqual({<<":method">>, <<"GET">>},H1), - % :path: / - ?assertEqual({<<":path">>, <<"/">>},H2), - % :scheme: http - ?assertEqual({<<":scheme">>, <<"http">>},H3), - % :authority: localhost:8080 - ?assertEqual({<<":authority">>, <<"localhost:8080">>},H4), - % accept: */* - ?assertEqual({<<"accept">>, <<"*/*">>},H5), - % accept-encoding: gzip, deflate - ?assertEqual({<<"accept-encoding">>, <<"gzip, deflate">>},H6), - % user-agent: nghttp2/0.7.7 - ?assertEqual({<<"user-agent">>, <<"nghttp2/0.7.7">>},H7), - - - {ok, {ReEncoded, _EncodeContext}} = hpack:encode([H1,H2,H3,H4,H5,H6,H7], hpack:new_context()), - {ok, {ReDecoded, _}} = hpack:decode(ReEncoded, hpack:new_context()), - io:format("Original : ~p~n", [Bin]), - io:format("ReEncoded: ~p~n", [ReEncoded]), - io:format("ReDecoded: ~p~n", [ReDecoded]), - - ?assertEqual(Decoded, ReDecoded), - ok. - -decode_1_test() -> - Bin = <<130,132,134,65,138,160,228,29,19,157,9,184,240,30,15,83,3,42,47,42, - 144,122,138,170,105,210,154,196,192,23,117,112,135,64,135,242,178, - 125,117,73,236,175,1,66,126,1,79,64,133,242,181,37,63,143,1,112,126, - 1,116,127,1,1,116>>, - {ok, {[ - H1,H2,H3,H4,H5,H6,H7,H8,H9,H10,H11,H12 - ], _DC}} = hpack:decode(Bin, hpack:new_context()), - - ?assertEqual({<<":method">>, <<"GET">>},H1), - ?assertEqual({<<":path">>, <<"/">>},H2), - ?assertEqual({<<":scheme">>, <<"http">>},H3), - ?assertEqual({<<":authority">>, <<"localhost:8081">>},H4), - ?assertEqual({<<"accept">>, <<"*/*">>},H5), - ?assertEqual({<<"accept-encoding">>, <<"gzip, deflate">>},H6), - ?assertEqual({<<"user-agent">>, <<"nghttp2/0.7.11">>},H7), - ?assertEqual({<<"x-tyktorp">>, <<"B">>},H8), - ?assertEqual({<<"x-tyktorp">>, <<"O">>},H9), - ?assertEqual({<<"x-meow">>, <<"p">>},H10), - ?assertEqual({<<"x-meow">>, <<"t">>},H11), - ?assertEqual({<<"x-tyktorp">>, <<"t">>},H12), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.1 -decode_c_2_1_test() -> - Bin = <<16#40,16#0a,16#63,16#75,16#73,16#74,16#6f,16#6d,16#2d,16#6b,16#65, - 16#79,16#0d,16#63,16#75,16#73,16#74,16#6f,16#6d,16#2d,16#68,16#65, - 16#61,16#64,16#65,16#72>>, - BinStr = <<"@\ncustom-key\rcustom-header">>, - ?assertEqual(Bin, BinStr), - %% 400a 6375 7374 6f6d 2d6b 6579 0d63 7573 | @.custom-key.cus - %% 746f 6d2d 6865 6164 6572 | tom-header - {ok, {[H1],_DC}} = hpack:decode(Bin, hpack:new_context()), - ?assertEqual({<<"custom-key">>, <<"custom-header">>}, H1), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.2 -decode_c_2_2_test() -> - Bin = <<16#04,16#0c,16#2f,16#73,16#61,16#6d,16#70,16#6c,16#65, - 16#2f,16#70,16#61,16#74,16#68>>, - %% input| 040c 2f73 616d 706c 652f 7061 7468 - %% out | :path: /sample/path - {ok, {[H1],_DC}} = hpack:decode(Bin, hpack:new_context()), - ?assertEqual({<<":path">>, <<"/sample/path">>}, H1), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.3 -decode_c_2_3_test() -> - Bin = <<16#10, 16#08, 16#70, 16#61, 16#73, 16#73, 16#77, 16#6f, - 16#72, 16#64, 16#06, 16#73, 16#65, 16#63, 16#72, 16#65, 16#74>>, - - %% input| 1008 7061 7373 776f 7264 0673 6563 7265 74 - %% out | password: secret - {ok, {[H1],_DC}} = hpack:decode(Bin, hpack:new_context()), - ?assertEqual({<<"password">>, <<"secret">>}, H1), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.4 -decode_c_2_4_test() -> - Bin = <<16#82>>, - %% input| 82 - %% out | :method: GET - {ok, {[H1],_DC}} = hpack:decode(Bin, hpack:new_context()), - ?assertEqual({<<":method">>, <<"GET">>}, H1), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.3.1 -decode_c_3_test() -> - C_3_1 = <<16#82, 16#86, 16#84, 16#41, 16#0f, 16#77, 16#77, 16#77, - 16#2e, 16#65, 16#78, 16#61, 16#6d, 16#70, 16#6c, 16#65, - 16#2e, 16#63, 16#6f, 16#6d >>, - {ok, {[R1H1, R1H2, R1H3, R1H4], DC2}} = hpack:decode(C_3_1, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<":method">>, <<"GET">>}, R1H1), - ?assertEqual({<<":scheme">>, <<"http">>}, R1H2), - ?assertEqual({<<":path">>, <<"/">>}, R1H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R1H4), - - C_3_2 = <<16#82, 16#86, 16#84, 16#be, 16#58, 16#08, 16#6e, 16#6f, - 16#2d, 16#63, 16#61, 16#63, 16#68, 16#65>>, - {ok, {[R2H1, R2H2, R2H3, R2H4, R2H5], DC3}} = hpack:decode(C_3_2, DC2), - io:format("DC3: ~p", [DC3]), - - ?assertEqual({<<":method">>, <<"GET">>}, R2H1), - ?assertEqual({<<":scheme">>, <<"http">>}, R2H2), - ?assertEqual({<<":path">>, <<"/">>}, R2H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R2H4), - ?assertEqual({<<"cache-control">>, <<"no-cache">>}, R2H5), - - C_3_3 = <<16#82, 16#87, 16#85, 16#bf, 16#40, 16#0a, 16#63, 16#75, - 16#73, 16#74, 16#6f, 16#6d, 16#2d, 16#6b, 16#65, 16#79, - 16#0c, 16#63, 16#75, 16#73, 16#74, 16#6f, 16#6d, 16#2d, - 16#76, 16#61, 16#6c, 16#75, 16#65>>, - {ok, {[R3H1, R3H2, R3H3, R3H4, R3H5], DC4}} = hpack:decode(C_3_3, DC3), - io:format("DC4: ~p", [DC4]), - ?assertEqual({<<":method">> , <<"GET">>} , R3H1), - ?assertEqual({<<":scheme">> , <<"https">>} , R3H2), - ?assertEqual({<<":path">> , <<"/index.html">>} , R3H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R3H4), - ?assertEqual({<<"custom-key">>, <<"custom-value">>} , R3H5), - ok. - -% http://http2.github.io/http2-spec/compression.html#rfc.section.C.4.1 -decode_c_4_test() -> - C_4_1 = <<16#82, 16#86, 16#84, 16#41, 16#8c, 16#f1, 16#e3, 16#c2, - 16#e5, 16#f2, 16#3a, 16#6b, 16#a0, 16#ab, 16#90, 16#f4, - 16#ff>>, - {ok, {[R1H1, R1H2, R1H3, R1H4], DC2}} = hpack:decode(C_4_1, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<":method">>, <<"GET">>}, R1H1), - ?assertEqual({<<":scheme">>, <<"http">>}, R1H2), - ?assertEqual({<<":path">>, <<"/">>}, R1H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R1H4), - - C_4_2 = <<16#82, 16#86, 16#84, 16#be, 16#58, 16#86, - 16#a8, 16#eb, 16#10, 16#64, 16#9c, 16#bf>>, - {ok, {[R2H1, R2H2, R2H3, R2H4, R2H5], DC3}} = hpack:decode(C_4_2, DC2), - io:format("DC3: ~p", [DC3]), - - ?assertEqual({<<":method">>, <<"GET">>}, R2H1), - ?assertEqual({<<":scheme">>, <<"http">>}, R2H2), - ?assertEqual({<<":path">>, <<"/">>}, R2H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R2H4), - ?assertEqual({<<"cache-control">>, <<"no-cache">>}, R2H5), - - C_4_3 = <<16#82, 16#87, 16#85, 16#bf, 16#40, 16#88, 16#25, 16#a8, - 16#49, 16#e9, 16#5b, 16#a9, 16#7d, 16#7f, 16#89, 16#25, - 16#a8, 16#49, 16#e9, 16#5b, 16#b8, 16#e8, 16#b4, 16#bf>>, - {ok, {[R3H1, R3H2, R3H3, R3H4, R3H5], DC4}} = hpack:decode(C_4_3, DC3), - io:format("DC4: ~p", [DC4]), - ?assertEqual({<<":method">> , <<"GET">>} , R3H1), - ?assertEqual({<<":scheme">> , <<"https">>} , R3H2), - ?assertEqual({<<":path">> , <<"/index.html">>} , R3H3), - ?assertEqual({<<":authority">>, <<"www.example.com">>}, R3H4), - ?assertEqual({<<"custom-key">>, <<"custom-value">>} , R3H5), - ok. - -hpack_c_1_1_test() -> - Encoded = hpack_integer:encode(10, 5), - ?assertEqual(<<10:5>>, Encoded), - ok. - -hpack_c_1_2_test() -> - Encoded = hpack_integer:encode(1337, 5), - ?assertEqual(<<252,208,10:5>>, Encoded), - ok. - -hpack_c_2_4_test() -> - EncodedInt = hpack_integer:encode(2,7), - ?assertEqual(<<2:7>>, EncodedInt), - {ok, {Encoded, _}} = hpack:encode([{<<":method">>, <<"GET">>}], hpack:new_context()), - ?assertEqual(<<16#82>>, Encoded), - ok. - -%%encode_indexed_test() -> -%% ?assertEqual(<<2#11111110>>, hpack:encode_indexed(62)), -%% ?assertEqual(<<2#11111111>>, hpack:encode_indexed(63)), -%% -%% ok. - -% Regression tests -decode_indexed_static_test() -> - Bin = <<2#10001000>>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<":status">>, <<"200">>}, H1), - ok. - -decode_literal_incremental_indexing_indexed_test() -> - Bin = <<2#01000100, 2#00000101, "/test">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<":path">>, <<"/test">>}, H1), - ok. - -decode_literal_incremental_indexing_new_test() -> - Bin = <<2#01000000, 2#00001010, "custom-key", 2#00001100, "custom-value">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<"custom-key">>, <<"custom-value">>}, H1), - ok. - -decode_literal_without_indexing_indexed_test() -> - Bin = <<2#00001111, 2#00101011, 2#00000111, "Firefox">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<"user-agent">>, <<"Firefox">>}, H1), - ?assertEqual(DC2, hpack:new_context()), - ok. - -decode_literal_without_indexing_new_test() -> - Bin = <<2#00000000, 2#00001010, "custom-key", 2#00001100, "custom-value">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<"custom-key">>, <<"custom-value">>}, H1), - ?assertEqual(DC2, hpack:new_context()), - ok. - -decode_literal_never_indexed_indexed_test() -> - Bin = <<2#00011111, 2#00101011, 2#00000111, "Firefox">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<"user-agent">>, <<"Firefox">>}, H1), - ?assertEqual(DC2, hpack:new_context()), - ok. - -decode_literal_never_indexed_new_test() -> - Bin = <<2#00010000, 2#00001010, "custom-key", 2#00001100, "custom-value">>, - {ok, {[H1], DC2}} = hpack:decode(Bin, hpack:new_context()), - io:format("DC2: ~p", [DC2]), - ?assertEqual({<<"custom-key">>, <<"custom-value">>}, H1), - ?assertEqual(DC2, hpack:new_context()), - ok. - -compression_error_on_too_large_size_increase_test() -> - Error = hpack:decode(<<2#001:3,255,16,31:5>>, hpack:new_context()), - ?assertEqual({error, compression_error}, Error), - ok. - -no_compression_error_on_small_enough_adjustment_test() -> - {Ok, {EmptyList, _NewContext}} = - hpack:decode(<<2#001:3,255,16,0:5>>, hpack:new_context()), - ?assertEqual(ok, Ok), - ?assertEqual([], EmptyList), - ok. - - -no_compression_error_on_two_adjustments_test() -> - {Ok, _Return} = - hpack:decode(<<16#20, 16#3f, 16#e1, 16#1f>>, hpack:new_context()), - ?assertEqual(ok, Ok), - ok. - -%% If a value starts with 01000000, there has to be something after it -compression_error_on_indexed_fieed_no_value_test() -> - {Error, Reason} = - hpack:decode(<<16#40>>, hpack:new_context()), - ?assertEqual(error, Error), - ?assertEqual(compression_error, Reason), - ok. From 6129409f2977177c6c42f8c7a8ee00880dff94c4 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:27:31 -0500 Subject: [PATCH 10/13] Add all tests from RFC 7541 Section C --- test/hpack_rfc5741_tests.erl | 358 +++++++++++++++++++++++++++++++++++ 1 file changed, 358 insertions(+) create mode 100644 test/hpack_rfc5741_tests.erl diff --git a/test/hpack_rfc5741_tests.erl b/test/hpack_rfc5741_tests.erl new file mode 100644 index 0000000..3bf6921 --- /dev/null +++ b/test/hpack_rfc5741_tests.erl @@ -0,0 +1,358 @@ + +-module(hpack_rfc5741_tests). + +-include_lib("eunit/include/eunit.hrl"). + +% All test data is from Section C in RFC 7541 +% https://httpwg.org/specs/rfc7541.html#rfc.section.C + +c_1_1_test() -> + ?assertEqual(<<10:5>>, hpack_integer:encode(10, 5)). + + +c_1_2_test() -> + ?assertEqual(<<252, 208, 10:5>>, hpack_integer:encode(1337, 5)). + + +c_2_1_test() -> + Headers = [ + {<<"custom-key">>, <<"custom-header">>, [uncompressed]} + ], + Hex = <<" + 400a 6375 7374 6f6d 2d6b 6579 0d63 7573 + 746f 6d2d 6865 6164 6572 + ">>, + Table = {55, [ + {1, <<"custom-key">>, <<"custom-header">>} + ]}, + + {ECtx, DCtx} = {hpack:new(), hpack:new()}, + check_correct(ECtx, DCtx, Headers, Hex, Table). + + +c_2_2_test() -> + Headers = [ + {<<":path">>, <<"/sample/path">>, [uncompressed, no_index]} + ], + Hex = <<" + 040c 2f73 616d 706c 652f 7061 7468 + ">>, + Table = {0, []}, + + {ECtx, DCtx} = {hpack:new(), hpack:new()}, + check_correct(ECtx, DCtx, Headers, Hex, Table). + + +c_2_3_test() -> + HeaderOpts = [uncompressed, never_index, no_name_index], + Headers = [ + {<<"password">>, <<"secret">>, HeaderOpts} + ], + Hex = <<" + 1008 7061 7373 776f 7264 0673 6563 7265 + 74 + ">>, + Table = {0, []}, + + {ECtx, DCtx} = {hpack:new(), hpack:new()}, + check_correct(ECtx, DCtx, Headers, Hex, Table). + + +c_2_4_test() -> + Headers = [{<<":method">>, <<"GET">>}], + Hex = <<" + 82 + ">>, + Table = {0, []}, + + {ECtx, DCtx} = {hpack:new(), hpack:new()}, + check_correct(ECtx, DCtx, Headers, Hex, Table). + + + +c_3_test() -> + Headers1 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"http">>}, + {<<":path">>, <<"/">>}, + {<<":authority">>, <<"www.example.com">>, [uncompressed]} + ], + Hex1 = <<" + 8286 8441 0f77 7777 2e65 7861 6d70 6c65 + 2e63 6f6d + ">>, + Table1 = {57, [ + {1, <<":authority">>, <<"www.example.com">>} + ]}, + + Headers2 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"http">>}, + {<<":path">>, <<"/">>}, + {<<":authority">>, <<"www.example.com">>, [uncompressed]}, + {<<"cache-control">>, <<"no-cache">>, [uncompressed]} + ], + Hex2 = <<" + 8286 84be 5808 6e6f 2d63 6163 6865 + ">>, + Table2 = {110, [ + {1, <<"cache-control">>, <<"no-cache">>}, + {2, <<":authority">>, <<"www.example.com">>} + ]}, + + Headers3 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"https">>}, + {<<":path">>, <<"/index.html">>}, + {<<":authority">>, <<"www.example.com">>, [uncompressed]}, + {<<"custom-key">>, <<"custom-value">>, [uncompressed]} + ], + Hex3 = <<" + 8287 85bf 400a 6375 7374 6f6d 2d6b 6579 + 0c63 7573 746f 6d2d 7661 6c75 65 + ">>, + Table3 = {164, [ + {1, <<"custom-key">>, <<"custom-value">>}, + {2, <<"cache-control">>, <<"no-cache">>}, + {3, <<":authority">>, <<"www.example.com">>} + ]}, + + {ECtx1, DCtx1} = {hpack:new(256), hpack:new(256)}, + {ECtx2, DCtx2} = check_correct(ECtx1, DCtx1, Headers1, Hex1, Table1), + {ECtx3, DCtx3} = check_correct(ECtx2, DCtx2, Headers2, Hex2, Table2), + check_correct(ECtx3, DCtx3, Headers3, Hex3, Table3). + + +c_4_test() -> + Headers1 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"http">>}, + {<<":path">>, <<"/">>}, + {<<":authority">>, <<"www.example.com">>} + ], + Hex1 = <<" + 8286 8441 8cf1 e3c2 e5f2 3a6b a0ab 90f4 + ff + ">>, + Table1 = {57, [ + {1, <<":authority">>, <<"www.example.com">>} + ]}, + + Headers2 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"http">>}, + {<<":path">>, <<"/">>}, + {<<":authority">>, <<"www.example.com">>}, + {<<"cache-control">>, <<"no-cache">>} + ], + Hex2 = <<" + 8286 84be 5886 a8eb 1064 9cbf + ">>, + Table2 = {110, [ + {1, <<"cache-control">>, <<"no-cache">>}, + {2, <<":authority">>, <<"www.example.com">>} + ]}, + + Headers3 = [ + {<<":method">>, <<"GET">>}, + {<<":scheme">>, <<"https">>}, + {<<":path">>, <<"/index.html">>}, + {<<":authority">>, <<"www.example.com">>}, + {<<"custom-key">>, <<"custom-value">>} + ], + Hex3 = <<" + 8287 85bf 4088 25a8 49e9 5ba9 7d7f 8925 + a849 e95b b8e8 b4bf + ">>, + Table3 = {164, [ + {1, <<"custom-key">>, <<"custom-value">>}, + {2, <<"cache-control">>, <<"no-cache">>}, + {3, <<":authority">>, <<"www.example.com">>} + ]}, + + {ECtx1, DCtx1} = {hpack:new(256), hpack:new(256)}, + {ECtx2, DCtx2} = check_correct(ECtx1, DCtx1, Headers1, Hex1, Table1), + {ECtx3, DCtx3} = check_correct(ECtx2, DCtx2, Headers2, Hex2, Table2), + check_correct(ECtx3, DCtx3, Headers3, Hex3, Table3). + + +c_5_test() -> + Headers1 = [ + {<<":status">>, <<"302">>, [uncompressed]}, + {<<"cache-control">>, <<"private">>, [uncompressed]}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>, [uncompressed]}, + {<<"location">>, <<"https://www.example.com">>, [uncompressed]} + ], + Hex1 = <<" + 4803 3330 3258 0770 7269 7661 7465 611d + 4d6f 6e2c 2032 3120 4f63 7420 3230 3133 + 2032 303a 3133 3a32 3120 474d 546e 1768 + 7474 7073 3a2f 2f77 7777 2e65 7861 6d70 + 6c65 2e63 6f6d + ">>, + Table1 = {222, [ + {1, <<"location">>, <<"https://www.example.com">>}, + {2, <<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {3, <<"cache-control">>, <<"private">>}, + {4, <<":status">>, <<"302">>} + ]}, + + Headers2 = [ + {<<":status">>, <<"307">>, [uncompressed]}, + {<<"cache-control">>, <<"private">>, [uncompressed]}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>, [uncompressed]}, + {<<"location">>, <<"https://www.example.com">>, [uncompressed]} + ], + Hex2 = <<" + 4803 3330 37c1 c0bf + ">>, + Table2 = {222, [ + {1, <<":status">>, <<"307">>}, + {2, <<"location">>, <<"https://www.example.com">>}, + {3, <<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {4, <<"cache-control">>, <<"private">>} + ]}, + + Headers3 = [ + {<<":status">>, <<"200">>}, + {<<"cache-control">>, <<"private">>, [uncompressed]}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:22 GMT">>, [uncompressed]}, + {<<"location">>, <<"https://www.example.com">>}, + {<<"content-encoding">>, <<"gzip">>, [uncompressed]}, + { + <<"set-cookie">>, + <<"foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU; max-age=3600; version=1">>, + [uncompressed] + } + ], + Hex3 = <<" + 88c1 611d 4d6f 6e2c 2032 3120 4f63 7420 + 3230 3133 2032 303a 3133 3a32 3220 474d + 54c0 5a04 677a 6970 7738 666f 6f3d 4153 + 444a 4b48 514b 425a 584f 5157 454f 5049 + 5541 5851 5745 4f49 553b 206d 6178 2d61 + 6765 3d33 3630 303b 2076 6572 7369 6f6e + 3d31 + ">>, + Table3 = {215, [ + { + 1, + <<"set-cookie">>, + <<"foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU; max-age=3600; version=1">> + }, + {2, <<"content-encoding">>, <<"gzip">>}, + {3, <<"date">>, <<"Mon, 21 Oct 2013 20:13:22 GMT">>} + ]}, + + {ECtx1, DCtx1} = {hpack:new(256), hpack:new(256)}, + {ECtx2, DCtx2} = check_correct(ECtx1, DCtx1, Headers1, Hex1, Table1), + {ECtx3, DCtx3} = check_correct(ECtx2, DCtx2, Headers2, Hex2, Table2), + check_correct(ECtx3, DCtx3, Headers3, Hex3, Table3). + + +c_6_test() -> + Headers1 = [ + {<<":status">>, <<"302">>}, + {<<"cache-control">>, <<"private">>}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {<<"location">>, <<"https://www.example.com">>} + ], + Hex1 = <<" + 4882 6402 5885 aec3 771a 4b61 96d0 7abe + 9410 54d4 44a8 2005 9504 0b81 66e0 82a6 + 2d1b ff6e 919d 29ad 1718 63c7 8f0b 97c8 + e9ae 82ae 43d3 + ">>, + Table1 = {222, [ + {1, <<"location">>, <<"https://www.example.com">>}, + {2, <<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {3, <<"cache-control">>, <<"private">>}, + {4, <<":status">>, <<"302">>} + ]}, + + Headers2 = [ + {<<":status">>, <<"307">>}, + {<<"cache-control">>, <<"private">>}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {<<"location">>, <<"https://www.example.com">>} + ], + Hex2 = <<" + 4883 640e ffc1 c0bf + ">>, + % This is a bit odd but I'd rather call out that I'm + % tweaking the RFC example data. This change replaces + % the huffman encoded 307 status code with an unencoded + % string. This is due to the Huffman encoding being the + % same number of bytes as the unencoded version and our + % huffman encoder prefers the original for the same + % length string to match Nginx behavior. + Patch = {1, 4, <<3, 51, 48, 55>>}, + Table2 = {222, [ + {1, <<":status">>, <<"307">>}, + {2, <<"location">>, <<"https://www.example.com">>}, + {3, <<"date">>, <<"Mon, 21 Oct 2013 20:13:21 GMT">>}, + {4, <<"cache-control">>, <<"private">>} + ]}, + + Headers3 = [ + {<<":status">>, <<"200">>}, + {<<"cache-control">>, <<"private">>}, + {<<"date">>, <<"Mon, 21 Oct 2013 20:13:22 GMT">>}, + {<<"location">>, <<"https://www.example.com">>}, + {<<"content-encoding">>, <<"gzip">>}, + { + <<"set-cookie">>, + <<"foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU; max-age=3600; version=1">> + } + ], + Hex3 = <<" + 88c1 6196 d07a be94 1054 d444 a820 0595 + 040b 8166 e084 a62d 1bff c05a 839b d9ab + 77ad 94e7 821d d7f2 e6c7 b335 dfdf cd5b + 3960 d5af 2708 7f36 72c1 ab27 0fb5 291f + 9587 3160 65c0 03ed 4ee5 b106 3d50 07 + ">>, + Table3 = {215, [ + { + 1, + <<"set-cookie">>, + <<"foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU; max-age=3600; version=1">> + }, + {2, <<"content-encoding">>, <<"gzip">>}, + {3, <<"date">>, <<"Mon, 21 Oct 2013 20:13:22 GMT">>} + ]}, + + {ECtx1, DCtx1} = {hpack:new(256), hpack:new(256)}, + {ECtx2, DCtx2} = check_correct(ECtx1, DCtx1, Headers1, Hex1, Table1), + {ECtx3, DCtx3} = check_correct(ECtx2, DCtx2, Headers2, Hex2, Table2, Patch), + check_correct(ECtx3, DCtx3, Headers3, Hex3, Table3). + + +check_correct(ECtx, DCtx, Headers, HexEncoded, Table) -> + check_correct(ECtx, DCtx, Headers, HexEncoded, Table, undefined). + + +check_correct(ECtx1, DCtx1, Headers, HexEncoded, Table, Patch) -> + EncodedPrePatch = hpack_tutil:dehex(HexEncoded), + Encoded = patch(EncodedPrePatch, Patch), + + {ok, ECtx2, EncodeResult} = hpack:encode(ECtx1, Headers), + {ok, DCtx2, DecodeResult} = hpack:decode(DCtx1, Encoded), + + ?assertEqual(Encoded, EncodeResult), + ?assert(hpack_tutil:headers_equal(Headers, DecodeResult)), + ?assertEqual(Table, hpack_index:table(ECtx2)), + ?assertEqual(Table, hpack_index:table(DCtx2)), + ?assertEqual(ECtx2, DCtx2), + + {ECtx2, DCtx2}. + + +patch(Orig, undefined) -> + Orig; + +patch(Orig, {Offset, Len, Replacement}) -> + Before = binary:part(Orig, 0, Offset), + After = binary:part(Orig, Offset + Len, size(Orig) - Offset - Len), + <>. + From fb18f5c78e96da4dfbcd602c38658f0078f6611b Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:28:40 -0500 Subject: [PATCH 11/13] Import test data from http2jp/hpack-test-case --- test/hpack_nginx_tests.erl | 51 + test/nginx.data | 57705 +++++++++++++++++++++++++++++++++++ tools/gen_nginx_tests.py | 50 + 3 files changed, 57806 insertions(+) create mode 100644 test/hpack_nginx_tests.erl create mode 100644 test/nginx.data create mode 100755 tools/gen_nginx_tests.py diff --git a/test/hpack_nginx_tests.erl b/test/hpack_nginx_tests.erl new file mode 100644 index 0000000..fdaffc0 --- /dev/null +++ b/test/hpack_nginx_tests.erl @@ -0,0 +1,51 @@ +-module(hpack_nginx_tests). + +-include_lib("eunit/include/eunit.hrl"). + + + +nginx_test_() -> + Stories = load_file(), + lists:map(fun({Story, Cases}) -> + {atom_to_list(Story), fun() -> run_story(Cases) end} + end, Stories). + + +run_story(Cases) -> + run_story(hpack:new(), Cases). + + +run_story(_Ctx, []) -> + ok; +run_story(Ctx, [Case | Cases]) -> + NewCtx = run_case(Ctx, Case), + run_story(NewCtx, Cases). + + +run_case(Ctx0, {Size, Wire, Headers}) -> + Ctx1 = if Size == undefined -> Ctx0; true -> + hpack:resize(Ctx0, Size) + end, + + Data = hpack_tutil:dehex(Wire), + {ok, Ctx2, Decoded1} = hpack:decode(Ctx1, Data), + ?assert(hpack_tutil:headers_equal(Headers, Decoded1)), + + {ok, _, Encoded} = hpack:encode(Ctx1, Headers), + {ok, _, Decoded2} = hpack:decode(Ctx1, Encoded), + ?assert(hpack_tutil:headers_equal(Headers, Decoded2)), + + Ctx2. + + +load_file() -> + Paths = [ + "test/nginx.data", + "../test/nginx.data" + ], + lists:foldl(fun(Path, Acc) -> + case file:consult(Path) of + {ok, Stories} -> Stories ++ Acc; + {error, _} -> Acc + end + end, [], Paths). diff --git a/test/nginx.data b/test/nginx.data new file mode 100644 index 0000000..570bb7f --- /dev/null +++ b/test/nginx.data @@ -0,0 +1,57705 @@ +%% Test data generated from: +%% https://github.com/http2jp/hpack-test-case + + +{story_00, [ +{ +undefined, +<<"82864188f439ce75c875fa5784">>, +[ +{<<":method">>, <<"GET">>}, +{<<":scheme">>, <<"http">>}, +{<<":authority">>, <<"yahoo.co.jp">>}, +{<<":path">>, <<"/">>} +] +}, +{ +1365, +<<"3fb60a8286418cf1e3c2fe8739ceb90ebf4aff84">>, +[ +{<<":method">>, <<"GET">>}, +{<<":scheme">>, <<"http">>}, +{<<":authority">>, <<"www.yahoo.co.jp">>}, +{<<":path">>, <<"/">>} +] +}, +{ +2730, +<<"3f8b1582864187eabfa35332fd2b049b60d48e62a1849eb611589825353141e63ad52160b206c4f2f5d537">>, +[ +{<<":method">>, <<"GET">>}, +{<<":scheme">>, <<"http">>}, +{<<":authority">>, <<"k.yimg.jp">>}, +{<<":path">>, <<"/images/top/sp2/cmn/logo-ns-130528.png">>} +] +} +]}. +{story_01, [ +{ +1365, +<<"3fb60a8741882f91d35d055c87a784827a879eb193aac92a136087f3e7cf9f3e7c874086f2b4e5a283ff84f07b2893">>, +[ +{<<":scheme">>, <<"https">>}, +{<<":authority">>, <<"example.com">>}, +{<<":path">>, <<"/">>}, +{<<":method">>, <<"GET">>}, +{<<"user-agent">>, <<"hpack-test">>}, +{<<"cookie">>, <<"xxxxxxx1">>}, +{<<"x-hello">>, <<"world">>} +] +}, +{ +2730, +<<"3f8b1587c18482c06087f3e7cf9f3e7c8b">>, +[ +{<<":scheme">>, <<"https">>}, +{<<":authority">>, <<"example.com">>}, +{<<":path">>, <<"/">>}, +{<<":method">>, <<"GET">>}, +{<<"user-agent">>, <<"hpack-test">>}, +{<<"cookie">>, <<"xxxxxxx2">>} +] +} +]}. +{story_02, [ +{ +undefined, +<<"828641871d23f67a9721e9847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864191996293cae6a473150b0e91fb3d4b90f4ff04ab60d48e62a18c4c002c4d51d88ca321ea62e94643d5babb0c92adc372c00af17168017c0cb6cb712f5d537fc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c073919d29aee30c78f1e171d23f67a9721e963f">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c004ad60d48e62a18c4c002c795a83907415821e9a4f5309b07522b1d85a92b566f25a178b8b2f38fb4269c6a25e634bc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286c004bf60d48e62a18c4c002c1a9982260e99cb63121903424b62d61683165619001621e8b69a9840ea93d2d61683165899003cbadaf171680071e7da7c312f5d537fc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418bf1e3c2e3a47ecf52e43d3f84c5c4c390c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c104ad60d48e62a18c4c002c795a83907415821e9a4f5309b07522b1d85a92b566f25a178b885f109969c75b89798d2fc5c0c390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286c104c160d48e62a18c4c002c1a9982261139ca86103a0a888bdcb5250c0431547eec040c82284842a107b0c546bdbab46a8b172b0d34e95e2e2d000e09c7db044bcc697fc5c0c390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104ac60d48e62a18c4c002c436a4f49d26ee562c3a4e862fdb60c85a287000882202f1710be2101a75c6a25fa5737c5c0c390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104b060d48e62a18c4c002c5a662838e4c9548620d27b10c5071c992a90c41a4f62d40ec98abc5c42f882fb6d3c089798d2ffc5c0c390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418f293cae6a473150b0e91fb3d4b90f4f049a60d48e62a18c8c341c7fab69beb6ee19d78b7670b2dc4bf4ae6fc6c1c490c3c0">>, +[ +{<<":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/">>} +] +} +]}. +{story_03, [ +{ +undefined, +<<"828641878c6692d5c87a7f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c204896251f7310f52e621ffc1c0bf90be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418af1e3c2f18cd25ab90f4f84c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286be049060d4ccc4633496c48f541e6385798d2fc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c073909d29aee30c78f1e178c6692d5c87a58f60a4bb0e4bfc325f82eb8165c86f04182ee0042f61bd7c417305d71abcd5e0c2ddeb9871401f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c10491608324e5626a0f18e860d4ccc4c85e634bc5c0c390c2bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a40578e442469311721e9049f62c63c78f0c10649cac4d41e31d0c7443091d53583a560aecaed102b817e88c653032a2f2ac590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286bf049962c63c78f0c10649cac4d41e31d0c7443139e92ac15de5fa23c7bec590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf049762c63c78f0c10649cac5a82d8c744316ac15d95da5fa23c7bec590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf049162c63c78f0c1a999832c15c0b817aea9bfc7c2c590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304896251f7310f52e621ffc7c6c590c4c0">>, +[ +{<<":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">>} +] +} +]}. +{story_04, [ +{ +undefined, +<<"828641878c6692d5c87a7f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c204896251f7310f52e621ffc1c0bf90be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418af1e3c2f18cd25ab90f4f84c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286be049060d4ccc4633496c48f541e6385798d2fc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c073909d29aee30c78f1e178c6692d5c87a58f60a4bb0e4bfc325f82eb8165c86f04182ee0042f61bd7c417305d71abcd5e0c2ddeb9871401f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c10491608324e5626a0f18e860d4ccc4c85e634bc5c0c390c2bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a40578e442469311721e9049f62c63c78f0c10649cac4d41e31d0c7443091d53583a560aecaed102b817e88c653032a2f2ac590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286bf049962c63c78f0c10649cac4d41e31d0c7443139e92ac15de5fa23c7bec590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf049762c63c78f0c10649cac5a82d8c744316ac15d95da5fa23c7bec590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf049162c63c78f0c1a999832c15c0b817aea9bfc7c2c590c4c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304896251f7310f52e621ffc7c6c590c4c0">>, +[ +{<<":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">>} +] +} +]}. +{story_05, [ +{ +undefined, +<<"8286418d98a75c960cd32283212b9ec9bf847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff609a251147043745773468a1a9f168774355636f5f3e534fbf4370ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418df1e3c2e4b066991419095cf64d048960719ed4b08324a863c3c2c190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be048f6109f54150c10f6d49b0c542e4423fc3538e497ca582211f5f2c7cfdf6800b87c290c1739b9d29aee30c78f1e17258334c8a0c84ae7b2660719ed4b08324a863c1">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c0048a63a21894f65234a17e88c553032a2f2ac490c3bfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c1048f63a218e9dad2d9e960aed2e25fa23fc6bec490c3bfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c104896251f7310f52e621ffc6539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc590c4c3">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286418f44e71d085c960cd32283212b9ec9bf84c8c7c690c5c1c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c3048f6109f54150c12c19a6450642572211c8c2c690c573959d29aee30c22738e842e4b066991419095cf64cc7f60b2251147043745773468a1a9f168774355636f5f3e534fbf4370fda84a2290b2c540ea9a02d5f6a1288a42cb14f5c089ce3a11">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5048a63a21894f65234a17e88cac2c890c7bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5048b63a2189cf496b1cc55fa23cac2c890c7bfbe">>, +[ +{<<":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">>} +] +} +]}. +{story_06, [ +{ +undefined, +<<"828641862c63f4b90f4f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864189f1e3c2e58c7e9721e984c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418b2c63f4b2127b0c542e43d3049b63c56b10f524b5258b6ba0e3910c080113010b1910759c6d7e95cdc3539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc290c1738f9d29aee30c78f1e172c63f4b90f4b1">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286418ab0fdcb62e58c7e9721e9048862c3f72d88f55118c6c0c490c3bf60ffa3012c63f502ade04472aacdf544caade0fb524ac30475c72b0a89978000000000000036275c6c0d49ffe5a1ad8d982ecbf80bb0fe05f87643f3f2d89d71b03527ff9f6a11089a0238ebcf332842c8c036dc7dc68ae34e11c96518c238cbf6a220bd3437da86f5dd9452de9e7ef9b3aafcdeff7a60f3a0583c73dfc05ab7f307eefe60d34e817ed3fb3f3df867e74f0bbba6879f0cbfb6efdfc3c6adfc3cf3169eb9fa436e8dcd7bcfd300746e6bde7e90dba0ba7fdbb9707cfda951ea4150831ea82f4d0e1d10dd9f74945dd3a77c2de9df87a7316cb745e6bce7e982dd1bf6379fa68b745e6bcc3a0f0e4c353b8fa87a69e846b55fd34e8df83df3df767d3bf9b7a7a6da34f4d82e7eff69fda70cfa3961e9a365fcf0c387651bb5f1d1f8f5adfebdf3">>, +[ +{<<":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*">>} +] +}, +{ +undefined, +<<"8286418bad72c63f4848d2622e43d3048a607e18acc443085e634bc8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286be04b5607e18acc443149eb4302004514873c94150c633d06907e98bfb9963253372297ac418b596a9ad35516ea47451105b079640bd754dc8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286be049b607e18acc443135078c746328e42d8c4a3216339fab13044bcc697c8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286be049a607e18acc443135078c746328e42d8c27c19292d8c4c112f31a5c8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286be04a2607e18acc443135078c746328e42d8c1887aa2a4f19a82c53583f51043e42e2f31a5c8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418f459e57a466a972c63f562695c87a7f048362c4d3c9c3c790c6c2">>, +[ +{<<":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/">>} +] +} +]}. +{story_07, [ +{ +undefined, +<<"8286418e4246931171f55e58c9254bd454ff049a62c45845eb9eb63b898f51b1631891a72e9f16e45b8685e634bf7abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c1539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176f518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff73929d29aee30c78f1e1794642c673f55c87a58f">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c3049962c45845eb9eb63b898f5cd8b18b5e342cf5fc8dee615c8847c2538e497ca582211f5f2c7cfdf6800b87c190c0bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049962c45845eb9eb63b898f5918b18ed0e9e3bd179b14b5ae4423c3bec190c0bf">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286c4049a62c45845eb9eb63b898f4962c630fe8f466ed0ed9af38bd754dfc3c2c190c0bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049962c45845eb9eb63b898f5fac58c74a335f3fe05beb8f12fd11c353032a2f2ac290c1c0">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c5049962c45845eb9eb63b898f5a98b188b46d1d95ce4bd93b2e4423c4bfc290c1c0">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286c5049962c45845eb9eb63b898f5ad8b18bdb7a9afdfe5be40dabf447c4bec290c1c0">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c5049a62c45845eb9eb63b898f5f8c79636767338671ecb39d8bd754dfc4c3c290c173ab9d29aee30c21234988b8faaf2c6492a5ea2a58b116117ae7ad8ee263d6462c63b43a78ef45e6c52d6b9108">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c6049962c45845eb9eb63b898f5a58b18c03b23e478a9bfc165fa23fc5bfc390c2c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c6049962c45845eb9eb63b898f4eb1e587fa25d3f1930bbed95ebaa6c5c4c390c273ab9d29aee30c21234988b8faaf2c6492a5ea2a58b116117ae7ad8ee263d6a62c622d1b47657392f64ecb9108">>, +[ +{<<":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">>} +] +} +]}. +{story_08, [ +{ +undefined, +<<"82864188968313ad8b90f4ff847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418bf1e3c2f2d06275b1721e9f84c2c1c090bf60a9bbf9011f7ec73a56f3e376a3fc47033f0883b35f6a50720e837b1a4c7aa02d4b5a8559bb6a1566eda8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418fb50b8e4416cee5b17f439ce75c87a704022f61c453032a2f2ac390c273919d29aee30c78f1e17968313ad8b90f4b1f60e5bb03548aced6b6f3e36c0efc47033f08803dfed4eb177320c9803f6a68dd7a04c0165b0bed3ac841f9f6a5ec704335dd946dd93437fc5fc90c31dfdd0c38acc93437ebb724309ec3430e7d1b268614032430bb7af430e50689a1ba767ed4b488823a868801">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c3049b60d48e62a1844e3b0ab2673216310f5216457619255ebaa65fbb9fc7539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc690c5c3c0">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049460d48e62a18968313ad8b22bb0c92af5d532fddac8bec690c5c0c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c4048d625a0750e888bdcb52579aa2ffc8bec690c560c1bbf9011f7ec73a56f3e376a3fc47033f0883b35f6a50720e837b1a4c7aa02d4b5a8559bb6a1566eda8fb53d781c958400005b702cbef38ebf005f6dc79d6db683fc1">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286418ff4b8ea1d1e9262217f439ce75c87a70486625ac8bd747fcac3c890c7c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864188917f46a665c87a7f049a60856107b6b6107b6b8a62d45b0692c914b60e6a4b52579aa2ffcbc4c990c8c3">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418998a75fd0e739d721e904022f62ccc2ca90c9c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c8049662b9ce93a18a868190f4d27a90c34fb407c2cb2d098fcccbca90c960ff8c01bbf9011f7ec73a56f3e376a3fc47033f0883b35f6a50720e837b1a4c7aa02d4b5a8559bb6a1566eda8fb53d781c958400005b702cbef38ebf005f6dc79d6db683f6a4b445de041ed9ebfb525ac81000016dc0b2fbce3afc1b3bf709baf28bfe0f8761fba3d6818ffe4a82a0200002db8165f79c75f83fe0f8761fba3d6818ffe6cefdc26ebca2ff92f7320200002db8165f79c75f83f7a04f263dbe32efd3772efcb8b2efcb8a4664673d3fa81f2d3610cdf48c40a3475e74c97c1e747be1e756fe1e345f2072d391fcbbf2e21f26fafefe4f2904f84979baa3a7841ff1ed0179d0f3e78c1ff1ed0179d0f3e78c1ff1ed0179d0f3e78c1ff1eff8f680bce879f3c60ff8f680bce879f3c60c5">>, +[ +{<<":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/">>} +] +} +]}. +{story_09, [ +{ +undefined, +<<"82864189a0d5752c86a9721e9f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418cf1e3c2f41aaea590d52e43d384c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418d42e45e8abac8bd0624952e43d304906104910c10f510696087a693d4c7447fc353032a2f2ac290c173929d29aee30c78f1e17a0d5752c86a9721e963">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286c004906104910c10f510696087a693d4c1108fc5538e497ca582211f5f2c7cfdf6800b87c490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104906104910c10f510696087a693d4c7447fc6c0c490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104906104910c10f510696087a693d4c1108fc6bec490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286c104906104910c10f510696087a693d4c1108fc6bec490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104906104910c10f510696087a693d4c7447fc6c0c490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c2049160750e8f493110c5471da99d360c9d4b67c6c5c490c3408cf2b585ed695092c8b783267f8bfcd19f1a535ed2f6b4a84fc060ff408c873f53160fe7bc02f88c6579a6c6dacf32591669b7c0b46524ab4a095991b79c699147fcfda9414f10ed4cf124fd4b541fce2ddbee70bf1f2c386bcf9e426e726c795dd3946cfe73da823bca29aff8b531f2aa8e59e53bb8a21736ba4b9f1ad8ee0596c2fb4f3417ee351b6404a1640fb2100df8dc6df8df76479f700571a96491c65b6c4e47fcfda997760ddbb26ad392fc1fc8fa0fcdc038079c640271c0b627df13a27ff9fb53b99064c1fcf7803f18bf9fb53f16cf916c97ef41783f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304986104910c10f4d27a98b5835333128fb9887aa2eecae621ffc8c7c690c5c1">>, +[ +{<<":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/">>} +] +} +]}. +{story_10, [ +{ +undefined, +<<"82864185a5152e43d3847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864189f1e3c2f4a2a5c87a7f84c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a1c880af4a072217a8a9f049062834760ecf4c5761a92c9521798d2ffc3539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc290c1738f9d29aee30c78f1e17a5152e43d2c7f">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286418c21e85d09e8ba16a5152e43d3048a62bb0d4964a90bcc697fc6c0c490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418c8e8b574248ba16a5152e43d30494606863c146cb0660b52d6a18a07e1865f5e634bfc7c1c590c4c0">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf048a62bb0d4964a90bcc697fc7c1c590c4c0">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286418c21e85d0922e85a9454b90f4f0495623b1841183312cac0e424e7310a88a634a25e634bc8c2c690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418d21e85d098c005d0b528a9721e9049c60cc3c061b66f4379c8420bae09a79c7857b08841ba26a17c4bcc697c9c3c790c6c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418d21e85d098c015d0b528a9721e9049e60cc600310b9799089c65bc18410b2db6e38f5e7840c175b65a657e95cdfcac4c890c7c3">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf04a060cc5dbac5d0e1702fc2186fb57da86172e81c69ebb7eeddbd7f060bebf4ae6fcac4c890c7c3">>, +[ +{<<":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/">>} +] +} +]}. +{story_11, [ +{ +undefined, +<<"82864188abd24d4950b90f4f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418b4af59cd526c3d142e43d3f048d6359cd52769e8a18df60c9d58fc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c0739f9d29aee30c78f1e178e322e43af6f562a2f84311da8354542161002ebc000360aad7b63b60c1eff6492d9e6edf6a6bdb31e0bb76ec30e1d1543f6a6bda93357afbeeb781a72f4382182eff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c1048d6359cd52769e8a18df60c9d58fc5c0c390c2bfbe">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286418f9ac1d739888797abd24d4950b90f4f04b062b193a8e62a182210c536d09352590c3623b6a9282a18aec3f42912860400898c7af39bb96f9631a4b8682f95c8847fc6538e497ca582211f5f2c7cfdf6800b87c590c473919d29aee30c78f1e17abd24d4950b90f4b1609cdba325f8000765004001082e38069d8ca57c00147f6a0e4f24440b7f">>, +[ +{<<":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=-">>} +] +}, +{ +undefined, +<<"8286c104a663a2181d75b043d349ea61141a42a273f860b4c659242c9ba8348544e7f176d351216c5fa23fc953032a2f2ac890c7c0bf">>, +[ +{<<":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=-">>} +] +}, +{ +undefined, +<<"8286c204a5608843005c2c209614b5308a0d215139fc3149e4b682a18450690d54d8874505b3d2e4423fcac1c890c7c0bf">>, +[ +{<<":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=-">>} +] +}, +{ +2730, +<<"3f8b158286c204ae60727960d48e62a1886fee6190b0d38c0e45d90b4e38f31a79ef8b45dd1164d78f5698b3e0c3be2d444842bf4ae6cac5c890c7c0bf">>, +[ +{<<":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=-">>} +] +}, +{ +undefined, +<<"8286c204af62b193a8e62a18e88629b6849a92c861b11db5494150c5761fa148943020044c63d79cddcb7cb18d25c3417cafd11fcabec890c7c0bf">>, +[ +{<<":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=-">>} +] +}, +{ +undefined, +<<"8286c204b162b193a8e62a18e88629b6849a92c861b120d236309a8a7726c357aec3d27604008a22d05224c7aa294d45284d86ad7e88cabec890c7c0bf">>, +[ +{<<":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=-">>} +] +}, +{ +undefined, +<<"8286c204a962b193a8e62a18e8860b4148931ea43020044c4858c692a18ee690a7426c356c4a6a29426c356b9108cac1c890c7c0bf">>, +[ +{<<":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=-">>} +] +} +]}. +{story_12, [ +{ +undefined, +<<"82864189acd524b615095c87a7847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864194a4b2186b10649cab50902f59aa496c2a12b90f4f049f62dae838e4602e34c842079c65d699132eb218afcffbba5c929228d7e95cdfc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c0738f9d29aee30c566a925b0a84ae43d2c760ff0a8ab35492d8542624150883f92e5f59f455bb47a9a7c9b8cdb24ab068f5da63bf828d7e860d01e92787d8dc04f37bbfa279d29978697b7fe02f93a89e85fcb677d9ad39f8f1cc06939d0de844bf9a1f1fb05e671e6312bcda58cbef70d8f566cb33191e3369e6ce8374dd97de8b323da039b4b11e9bfbf786cd8703dc3d329d9c21a59c1d6f43041fcf">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049f62dae838e4602e05c65d03ad01f75b79979b6e2dda7a5fdba331628d7e95cdc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +1365, +<<"3fb60a8286c1049f62dae838e4604eb2dbecbad3807990084e09a8b0de3e0ebf88bd146bf4ae6fc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049e62dae838e461b13e175971a65a13cfb2e38cc5d93ae9cb375f3146bf4ae6c5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049f62dae838e4602171f6c4f882db4d0196df00a2cdeb7f2355ee98a35fa5737fc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +2730, +<<"3f8b158286c1049f62dae838e4604f32d34db2e804e3aebad09b1450a5377471977c51afd2b9bfc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049f62dae838e4604cba1684eb2e36fbe0136f09d8ad96fe0c726d2c51afd2b9bfc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049f62dae838e46042682fb4f3ceb8e3edb2cb2f062e1769338dbf3451afd2b9bfc5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +}, +{ +undefined, +<<"8286c1049e62dae838e4604eb416dc71f700cb8d3afbe07628425f73548e9146bf4ae6c5c0c390c2bfbe">>, +[ +{<<":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==\"">>} +] +} +]}. +{story_13, [ +{ +undefined, +<<"82864185edd9721e9f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418aa4690af324d4ccb90f4f049763c78f0c1a91cc5431dbb080113129e8a0fe292af5d537c2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c0738e9d29aee30c78f1e17edd9721e963">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0049763c78f0c1a91cc5431dbb080113083a0f41e63af5d537fc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286c0049e63c78f0c1a91cc5431dbb0801131295093771d0c4830bc828ec24ebd754dc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c004a063c78f0c1a91cc5431dbb0801131295093771d0c4830bd19e4f51cc06d7aea9bc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0049a63c78f0c1a91cc5431dbb080113141e63543a28882b897aea9bfc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286c0049c63c78f0c1a91cc5431dbb080113033751d59ce390d54c15c2bcc697fc4bfc290c1be">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0049263a1fa958cc71d036364a34242b8170afd11c453032a2f2ac390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c1049863c78f0c1a91cc5431dbb080113149e33505d25f085ebaa6c5c0c390c2bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418a35330579926a665c87a7049b63bb159888627ee1604d058085d602179c61d742d3ee89c5fa5737c6c1c490c3c0">>, +[ +{<<":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/">>} +] +} +]}. +{story_14, [ +{ +undefined, +<<"8286418841aa1ae43d2b92af847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418bf1e3c2e835435c87a5725584c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418ca8be10ba0d50d721e95c957f049763a21879d604008820134c0801105ebc7aa5de7ad7e88fc353032a2f2ac290c173919d29aee30c78f1e1741aa1ae43d2b92a63">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286418f35495e4ace7a1741aa1ae43d2b92af049060d5d073f5b6b60d5d073f5b6b5eb9ebc6c0c490c3bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"82864189332ba0d50cd4ccb92a04a163b9a429d8100226021032c7075e037ac2e3b7f788011042064410bcdb2bf4ae6fc7539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286bf049f6273d256040089808402638380683ad905fde200441080411082d38bf4ae6fc8bec690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286bf04986273d25624290ec08007d8032c818a0f31e29cf495798d2fc8bec690c5c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418a902ba0d50d721e95c95704986113cec50524e3a98100220802e20d50d8a0f31c2bf4ae6fc9bfc790c6c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"82864189301741aa19a999725504a06273d25604008980840cb1c1e6db0eb6417f7880110420640e32eb2d2fd2b9bfcac0c890c7c3">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"82864189305741aa19a9997255049f6273d25604008980840163838e34f6b6417f7880110420085a0b4c897e95cdcbc1c990c8c4">>, +[ +{<<":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/">>} +] +} +]}. +{story_15, [ +{ +undefined, +<<"8286418748cf18ceb90f4f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418af1e3c2e919e319d721e984c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be048d60d5485f314d41e31d0bd73d7fc2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a828641871ae98c9254b92a049362b625ad8100211b03420a94308ac642af31a5c3539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc290c1739c9d29aee30c78f1e1748cf18ceb90f4b06aa42f98a6a0f18e85eb9ebf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c084c5538e497ca582211f5f2c7cfdf6800b87c490c3bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c1048a62b625ad8100219fab1fc6bec490c3bf">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286c184c653032a2f2ac590c4c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c2049b62b625ad810020231d10c4b5ad21ac2912b5761e93ad49aa5fa23fc7bec590c4c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418d3533002ba4678c6724952e43d3049c6135a183058de197b7317e1a897f3f073a38cc458200016680bf4ae6c8c2c690c5c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be049e6135a183058de1b3f4de3f264cbf9f9f9f9f9f9f9f8b0420582cb6bd754dc8c2c690c5c1">>, +[ +{<<":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">>} +] +} +]}. +{story_16, [ +{ +undefined, +<<"8286418c2d4bf8375356590c35cf64df847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff60ff3d216a4d83a2a3a4c42c51da4ea54c01fb5094189d5360c9d4d54cb20a8418f5405cbd4ee64370260a5c7cb3ec9463ebb28cb29b3fa7e8dd3e9d7f6a52590c3e46ea65ed416c5e3b49d4a955984be52b8ec4989417094b246327559360c9d4d54d0040ab30a6c193afda9496430f91ba997b505b17349060d0f33d11d07db5fbc9a33f8bbbcd9b0b23ce636fcc5f052fbfb5292c861f237532f6a0b62f1da4ea54aacc25f295c7624c4a0b84a5923193aac7ad263d4881e55985139fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c3048b63c1ba998d0335516b1cc5c2c1c090bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418d8cc942fe0dd4d496430d73d937049360b52fe0dd4d596430d73d933141c722f5cf5fc3538e497ca582211f5f2c7cfdf6800b87c290c1739c9d29aee30c16a5fc1ba9ab2c861ae7b2663c1ba998d0335516b1cc5f6896e4593e94642a6a225410022502edc6c5700d298b46ff">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c1049360b52fe0dd4d596430d73d933141c722f5cf5fc6c0c490c3bf6896df3dbf4a002a693f75040089403f71966e09d53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c2049360b52fe0dd4d596430d73d933141c722f5cf5fc753032a2f2ac690c5c16896dc34fd280654d27eea0801128115c6d9b82754c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c4049360b52fe0dd4d596430d73d933141c722f5cf5fc9bfc790c6c2c1">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286c4049360b52fe0dd4d596430d73d933141c722f5cf5fc9bfc790c6c2c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418fb6ba0e3917f06ea6a4b2186b9ec9bf049e63c1ba9ab2c861b05a9823041b198752673583ee388961ebacb22f5d537fca539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc990c8c46896c361be940094d27eea0801128266e34e5c6df53168df699713cf4724629646cad8da95d13a295b7a524607991ba50f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c104cf63c1ba9ab2c861b043d349ea43099eda636246241317c7510d54d14c6b28887d07524712a278961ebacb22a27d7e95ccc3a2afcad7c7510d54d14c6b28887d07524712a278961ebacb22a27d7e95cdcdc0cb90cac66896df697e94640a6a225410022502edc65db816d4c5a37f699770af48db924afc6565b69f6a36a47e50146e88b2046c97">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286ca049360b52fe0dd4d596430d73d933141c722f5cf5fcfc5cd90ccc8c4">>, +[ +{<<":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">>} +] +} +]}. +{story_17, [ +{ +undefined, +<<"82864188f439ce75c875fa57847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff6092bb03ae7403e30bcf8dc9daf88e067e110023">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418cf1e3c2fe8739ceb90ebf4aff84c3c2c190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864187eabfa35332fd2b049960d48e62a1849eb61158982516301609458b0441009b5c8847c4538e497ca582211f5f2c7cfdf6800b87c390c273929d29aee30c78f1e17f439ce75c875fa56c7f">>, +[ +{<<":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/">>} +] +}, +{ +1365, +<<"3fb60a8286c0049060d48e62a1849eb6115b141e63af31a5c6539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc590c4bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f351057e95cdc7bec590c4bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418df5d07e48bfa1ce73ae43afd2bf048260e6c853032a2f2ac790c6c1c5">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286c304a260d48e62a18f051a672d8c4c5a8b60e861360ea4563b0b52624304a0f6c885e634bfc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304a060d48e62a18f051a672d8c4c5a8b60e861360ea4563b0b52624308b6a5e634bfc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f351097e95cdc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304af60d48e62a18aec2d26b696087a925a928623aac604008986c1e5b03007c4f44849ec2c48b6b2d950d36d83a17e95cdc9c0c790c6c1">>, +[ +{<<":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/">>} +] +} +]}. +{story_18, [ +{ +undefined, +<<"82864187f439ce75c87a7f847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864188917f46a665c87a7f04b062791824eed45f0861d8bc1eca246021033101d0022a86988b416b9c75262453444179f7893f4582f3ef127a17e95cdfc2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c073939d29aee30c0ed5fd0e739d721e963fcae0b51f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641891dabfa1ce73ae43d3f84c5c4c390c26093bb03548aced6b6f3e36c0efc47033f08803dff">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c20488629331ebc0d7e88fc653032a2f2ac590c4c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418cf56997f439ce71d6642e43d304856087a633ffc8bfc690c5c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286419341496d855876ae6a6cf07b2893c1a42ae43d3f048860931968cd5314ffc9c4c790c6c3">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286419024e3b12bca6a87510abfa1ce73ae43d304a960d521365b496a4b015c0c2ade01f9e8760938ec4fdd83aa62c0dc8c1a91cc5fb41bd9600baff97defcac5c890c7c460c8bb03548aced6b6f3e36c0efc47033f08803dfed44150831ea89091d898926a4b00596c2fb4e89d6c2e03ed4eb177320c9803f6a576a278926a4b12123b1300596c2fb4e89f6c2e03">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04a960d521365b496a4b015c0c2ade019ec91824e3b13f760ea98b0372306a47317ed06f65802ebfe5f7bfcbc6c990c8c5be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04a960d521365b496a4b015c0c0ed92d44907960938ec4fdd83aa62c0dc8c1a91cc5fb41bd9600baff97decbc6c990c8c5be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864191252b8ed5fd0e739d73f72d89b6c2ae43d3048a63a2229681a620c4063fccc3ca90c9c6">>, +[ +{<<":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">>} +] +} +]}. +{story_19, [ +{ +undefined, +<<"82864187f43aa42f95ecb7847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418bf1e3c2fe875485f2bd96ff84c2c1c090bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418bf438d0bfa1d5217caf65bf04d06087b6a4b1c6af1133ef08a4eba9a00002fd9e87b3621b79b5e61129d72e82f3af50bde207784baad84b2fee48663c22cd09452ebd5ab5bee7aecd4630cb7f362d97833d17f8976697b14bc6f85d2bbfc3539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc290c173909d29aee30c78f1e17f43aa42f95ecb5860994c15fda9e875485f369a481c682069b65d742cb617da7da6c3">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c104ce6087b6a4b1c6af11334ca97bc766800003f67a1ecd886de6d6e7aecd4630cb7f34f45fe25d9a5ec52f1be1746cc1d89aaa69fcc2253ae5d048f60e6fcfde53738663c22cd0e8d0e399097dde4cffc6c0c490c3bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864187f43aa42f95d09f049d6282cc762262bbf6bfab943b335d020595fc87e99ab36e8b04e75cc43fc7c6c590c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be049663c78f0c05765b7d8f1e3c30663d0ea90be595ebaa6fc7c1c590c4c0">>, +[ +{<<":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/">>} +] +}, +{ +2730, +<<"3f8b158286be04906293d920d6a0f31d833141e63af5d537c7c1c590c4c0">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"82864189a48bfa1d5217caf65b048a63c0d249d874426da6ffc8c2c690c5c1c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04a563c78f0c05765b7d8f1e3c3158e62a1690a8ea93d6c78f1e162210c45e3c78588842e4423fc8538e497ca582211f5f2c7cfdf6800b87c790c6c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0049e63c78f0c44c4563b5d6b46b4f98f7e39bd62e7e8192eb3e28eb51d7aea9bc9c3c790c6c2">>, +[ +{<<":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/">>} +] +} +]}. +{story_20, [ +{ +undefined, +<<"82864188f439ce75c875fa57847abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c153b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177b518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff6092bb03ae7403e30bcf8dc9daf88e067e110023">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418cf1e3c2fe8739ceb90ebf4aff84c3c2c190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864187eabfa35332fd2b049960d48e62a1849eb61158982516301609458b0441009b5c8847c4538e497ca582211f5f2c7cfdf6800b87c390c273929d29aee30c78f1e17f439ce75c875fa56c7f">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0049060d48e62a1849eb6115b141e63af31a5c6539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc590c4bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c104ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f351057e95cdc7bec590c4bf">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418df5d07e48bfa1ce73ae43afd2bf048260e6c853032a2f2ac790c6c1c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a260d48e62a18f051a672d8c4c5a8b60e861360ea4563b0b52624304a0f6c885e634bfc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304a060d48e62a18f051a672d8c4c5a8b60e861360ea4563b0b52624308b6a5e634bfc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f351097e95cdc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304af60d48e62a18aec2d26b696087a925a928623aac604008986c1e5b03007c4f44849ec2c48b6b2d950d36d83a17e95cdc9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f35132bf4ae6c9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c304ad60d48e62a188ce7ea849ec2b043d349ea611594861d0c08011300784fc406d88c75545b1879af2f35136bf4ae6c9c0c790c6c1">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"828641881997f46a665fa57f04a862393bb0d80006c4c040f01e7da60400882013ec525b68f6dd9d6aa4f1a7a4bda9f5ede586bcc697cac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c0048260e6cabfc890c7c2c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a762393bb0e81b038c040f08407d8100220804d312cb4f837893d46797c7a44a9f350c2b0d798d2fcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286be049d62393bb1e8739cec741f71a0961ab4b1ea51c5dcc8b474371263ad7e88cabfc890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c5049963a0fb8d04b0d5a5896b8a31a0b14724530e26d702ed097e88cabfc890c7c2c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a262393bb1e8739cec741f71a0961ab4b0441181000e01e134c5068c478e58a3717e88cabfc890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049960d48e62a1849eb6115898aec6131c51ccb04400840bd754dfcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049e60d48e62a1849eb6115898b679189cf496b1cc58a399608801132bd754dfcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049560d48e62a1841887a90c4673f5424f6142e2f31a5fcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049260d48e62a1841887a90c527ee6285c5e634bcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049260d48e62a1841887a90c4c3a4a171798d2ffcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049b60d48e62a1849eb6115898253531598910e8a1608820034bd754dfcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049460d48e62a1841887a90c4a7b136d450b8bcc697fcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049a60d48e62a1849eb61158982d333121903424b64494d025ebaa6fcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049c60d48e62a18ee690a75927acc44316148c04410b006622802bf4ae6fcac1c890c7c2">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c4049960d48e62a1849eb61158982516301609458b0441009b5ebaa6cac1c890c773a59d29aee30c755fd1a9997e95b06a473150c24f5b08ac4c128b180b04a2c58220804dae4423">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049b60d48e62a1849eb61158982535b043d35c43a285822080225ebaa6cbc2c990c8c3">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c5049c60d48e62a1849eb611589845674d069a74b020042c040c84ebf4ae6fcbc2c990c8c3">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286418ba8be10b917f46a665fa57f04a360d48e62a1849eb3110c08011042065600000005f6564573ac000164cf6d31afd2b9bfccc3ca90c9c4">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c004a662393bb02132eb0103c0659030200441081962399c41dd447313b16a23f5fa73cf5586bf4ae6ccc3ca90c9c4">>, +[ +{<<":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/">>} +] +}, +{ +undefined, +<<"8286c704896251f7310f52e621ffcccbca90c9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c0049660d48e62a1841496d864fa62b958f5d10525b6157e88ccc1ca90c973ae9d29aee30c483351eaa2f842fe8739ceb90ebf4ad8948c22b3d8943151abacf54482d862a18ff02cb617d965a7da">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c3048a63a218f5d07e48bf447fcdc2cb90cabec9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641909066a3d545f085fd0e739d721d7e95ff04926252308acf6250c546aeb3d5120b618a863fcecdcc90cbc660e3bb03ae7403e30bcf8dc9daf88e067e110023fb539e5dfab5e4bdbb0dddb821bf049074b77da867465921725875e6d9533a32fa3f2efd778f9b9905b6a9b59b8e6c0cddd1dde870fe2f79adfa2605a9f1a22b7f268919aa77d0bd5fe3873605be3bc01f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf048b625231d10c4b1c55917e88cfc4cd90ccc0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a862393bb0e85c13ec040eb2e05e60400882013ec7aafc93d7a2f524565b3faae4323b5ab0d7e95cdfcfc6cd90ccc0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418732fe8d4ccbf4af048e60d48e62a18a8be10c4a45e634bfd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be049060d48e62a18310f5315ce749d798d2ffd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be048e60d48e62a18a6762a2f842f31a5fd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c404a562393bb0c818081d744d098100220804fb06f3199145affa989efcfb93acb5569586bf4ae6d0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a160d48e62a18a8be10c4a3216339fab1517c222c23216339fac4eb9e5d717aea9bfd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be049360d48e62a18b0759a4602bb6b818b684afd11fd0c5ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be048c60d48e62a18a8be04bcc697fd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be049d60d48e62a1849eb3110c78375331515093d662222310f544d017aea9bfd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c4049b62393bb1e8739cec741f71a0961ab4b1ea51c5dcc8b47436bf447fd0c5ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c404a662393bb017d96020744213ac0801104027d8b7d7bf1d6b2f9e88f7e8c2f73112d56b0d798d2fd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c404a662393bb027db7d8081e6c2275810022084026241d1dfbbf5bf2f87d361a31f81f82ac35e634bd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c404a762393bb027db7d8081e6c226981002208402623f6fd9ee6aac2d3ea41f98eb68d3c6b0d798d2ffd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a460d48e62a1849eb3110c78375330590c93d8c24f598888abb22a0d5753533454097aea9bd0c7ce90cdc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418aa2b4ae45fd1a9997e95f04c060d4c4834d336cbb4e46417f73f3f22fe97157ca875bd8b2cb791000b7a0be05bb3e06074c8c08011042065600000036d09640ea4567580002ddcc5f0bf4ae6fd1c8cf90cec2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a1d322e45fd1a9997e95f04cc60d4c4834d363b68c1d33f89bdebf5671bfd7f5f3e9d754cb2cb791000b7a0b2cadd9f0303a64604008820642b0000036f09e5bd748887b2b4d85aa4580002cd85c740d002b77317c2fd2b9bd2c9d090cfc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04cc60d4c4834d359a2fe767f6babb55e3435fa1c3cfbcff82d8b2cb791000b7a0b2cadd9f0303a646040088210056000006de640b7ae9110f6569b0b548b000059b0bad85a0016ee62f85fa5737d2c9d090cfc3">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8286c0049860d48e62a1849eb3110c110860d4d67b131772d825c8847f7abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c1cc518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ffc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a960d48e62a1821e9a4b610ac7443141a3431d3b5a5b3d3043d85602bb4b898e9dad2d9e97a4d52fd11fc0cabf90bec6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c9049f63d5a663a56c5b3c8c1e8f54d6623015c0b8983533316cf25e9eaeabd754dfc0ccbf90bec6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a060d48e62a18a8be10c770b1eaa8a6a87dcd122bb0c92c42004407c4e2f5d537fc0ccbf90be73ad9d29aee30c197f46a665fa56c1a91cc543093d6622182210c1a9acf6262ee5b04b9108ff241a4b00801104027f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc048260e6c1cbc090bfc76092bb03ae7403e30bcf8dc9daf88e067e110023">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cd048260e6c2ccc190c0c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049660d48e62a1849eb3110c20e430e86234d5a3caf5d537c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049f60d48e62a1849eb3110c78375331e927acc44448aec324b11887a90bd754dfc2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c504a360d48e62a1849eb3110c78375331e927acc44448aec324b14632759ac3db54885ebaa6c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049860d48e62a1849eb3110c783753316168de38f39654af31a5c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049960d48e62a1849eb3110c783753316168de38f69a69d2bcc697c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049960d48e62a1849eb3110c783753311db45054c5419095e634bfc2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cb049963d5a663a56c5b2a580ae05c0c1a9998b532de9eaeabd754dfc2cec190c0c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049b60d48e62a1849eb3110c783753303210f6d49de64d05bb32f5d537c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049c60d48e62a1849eb3110c20e430e86115d864962310fbaa405c5ebaa6c2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049a60d48e62a1849eb3110c783753309b0b549bcc9a0b7665ebaa6fc2cec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cb04a262393bb1e8739cec741f71a0961ab4b0441181000e01e134c5068c478e58a3697e88c2ccc190c0c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641881cebfa35332fd2bf04a862393bb0171a65b698081e680eb6c0801104200b0d4a51a25efeda7488f243fa928ef42c35fa5737c3cfc290c1c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418eae81a653d94ae9f064a4b62e43d3048863c1a498a942fd11c4cec390c2ca60ff4cacd241dd9b8165b0bed3ac81c69d75c71a642e080e01b6bed4eb0040bb2dae1005708995c2cb617da75b65c089f7de7fed49ad2a1311a483b8556610b2d85f69d6d971b79a7c2dbacfda91456a691c0d32f32f32e3cb882d0190b6d81b5c2cb617da75b684b8596c2fb4eb6d0970b2d85f69d6da12e1fb5228ad4d31c0d32f32f32e3cb89708170b2d85f69d6da17da91456a69f7034cbccbccb8f2e165b0bed3adb425c2b857b534911641fd486b0a44ff7ff2d4d2425507f521ac2913fdffcb534929920feaa3d45feff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286bf049b63c1a498a94309f052a628ed4a4f52e165b0bcd3cf3825e74d347fc553b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177bc590c473ae9d29aee30c483351eaa2f842fe8739ceb90ebf4ad8948c22b3d8943151abacf54482d862a18ff02cb617d965a7dac0">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286418e21eaa8a44af28c858ce7eabd454f048a63a0e2cbad81d142fd11c853032a2f2ac890c7c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641958faa3a8eb32f20cd47aa8be10bfa1ce73ae43afd2b04856242a466a3cabfc990c8c160e3bb03ae7403e30bcf8dc9daf88e067e110023fb539e5dfab5e4bdbb0dddb821bf049074b77da867465921725875e6d9533a32fa3f2efd778f9b9905b6a9b59b8e6c0cddd1dde870fe2f79adfa2605a9f1a22b7f268919aa77d0bd5fe3873605be3bc01f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c5049c63c1a498a943129e8a0fe228ed4a4f52e165b0bcd3cf3825e74d347f7abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c1c4518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ffc5c7">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"82864189ad74f832525b1721e90485612bcc697fc1539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c073ae9d29aee30c5740d329eca574f832525b1721e963c1a498a94309f052a628ed4a4f52e165b0bcd3cf3825e74d347fca">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286418e24952e3accba7c19292d8b90f4ff048d602c5b65086087b6a4afd107abc4c7c390c2bf60ff4cacd241dd9b8165b0bed3ac81c69d75c71a642e080e01b6bed4eb0040bb2dae1005708995c2cb617da75b65c089f7de7fed49ad2a1311a483b8556610b2d85f69d6d971b79a7c2dbacfda91456a691c0d32f32f32e3cb882d0190b6d81b5c2cb617da75b684b8596c2fb4eb6d0970b2d85f69d6da12e1fb5228ad4d31c0d32f32f32e3cb89708170b2d85f69d6da17da91456a69f7034cbccbccb8f2e165b0bed3adb425c2b857b534911641fd486b0a44ff7ff2d4d2425507f521ac2913fdffcb534929920feaa3d45feff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"82864188b174f835332e43d3048363a1d3c6c2c590c4c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c0048d602c5a82d8861139fc2fd107abc6c9c590c473af9d29aee30c5740d329eca574f832525b1721e963c1a498a943129e8a0fe228ed4a4f52e165b0bcd3cf3825e74d347fc0">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286c404856255e634bfc7c3c690c5bec0">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286bf048363a1d3c7c3c690c5be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8386418c39115afdcb619069aa5c87a784c853b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177bc890c70f0d82085b5f911d75d0620d263d4c1c88ad6b0bdad2a13f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641909066a3d545f085fd0e739d721d7e95ff04896251f7310f52e621ffcbc7ca90c960e3bb03ae7403e30bcf8dc9daf88e067e110023fb539e5dfab5e4bdbb0dddb821bf049074b77da867465921725875e6d9533a32fa3f2efd778f9b9905b6a9b59b8e6c0cddd1dde870fe2f79adfa2605a9f1a22b7f268919aa77d0bd5fe3873605be3bc01f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418732fe8d4ccbf4af048e60d48e62a182210c7ae825c8847f7abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c1538e497ca582211f5f2c7cfdf6800b87518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff73ac9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f83804008821032b0000001b684b207522b3ad18d05">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c3048c60d48e62a1825051d8bcc697c2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c4049860d48e62a18a8be10c10f1d83aa435533081d48acebcc697c3bec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c40497628346c545f0863a20f531d116444a0684441882bf447fc353032a2f2ac290c1c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418f9ca3928354542fe8739ceb90ebf4af04032f686cc5cac390c273ae9d29aee30c483351eaa2f842fe8739ceb90ebf4ad8948c22b3d8943151abacf54482d862a18ff02cb617d965a7da6092bb03ae7403e30bcf8dc9daf88e067e110023">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c804a2628346c545f08610721874683c96d0562c28e849a92ee28ec24f106202d49aa5fa23c7c1c590c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c8049a628346c545f0863a76b4b67a63a76b4b67a5d25a6ba0692afd11c7c1c590c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c804a0628346c545f08610721874683c96d05625190b19cfd620c4cc415a9354bf447fc7c1c590c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a1d322e45fd1a9997e95f04c260d4c4834d377d3562682ec5f9fb970b7bd1975ceee1c3b16596f220016f417c0b767c0c0e9918100220840cac0000006da12c81d48aceb000059a5bb98be17e95cdc8c3c690c5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641881997f46a665fa57f04a762393bb0e81b038c040f0841030200441009a6012ca4eed4964ef1ac03bd3bd87e96ac35e634bfc9c4c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a762393bb0e85c13ec040f082f3ec0801104027d815414c9ecc491ee8e94e994be6332c35fa5737fc9c4c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286ca0494628346c545f0863a76b4b67a63a76b4b67a5fa23c9c3c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286ca0497628346c545f0863c1a498a9431e0d24c54a220c415fa23c9c3c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a662393bb027db7d8081e6c22758100220840260d40fa0a2922f6789f8fa4c6abb27d2c35e634bc9c4c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a662393bb027db7d8081e6c22698100220840263bf71d111273a1917589d3f5313abeb0d798d2fc9c4c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286be04a562393bb0c818081d1059698100220804fb1dbb8891513f48ec183b58dd686dbf0b0d7e95cdc9c4c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286ca049960d48e62a18a8be10c770b044218a468496c5aa2f842e4423fc9c8c790c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418df5d07e48bfa1ce73ae43afd2bf048260e6cac4c890c7c6c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cb049a60d48e62a18a8be10c770b1517c22241c861d11da949ea5e634bcac5c890c773a89d29aee30c197f46a665fa56c1a91cc5431517c218ee1608843148d092d8b545f085c8847f9dc21f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049c60d48e62a18a4b2186c7aa6d3306a666283545e4690b135e42bcc697cbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049960d48e62a18a8be10c770b1eaa8915d864962310f5217aea9bcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049a60d48e62a18a4b2186c7aa6d3306a666083b2cb0e9884bd754dfcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049e60d48e62a18a4b2186c7aa6d3306a6662b9ce93e92f889a6fc85b5e634bfcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049d60d48e62a18a8be10c770b08aec324b14736ddfb8a3b093dd3f95ebaa6cbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b158286cc049a60d48e62a18a8be10c770b08aec324b11887dfe0c9496c5ebaa6cbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049d60d48e62a18a8be10c770b1eaa8915d8649628c64eb3587b6a917aea9bcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049460d48e62a18a8be10c770b160eaea6aa65ebaa6fcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049a60d48e62a18a8be10c770b1eaa8a6a87dcd122bb0c92af5d537fcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf048260e6cbc5c990c8c7c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049063d5a663a56c5b42581d961fc2f31a5fcbc6c990c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc04a060d48e62a18a0c849aa99849cf431eba0fc918f5d07e48b1a5b0749579d34d1fcb53b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177bca90c9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"82864194b0a3a126a4aba0a3b093afe8739ce3acc85fa57f048663b858ace84fcdc7cb90cac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286ce0499628346c545f0863c1a498a94309f052a628ed4a4f52f3a69a3cdbfcb90cac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c1048260e6cdc7cb90ca73ffbe039d29aee30c197f46a665fa56c1a91cc543141909355330939e863d741f9231eba0fc91634b60e92af3a69a3fc45840413a535aacc2a8b0aa2c3eba0fc917f439ce75c875fa56a8b09ccab3850ab37c751693a22a8be100089f6d51386559be203af3a07db65a544e78559bea89c1d732acdf0aa2712ab37fa2a272d559bf3a535aa26d98551362c2a89b1619ca3928354542fe8739ceb90ebf4ad51362c33d0a89b6708d5136cdf100220840cac0000006da12c81d48aceb46341551396165559bf3a535aa26d98551362c2a89b1619066a3d545f085fd0e739d721d7e95aa26c586522a26c585159ec4a151362c351abacf54482d862a151362c2a89b6708596c2fb2cb4fb4a89c2d44559bf8385e5b2eb544e22b190b924559bea89ce86479034012acdf544e27d565559bea89c2583f1470b28559bff08b0818274a6b55985516154587d741f922fe8739ceb90ebf4ad5161e8854587d741f922c6a925b2a1d0b463aaa2d8bf442ace135335b650ab37e74a6b544db30aa26c58551362c239d7f46a665fa56a89b161352398a8544d8b09a9544d8b09aaa8b60e4544d8b0aa270d4cd58d33aacdf8eab03121110626400584d817e95cca89c2506275b6ca1566fce94d6a89b661544d8b0aa26c586c917f439ce75c875fa56a89b1618fd9151362c28910a89b1617dd71a7951362c25ee9544db37df75c69e544d8b0fcce94d6a89b661544d8b0aa26c586832126aa65fd0e739d721d7e95aa26c587d455d87a4ea89b161a0c849aa9801544d8b0aa26d9c27544db37f2eb0b2d83fc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c70486610461139fc7cec8cc90cbcac5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641881cebfa35332fd2bf04a862393bb0171a65b698081e03c26d810022084016273181eeab3cf7447e4122401eb14cb0d798d2ffcfcacd90cccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286d00498628346c545f0863c1a498a94306a473150c27c14a95ebaa6cfcacd90cc73ffcd029d29aee30c197f46a665fa56c5068d8a8be10c7834931528613e0a54c51da949ea5e74d347f9140165b0bed3e179f7197be087b6a4c151ea2fc1a4813e0c9496c893e0a54c51da949ea885f140ea9a0e83f83d8698d50e88ac2ca5b0b6413a535aacc2a8b0aa2c339472506a8a85fd0e739d721d7e95aa2c33d0ab3846ab37c4008821032b0000001b684b207522b3ad18d05f8b0b21ac291307c24be5302b81b56ebaac2f2b81a56ec2add855c0caaf0557af2b830ab76f2afb2ae06d5bafab75a57032abc156eb8ae0655784abd0ab81c55f75585b57038abf79586f2b81a56ebcabc05706156ede55e0ab81b56ee05617d5c0dab75e56e815c0caaf0558702b81f55f795bb855c0faaf32ac2f2b81955e0aaf5e57038add0ab76157036abd7557efab81c55e7d57d95706156ede55e795c0caaf095badab81955e655bacab81955e12b742ae0655784ac2d2b81955e12b75f57032abccaafdf57032abccab76f2b81955e65579a5706156ede55e7d510165440e7fc2b81955e6557aeab81955e65585b57032abccab76f2b81955e12b75ff8b6ca209d29ad56615458551619ca3928354542fe8739ceb90ebf4ad51619e8559c23559be200441081958000000db425903a9159d68c682ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418732fe8d4ccbf4af049b628346c545f0863c1a498a94306a473150c27c14a98ba0d7aea9bf7abcd07f66a281b0dae053fad0321aa49d13fda992a49685340c8a6adca7e28102ef7da9677b8171707f6a62293a9d810020004015309ac2ca7f2c05c5c1cdd090cfc0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf0499628346c545f0863c1a498a94309f052a628ed4a4f52f3a69a3bec4d090cfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418caed9652d8b917f46a665fa5784bfce518b2d4b70ddf45abefb4005db90408721eaa8a4498f5788ea52d6b0e83772ff73ac9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f83804008821032b0000001b684b207522b3ad18d05">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c184c2539a352398ac5754df46a473158f9fbed00177bebe58f9fbed00176fc190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c284c3bec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c284c3bec190c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049e60d48e62a18352c1a998d4b15904c1a9080010b4f8990564a6c0afd2b9bfc3bec190c0c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418eb6ca10b8eb32e9f064a4b62e43d3048d602c5b65086087b6a4afd107abc453032a2f2ac390c2c760ff4cacd241dd9b8165b0bed3ac81c69d75c71a642e080e01b6bed4eb0040bb2dae1005708995c2cb617da75b65c089f7de7fed49ad2a1311a483b8556610b2d85f69d6d971b79a7c2dbacfda91456a691c0d32f32f32e3cb882d0190b6d81b5c2cb617da75b684b8596c2fb4eb6d0970b2d85f69d6da12e1fb5228ad4d31c0d32f32f32e3cb89708170b2d85f69d6da17da91456a69f7034cbccbccb8f2e165b0bed3adb425c2b857b534911641fd486b0a44ff7ff2d4d2425507f521ac2913fdffcb534929920feaa3d45feff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"8286c584c6c1c490c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418f9ca3928354542fe8739ceb90ebf4af04896251f7310f52e621ffc7c2c590c460ff71bb03ae7403e30bcf8dc9daf88e067e110023fb539e5d38396ebdab468c1a77c1240073d67c9e37b583a4b7b863d117ec3bf5efdf7978cae61f184bf96f98a2cc5e45ed45fccbc98fc66bfb39f69b2e1c7d1f5f1e5a34e2a77f8e53755e76a75d1c1ee316fbf2ed2598fc5fe99f95962331fceeb7c9b90f86b7b5f7c1c218f2f02bfe727575fce7e59ac71345fe9cb6f5f5778e78fb72ec9cb7621f9ddd47270d5f1de00fda9cf2e9c1cb761bb04904cd8a569b8dac1d0b97b7b1f571d734f5e3cedc32b98345f71cc3a3f724b4d7931322f5e27ad7fddbe5cc10caef7c57f3f4edd5d2ecc59a9c5377c2498ff1de00ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04032f686cc853b0497ca589d34d1f43aeba0c41a4c7a98f33a69a3fdf9a68fa1d75d0620d263d4c79a68fbed00177febe58f9fbed00177bc790c6c5bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"828641881997f46a665fa57f048e60d48e62a1849493b1192a0afd11cac3c890c7739f9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f848293a4ff09828f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04a762393bb0c844d30103acb4e898100220804fb14f5989e3da67a229e3aeaf3ea24d47586bcc697fcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286bf04a862393bb0e85c13ec040eb4d85d60400882013ec75ec77ac9a3b621faeb4f9f32b24ed2ac35e634bfcbc6c990c8be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cc049a60d48e62a18a4b2186c7aa6d3306a666083b2cb0e989b5ebaa6fcbc6c990c873a89d29aee30c197f46a665fa56c1a91cc5431517c218ee1608843148d092d8b545f085c8847f9dc21f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c004a662393bb027db7d8081e6c2275810022084026096203377afdd0eb511a8aa391ef542c35e634bccc7ca90c9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cd04a660d48e62a18a8be10c47ea83545431dc400880fb148cd5311d56311d5644c801e5f02f5d537fccc7ca90c9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418df5d07e48bfa1ce73ae43afd2bf048260e6cdc6cb90cac06092bb03ae7403e30bcf8dc9daf88e067e110023">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286cf049b60d48e62a18a8be10c27c19292d8c27c448acf1320044e017e95cdcec9cc90cbc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c204a662393bb017d9602075a65a030200441009f62c9eab51dcd3f8ae67facf38eb7fbd4b0d7e95cdcec9cc90cbc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c204a762393bb0179c130103ccb8f8581002208190312f57bc7947bedea6a2b97c75191beb42c35e634bcec9cc90cbc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c504032f686ccec3cc90cbc1c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c204a762393bb0e85c13ec040f082f818100220804fb11799fcceddbd64eeca1c39a63b51f6586bcc697cec9cc90cb739f9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f848107213e13051f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a762393bb0e85c13ec040eb6f3c060400882013ec77427a953d6ceecca4345ee5e80963586bf4ae6cfcacd90ccbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c304a662393bb0c818081d1080cb0200441009f62cf7dbaf99e91f5ead467eb6514bcec4b0d7e95cdfcfcacd90ccbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c0048260e6cfc8cd90ccbebf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286d0049e60d48e62a18a8be10c52792da0ac5320801101d03f14c828ec24ebf4ae6fcfcacd90ccbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286419821ea496a4afe8c5a24a4750e62d8b96498a8b4c92af5153f04a760693d2861d0b12bcc4b1b052b0e8657a58ca591f70a219197a469c65e91c238511485697e95cdd0cbce90cdbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c704032f686cd0c5ce90cdbfc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c404a762393bb0e85c13ec040eb2e05e60400882013ec26890ed52dce4b47d3c2687cb1d8eac35fa5737d0cbce90cd739f9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f848231a0bf09828f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c504a762393bb0cb61698081d03ceb6c0801104201312199b653516d5d3c3f6d0fd567a990b0d7e95cdfd1cccf90cebe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c2048260e6d1cacf90cebec1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286418a1d322e45fd1a9997e95f04c160d4c4834d36edfb30eec5b9cbb15b476d9f97d7ebb6eaf32cb2de42d816f4f32b767c0c0e9918100220840cac00000071e756f47a560000b0564cf6d31afd2b9bd2cdd090cfbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c604a662393bb0c818081d101f6d8100220804fb1178f7ebdb32a3dcfdbb9ed2389b47dd61afd2b9bfd2cdd090cfbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c004a860693d28604cb00658942c3aeb02640cca175d7de94010b91b6f9246d99638db95e7de7595fa5737d2cdd090cfbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c904032f686cd2c7d090cfbfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c604a862393bb0e85c13ec040eb4d85d60400882013ec76f54b688a5b4f575f12ced77f0e01e586bcc697fd2cdd090cf739e9d29aee30c4e51c941aa2a17f439ce75c875fa56c4f47f8481159fe13051">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c704a962393bb0e85c13ec040eb2e05a60400882013ec78a91d633592f497a7aeddba78e95796561afd2b9bfd3ced190d0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c4048260e6d3ccd190d0bec3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c704a762393bb027db7d8081e6c22698100220840261d097c5824cf44bda217a376f53f4f0b0d798d2ffd3ced190d0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c704a662393bb0c818081d1040e30200441009f62727b30dff0e7bf6667a23afbabbf93ac35fa5737fd3ced190d0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8286c704a762393bb027000798081d75d138c0801104027d8f768e31cd44d223c1ab67c798a51f8586bf4ae6d3ced190d0be">>, +[ +{<<":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">>} +] +} +]}. +{story_21, [ +{ +undefined, +<<"488264016196dc34fd280654d27eea0801128166e01ab82714c5a37f7685dc5b3b96cf0f1f919d29aee30c78f1e171d23f67a9721e963f0f0d8213204088ea52d6b0e83772ff8c49a929ed4c02fa5291f98040408721eaa8a4498f5788cc52d6b4341bb97f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8371b75d7f0188ea52d6b0e83772ff6196df697e94132a6a225410022502edc6deb8d3aa62d1bfc45891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be940bea6a225410022504cdc6dfb8dbca62d1bf55857d913ad03f4089f2b0e9f6b12558d27fadf139af453e9a6ecd66a69eccb61ee187b51879ad78d33812f9a247f67e4cfbfddadbe359dfebee5ed81fd9041f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d023433c76196e4593e94138a6e2d6a0801128215c0bd719754c5a37fcd6c96df697e94136a6e2d6a0801128205c139704153168dffc7c65585644d3efb607f05accf7a8b3af0a2c12cf9cb90fa7c6b5af79f38add14e5d935bbc34f1d384939ab4e9fcde29badb6611849e2083c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d8365d75acb6196df697e94640a6a225410022504cdc00ae34d298b46ffd1cac96c96df697e94640a6a225410022504cdc00ae34d298b46ff5585640fba067f7f02ac06eab164af0831d07365be9bbb91d6b067d64a2f6a93d2c4bb8eea35b39f7f092efa58140a7a79ede42f1041c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d5d40f28ba4753550547475355f6a5634cf031f6a487a466aa05c748fd9ea5c87a7ed42f9acd615106e1a7e94032b693f7584008940b3700d5c138a62d1bff4085aec1cd48ff86a8eb10649cbf4088f2b0e9f6b1a4583f91063c0e6efd6f1b7fad73743ba16dacafff4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f95886a8eb10649cbf64022d314088f2b0e9f6b1a4585fb4d1da49b466f36871b92cdfad13f39b12e8d9ebcdee36d7c534c86859a77f620aa6bfdc63c70b0d68c3819be9e28bb8dcbad4f5ff7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d023433d96196df697e940854dc5ad410022502cdc64371b0a98b46ffdfd8d76c96c361be940894dc5ad41000f28105c0b3719694c5a37f558669b75d6db73f7f0cad87bcc6fd4b9b3be2365e9c6b49aaf3a39211da4c0f0a1df6eef3402fad825d9dbacce1b8e8bb7a6cbd64d9041fd6d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d40f0d8375e0b3dd6196c361be940094d27eea0801128076e001700153168dffe3dcdb6c96c361be940094d27eea0801128066e341b82654c5a37f5585081e138e7f7f02abbc0d6d1ab77d76d4823351b744fdd91bd5a7dd75e50c52496e0cee97f0ba28bd91079f00348e401af78820dad9408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83136067e36196df697e9413ea693f7504008540b971a72e32f298b46fe96c96e4593e940094cb6d4a0801028176e36ddc6da53168dfe3e2558613ecb8271c7f7f04aededcf92ad51b93f0d5d9ad3bb9efe297b7f445edd8b6f0c63975f9f18baee6fa1b4e2f75e7a4de6ff0a795b34107e0df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f0d8375a683e76196c361be9413ca6e2d6a080112816ae36fdc13ca62d1bfed6c96df3dbf4a019532db52820040a0037001b8d054c5a37fe7e65585642065a7df7f02ad7abb7b55c3417d4e0c0fdfbd659d391efb69befe2e9da6c5eac707a3d4cb2ddb3a05ed382367664e8fe3d9041fe4e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d83682277eb6196df3dbf4a09d53716b50400894106e34e5c680a62d1bff1eae96c96e4593e940894dc5ad410022504cdc69bb820298b46ff5586642e36d38eff7f02aecfa0f267cbd2edbc38338fa7307b1fa1c84dfc511517f5ecccb1f26667972e79687fd75db83dcba7252fe8f1041fe8e7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d83642cb7ef6196dd6d5f4a05c53716b504008940b371a7ee32053168dff5eeed6c96df3dbf4a05953716b5040089403571a72e32d298b46f5586682d34d3eeff7f02ac7356144afd5aed5afb517ae5b3d328c9a7de91faf53392d2e09bcb2fef126ba7b739351884369019bb26820feceb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce0f0d83640cbff36196dd6d5f4a01a5340ec5040089408ae34d5c036a62d1bf7685dc5b3b96cff3f20f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96c361be940094d03b1410022502f5c69cb80694c5a37f55861040f09e10bf7f03acb1df4cdf0344d9ebf7906be6dbf64f2e63f2bf6de7fd6396b6cb575941e9f1b97730f0c4e6b25fe333b34107f1f0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d30f0d83684217408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe940b8a65b68504008940bb7001b8d3ca62d1bfc35891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe941094cb6d4a08007d408ae005702053168dff55867da79f75b7ff7f05ace34ea2ce6b5ca6ff0bb5efc7ea8a4d555de426ef6eebf6cc7e218a4d26a1c3753b3db264cd6b55f7f1b268207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc0f0d830ba10fc66196d07abe9413ca693f75040085400ae04171a0a98b46ffcbc5c46c97df3dbf4a05b5349fba82001d500d5c13771b6d4c5a37ff558613ed802e09cf7f04adf17e7e002d97bc0399fd6d9a1e941cde7c1bd27037924c3bd6b2f6f6f26ff1e75f96edc336287bb60e6fec820fc3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d8365d107ca6196c361be940bca693f75040085410ae099b8c854c5a37fcfc9c86c96df697e94034a651d4a08010a817ae34f5c1014c5a37f558664027c4f36e77f02aee7f9a712d573d06c1c4c0987b7166b2f64974eabfafbe4cdab0379d693deb2fe7bf5ce70e7b766fcfd3bc9ba1820c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e40f0d84134cb8ffce6196dc34fd280654d27eea0801128076e001700053168dffd3cdcc6c96dc34fd280654d27eea0801128066e34cdc684a62d1bf5584105e71df7f02ac10d0341fd13b17c5bd1bc3e2a73c394f4bddf56893f767ee7fd9f4cf250d35cfd1c2b4391f9f63b1e1966820cbca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d830882e7d36196dc34fd282794cb6d0a080112806ee01bb8dbaa62d1bfd8d2d16c96d07abe9413ca612c6a08010a817ae32e5c0894c5a37f558579a7db7c207f03ad72767536e484e9eb6323d1152d8de88d62dc66e3eefdea49e3d64e1f987773267c393664ddeba37b1a73bc3041d0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ed0f0d8469d75c77d76196c361be940bea6a225410022502d5c6c571a794c5a37fdcd6d56c96d07abe9403ca6a2254100225042b8c82e36da98b46ff5585089e7da7df7f02ad46a735f6be2f583b0f5d743783be9e75624579ad9ed87f11c59e92adcc61353c82279ddb9cfe3bf1d9bf64107fd4d3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f10f0d8369c0b3db6196dd6d5f4a09d5349fba820042a099b8d3571b1298b46fe0dad96c96d07abe941054d27eea08010a820dc6857196d4c5a37f558613ed840cbadf7f02adeddde69abffbe6dcf4755b3e2e815a1cba6be9ee2cfabde7da22624598c79f6d2ff4871a7a03d55adc724d9041d8d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f50f0d8365f65adf6195dc34fd282029a88950400894002e00371a0a98b46fe4dedd6c96c361be9413ca6e2d6a0801128166e320b8cbaa62d1bf5585089b71b71c7f02adcbc9bd9eade58af8db3757e1c9811769ab8b9cecf49d6fc2969eb13578e5d3375a9d76cfcd5d1e2797f943041fdcdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d830b2d35e46196dc34fd280654d27eea0801128005c6dfb8c814c5a37fe9e3e20f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96e4593e94134a6a225410022502f5c6c3700f298b46ff558469969f777f03adc99a8f3ca923d1fac78e2c39709a33f64df74327b0635b175ba3f4cee1e2139a3c68bdf92e79531639b9f8820fe1e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ec6c96e4593e940b6a436cca0801128215c6c371b654c5a37f5f86497ca582211f7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c134c81d79d0ff6496d07abe940b8a436cca080c89403b71b6ee32f298b46f6196dc34fd280654d27eea0801128166e01ab82754c5a37f0f0d836d96daef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f36c96e4593e94642a6a225410022502cdc13771b0298b46ffc4c3c25893aed8e8313e94a47e561cc581c640d3827d917f6496df697e94138a6a22541019128166e32fdc6df53168dfc10f0d8365c6def2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f66c96df697e94132a6a225410022500f5c002e36ca98b46ffc7c6c55893aed8e8313e94a47e561cc581c13ef3c2780d7f6496df697e940bea6a22541019128205c643702153168dffc40f0d8375c645f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8369e035f66196e4593e94642a6a2254100225041b8db3700ea98b46ff7685dc5b3b96cff6f56c96d07abe9413ea6a2254100225041b8105c034a62d1bff5585109d69e0ff7f11ac8e4f5c79cd2bb19f93e0eb3f07efbfd776c6ac4bd8da0cf17ab65add7fddfcf159c61786fc767b164f10c107f4f3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d03313438408721eaa8a4498f5788ea52d6b0e83772ff6197dd6d5f4a05b532db42820044a059b8dbb719654c5a37ffc35891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe94005486d99410021504cdc64571b714c5a37f55857db79d105b7f05aec5ddc4e59daef978e1c9aaef9a11af9f38aa5a9b6bfde7abb23b022c9f98f7fb7396e79fedca1b3d6acde9e9a0837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d03333536c66196c361be9413ca6e2d6a080112800dc699b8cbaa62d1bfcbc5c46c96df3dbf4a082a65b6850400854102e340b8dbea62d1bf5585642d844d877f04ac85a2e9f2d79bb0daf597f345bb774e325e3f33b6fd9908d8eee1ae70d45c65ecfba79f17af70e9d329e1820fc3c2408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f40f0d8371f79ccb6196dd6d5f4a32053716b50400894082e36fdc69f53168dfd06c96df3dbf4a019532db52820040a003700e5c644a62d1bfcbca558513ed36075f7f03acbb7bdbd937f4a3070d352c9865295bc9b39eff189f1ca725314417345239f764bd497b75f4f269eeb7686083c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab82794c5a37fd40f28ba4753550547475355f6a5634cf031f6a487a466aa05c748fd9ea5c87a7ed42f9acd615106e1a7e94032b693f7584008940b3700d5c138a62d1bff4085aec1cd48ff86a8eb10649cbf4088f2b0e9f6b1a4583f91063c0e6efd6f1b7fad73743ba16dacafff4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f95886a8eb10649cbf64022d314088f2b0e9f6b1a4585fb4d1da49b466f36871b92cdfad13f39b12e8d9ebcdee36d7c534c86859a77f620aa6bfdc63c70b0d68c3819be9e28bb8dcbad4f5ff7b9384842d695b05443c86aa6fae082d8b43316a4fe75f87497ca589d34d1f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f408cf2b0e9f752d617b5a5424d279a96591b132d32b09b8dc582128961902eacdbae3600b323aebedf5892a47e561cc5804f819034007d295db1d0627f0f0d83085a074084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03323936eecc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be0f0d836dd13dde6196e4593e940814d444a820044a00371966e09e53168dffe3dddc6c96dc34fd282129a88950400854002e340b8d814c5a37ff558379f0337f11ad3c9eeaddde1c9ea5eeee9a7b7efe39088fbf1e08b27e3764ef3cff7ba3d79a5f15cccc3a0eff567713f090c107dbda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f0d8371f6c3d1e7">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"content-length">>, <<"6951">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:28 GMT">>}, +{<<"server">>, <<"Server">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d840baf34ffe47f0db5fd9a4dbea4efe788bf5be7ae5a1fef3fefeefe7cb46afc77bd0f77c897f6dba37d1489b7b1c7ce6f21f5a27c68fc371dfb5bde1f1f408cf2b0e9f6b585ed6950958d278c0b2d85e15d6c2e05ebe27ddf6196e4593e940bca65b685040089410ae36edc136a62d1bf6c96e4593e940bca65b685040089410ae34cdc138a62d1bf0f1399fe40f46095975f68a18db2be37c4eb8fbc50b6fbad048d83f952848fd24a8f76868691fb3d5b9955846c0e38e77f08ad6bc138cf6b3ab01b94b87bf3ef819c58dbe1cf5359b9bdc2baa8ce4cbb76ededfb383607de0cf6536434a218207caf0ae0508cb2592395b69b7c6d0da69d69f20891b652491b32906b9283db24b61ea4af5152a7f57a83db261b0f527fbfe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f16c96df697e94640a6a2254100225002b8c86e004a62d1bffce7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c640d084eb6cff6496df697e94138a6a22541019128015c641704053168dff6196dc34fd280654d27eea0801128166e01ab82754c5a37f0f0d846da105dff3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d830bc277f46196df3dbf4a09d53716b5040089410ae04571b794c5a37f7685dc5b3b96cff4f36c96d07abe940894d03b1410022504cdc6ddb81654c5a37f5585642e32f3e17f0badf1c220232b5c72f9cd774ac1a917e19a68b370a65e31d631e2f47779968e0ff8c0fe5a7162c59b63e2c1b2083ff2f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d8308596b408721eaa8a4498f5788ea52d6b0e83772ff6196df697e9403ea6a225410022502f5c03f702ea98b46ffc35891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46fc45585105a0ba1177f04aedc7d99f7519fc67aa2e9260d5e8df98bc4c6ab9facd5cf5f8e1b9c5a48f633e2bd7daee5c9b66729d5666efb2083f8f7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d03363336c36196dc34fd282029a889504008940b971b66e01b53168dffc8c2c16c96e4593e940094cb6d4a0801028215c0bd71a794c5a37f5585085f6de79a7f02ae4f8c72f4fcdfc9b9f0d17e17f31fb66e37797e7aea8c736ed3335c67f4cd284e0dfdfd6bc76337abfdece45b20837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df0f0d03323436c96196df3dbf4a09c532db42820044a041704f5c644a62d1bfcec8c76c96e4593e940094cb6d4a0801028215c0bf7190298b46ff558679c69f65b77f7f04acc56c3e725590c3d856b0ed337e2ef0fcef44d7bb466fca3b5d1e1461e915442567efcb046141759f5c9b2083c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab827d4c5a37fd20f28ba4753550547475355f6a5634cf031f6a487a466aa05c748fd9ea5c87a7ed42f9acd615106e1a7e94032b693f7584008940b3700d5c138a62d1bfff77f37910378716d73066dda6febfdbd81bdfb72ecf6f56401307f26b4dfd071b3af2f5efcb168f5b84da3a25dbd5e51128272dfe5d170e8debb24db8ecbd93ada2af1f4776d5bfc5027d9fddf2f3d1f9ff4db5f92497ca589d34d1f6a1271d882a60e1bf0acf70f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dfff3f2f10f0d83085a07f0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d66c96df697e94034a6e2d6a080112810dc6deb82654c5a37fefdedd5893aed8e8313e94a47e561cc581c136db22780fff6496d07abe94640a436cca080c89408ae043702f298b46ffc50f0d03363536d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d96c96d07abe940054d444a820044a04171966e002a62d1bfff2e1e05893aed8e8313e94a47e561cc581c13cdb400bafff6496d07abe94034a6a22541019128076e32d5c03ca62d1bfc80f0d83109b0fd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc6c96c361be941054dc5ad410022500fdc6dbb810298b46fff5e4e35893aed8e8313e94a47e561cc581c13a2704f3ccff6496dd6d5f4a05f53716b5040644a04571a6ee36253168dfcb0f0d83081f7bdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df6c96e4593e94642a6a2254100225021b8d3d71b7d4c5a37ff8e7e65893aed8e8313e94a47e561cc581c640d81c034e7f6496e4593e9413aa6a2254101912800dc65eb8cb6a62d1bfce0f0d830b2d0bde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d8308401f6c96d07abe9403ea65b68504008940b971a05c0baa62d1bfe55892aed8e8313e94a47e561cc581c105c6c2c89e6497c361be940b8a65b685040644a059b8dbf71b754c5a37ffd1e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8313426be26196df3dbf4a05e535112a080112817ae36e5c0baa62d1bfe7e1e06c96c361be9403aa6a225410021500cdc659b8dbca62d1bf55850b2e044fb37f17add1b6bddb9cbbaf49ba7ae23abb4db5ca7d499bce2ae7c9666a1fe9be926298df82bf49394dc64c3e37ec178820dcdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8365e00be66196c361be940bea6a225410022500f5c65ab82754c5a37febe5e46c96df697e94642a651d4a0801128266e361b800a98b46ff55850b211080cf7f02ac3ce81adc63c1a22a7711ec15570e0fcc09e0e69eadbefcd8bcf516148f895fd99bbd07ed1f8dd7a3f3a61820e0df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f0d0132db4087aaa21ca4498f57842507417ff0">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"content-length">>, <<"2">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:29 GMT">>}, +{<<"nncoection">>, <<"close">>}, +{<<"server">>, <<"Server">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8c814c5a37ff17f1d9206dd1972fe62de1cdc7068fcfc678eecbaff4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f97f1db5d3db169c11b1ba5ebe73e4963d5ddd6676f2ddba4cfc74e2e98b3e67f15ed397c4cdefe42b323d7fcdbf891a3dd99dbe1fb3efe7fb7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f87352398ac4c697f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c57685dc5b3b96cf0f28ba4753550547475355f6a5634cf031f6a487a466aa05c748fd9ea5c87a7ed42f9acd615106e1a7e94032b693f7584008940b3700d5c138a62d1bff4085aec1cd48ff86a8eb10649cbf7f079108b47eede6cef85ffc7af5fe78eef16f7fc65886a8eb10649cbfe67f07b4a6845193463aff47e34e1462c20f21cfc7076b36f1c4c93aeae9fef5b3b76efcf4f8777cee1f3e475bc3d36e636823f454c0a8cdc6c55f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc4408cf2b0e9f752d617b5a5424d279a96591b132d32b09b8dc582128961902eacdbae3600b323aebedf5892a47e561cc5804f819034007d295db1d0627f0f0d83085a074084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d8413cfbcf7408721eaa8a4498f5788ea52d6b0e83772ff6196dc34fd282029a8895040089403d702cdc136a62d1bffc85891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe94132a65b6850400894102e32ddc6dd53168df55850884e81c6f7f18aba74e44ad505ccf7b2c867a92604d877ff389614e2d3bc45b51ab66747e7510ee9e18b3e2a9f35b8a3d90417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d846402643fc66196df3dbf4a002a693f75040089403971915c65953168dfd0c5c46c96df3dbf4a002a693f750400894002e00171b7d4c5a37f55850bee32177f7f04aec392fc6fe1bdb356f1d6cd6d6571cdf4599247bc64fd8b2038787afcd9d9cd8bd6bc1a5bc3926edfad5dd75c3041c3c2408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d60f0d84136e3ef7cb6196c361be9413ca6e2d6a0801128105c65fb8c894c5a37fd56c96e4593e940bea6e2d6a0801128176e045704f298b46ffcbca558564217c0fbd7f03ac9f366a0de7618c0ef446f8e2be6bf7eb9f9b39f0703e4ee26bb3fc65bccf0d49aeacbc5976dcfcb8574f8820c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eb0f0d84138c843fcf6196e4593e94642a6a225410022502e5c6dcb8d094c5a37fd9cecd6c96d07abe940b6a6a2254100225040b8166e32053168dff5585134d89c7bf7f02aba2be010e4d81e913a7a5e8b0f1c99d1eff437b07159ef70cc17459455cef5088fb2599ec972d5b9d2ec820cccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ef0f0d8465a6de73d36196df3dbf4a09b535112a080112820dc65ab807d4c5a37fddd2d16c96d07abe941094d444a820044a05cb8cb3702d298b46ff558575a74020ff7f02adbfa631a7d20b57e0b3f0e0e79eb6ea668c44f33dfe3f82bf89bbdefb71e15e7c7afc2d9d62eeda9a9d8bbf8820d0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e87f1b9a005a232cba0584dc6eac10944b46d38359d64a21bcc85f70b27fe3e5e40f0d023533">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e9e1e8e7e6e5e45f89352398ac7958c43d5f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffe36c96df697e941054dc5ad410020502edc65db8d054c5a37f0f138cfe5a69e716748d8dc65a07f352848fd24a8f0f0d83136f83">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8465b6da0fdc6196df697e94640a6a225410022500edc002e002a62d1bffe66c96c361be94134a436cca080112816ee05fb821298b46ffdcdb558565c75a71ff7f07abeb5eebaf43d1a40b6121dce39b851bb4dd5bc517a5f14c9979509bc09408d6441b9f72608cc9bb59f64107d9d8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d84642cb4cfe06196c361be94138a6a2254100225041b8176e34053168dffeadfde6c96e4593e94134a6a225410022502f5c13571a6d4c5a37f558571c0b8107f7f02ad3337b7fa9dc4539376be3b1dcfdb2f06f5ec6f670f18e4d76fe9b723c4d9a7a826db668daeb3e5be7b26a26820dddc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d84640f85ffe46196c361be940bea6a225410022502e5c643704ea98b46ffeee3e26c96df3dbf4a099521b665040089410ae043700153168dff5585089e65b7997f02aea5ea52f3866e7d583c861d15ed8cee76bbef0f9ed97b6fce5eaf7bf5cb0f3e9e7a0b4e1dee562f5b63abf7c4107fe1e0db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f16c96d07abe941094d444a820044a05bb8205c69953168dff5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6ff75892aed8e8313e94a47e561cc581c64020b2d3606496dc34fd282654d444a820322502e5c10ae000a62d1bff6196dc34fd280654d27eea0801128166e01ab8c814c5a37f0f0d8365f75eee">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f76c96dc34fd28012996da9410022502edc13571b0a98b46ff5f86497ca582211fc35a839bd9ab5893aed8e8313e94a47e561cc581c0bafbacb6077f6496c361be94034a65b6a5040644a0017042b8dbaa62d1bfc30f0d83132d8bf3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96c361be9413ca6e2d6a0801128076e01bb8cb2a62d1bfc3c8c25892aed8e8313e94a47e561cc581c13c203421356496df3dbf4a32053716b5040644a041702d5c6da53168dfc70f0d83105f17f7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96d07abe9413ea6a2254100225000b8c86e05f53168dffc6cbc55893aed8e8313e94a47e561cc581c640d36db826bf6496df697e94138a6a2254101912810dc65eb81694c5a37fca0f0d830baf33408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d8365d6856c96e4593e940b2a65b6a504008940bf7197ee36fa98b46fca5893aed8e8313e94a47e561cc581c0bccbcf36fb9f6496df697e9403ca65b6a5040644a05fb8d06e01c53168dfcec1d1cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d03333539c16196d07abe94132a651d4a080112817ae34edc6de53168dfc95891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be94089486d99410021502cdc699b8d32a62d1bf558410197c1f7f1aaecc19ef72a7cbbb4b77ca3f1b6ff2d87af4c7f98014ed465e991b05ba73606f170bbd9add2616b7fbf3a565a1820f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402d7d158b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff4003703370c1acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7e94bdae0fe75ee84ea6bdd7cea6ae1b54dd0e85356fdaa5fddad4bdab6ff30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813f4087aaa21ca4498f57842507417f0f28d11c8b1a4821775f3a7d0a5ba0edfb561f13d2644983ce8ff89fb52f9e919aa8171d23f67a961c88f4849695c87a7ed4c1e6b3585441be7b7e940056ca3a961019754002e001700153168dff6a6b1a67818f7b9384842d695b05443c86aa6fae082d8b43316a4fda0f0d0232305f87497ca58ae819aa">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ded8c4c3c2c10f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813fc00f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c7bfdb0f0d82105d5f95497ca589d34d1f649c7620a98326ed4b3cf36fac1f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e0dac6c5c4c30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813fc20f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c7c1dd0f0d03313538bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e0dabfc2c1dd0f0d820b80">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bf0f0d0234325f87352398ac4c697f5d9a9d29aee30c22b2ae34c94a5721e960d48e62a18acde4b42f31a56401307f08c9bdae0fe74eac8a5fddad4bdab6a97b86d521bfa14bf838a9be1c87535ee84ea6bdd7cea6ae1b54bbc3729c34e4535f0daa5ed5a14d30f153269dea5fc1a14ddbe1535edc0a6adf7bf90f28d0d1c325f8197af5f79e089c7b0dd704f6066fb217af070b9770dd704f3ff6a17cd66b0a88341ea907ebe94032b693f758400b4a0017000b800298b46ffb52b1a67818fb5243d2335502e34c94a5721e9fe57f19842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3feb0f0d03333133e46196dc34fd280654d27eea0801128166e01ab8c854c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d023432c4c3c2c10f28d0d1c325f8197ef05e699bb7ddbd75c75fc00704cbc065cbed5ebae3a0bbf6a17cd66b0a88341ea907ebe94032b693f758400b4a0017000b800298b46ffb52b1a67818fb5243d2335502e34c94a5721e9fe8c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f0d8371f6c3e9e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"content-length">>, <<"6951">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:30 GMT">>}, +{<<"server">>, <<"Server">>} +] +}, +{ +undefined, +<<"8bc50f0d840baf34ffdc4088f2b0e9f6b1a4585fb5fd9a4dbea4efe788bf5be7ae5a1fef3fefeefe7cb46afc77bd0f77c897f6dba37d1489b7b1c7ce6f21f5a27c68fc371dfb5bde1f1f408cf2b0e9f6b585ed6950958d278c0b2d85e15d6c2e05ebe27ddfc16c96e4593e940bca65b685040089410ae34cdc138a62d1bf0f1399fe40f46095975f68a18db2be37c4eb8fbc50b6fbad048d83f952848fd24a8f76868691fb3d5b9955846c0e38ff7f1aade1762a2eb66e8971d7b60bc6566ee55b8444e3dd3baae50f19786ffc25ecd3ceb6c867c9b1fbb7a3664e9b20837caf0ae0508cb2592395b69b7c6d0da69d69f20891b652491b32906b9283db24b61ea4af5152a7f57a83db261b0f527fbfd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7408cf2b0e9f752d617b5a5424d27990046f3cc900b09b8dd582128961902558afbb23c169d7c8f37ced3ef0f0d023533">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8ec0f28ba4753550547475355f6a5634cf031f6a487a466aa05c748fd9ea5c87a7ed42f9acd615106e1a7e94032b693f7584008940b3700d5c138a62d1bffd74088f2b0e9f6b1a4583f90037af90316f007672d6d35830e6c20c17f0dff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f95886a8eb10649cbfcf7f0ab2c57a73b14e5d57db0eab65374ede1c9bb5738580a321a1bd8af66cbf99a717baf40eff472d6e684334dcad4111c9919fa64fd7f3d20f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f7f049a96591b132d32b09b8dc582128961902eacdbae3600b323aebedf5892a47e561cc5804f819034007d295db1d0627f0f0d83085a074084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87497ca589d34d1f0f0d03313837ee7f04b41ffb468772d5983edefccb0e7c6eb0c38c6bb3f327aedb936bdabf2bc3e789c7f8e4c3e5c25fdc37da770d82d9b380d896b761c97f108c0b2f3cfbede0bd79b03216c36196d07abe941094d444a820044a05db8272e36ca98b46ff409ff2b0e9f6b52548d6e854a194ac7b0d31aa1d0b4a6a0ab4834956320ef3800f92100215821580eef106e32cdc69a5c0007eff408ef2b0e9f6b52548d6a646d69c689f961881246d3201800103f23c00bcd36e80a4146dc8cbc5588aa47e561cc581e71a00016c96df697e9403ca693f7504008540bd71976e042a62d1bf0f1399fe4620491b4c80600040fc8f002f34dba029051b7232f17f9fd3d255850b6e81b7ff7f12acce873233ee7cfb7c2de8199e1e4e15f532df8334b9bd70bb928edd336d4c23d99021e7e02cb7d217a19e68207caf0ae0500e46cbd18a49091c6d36478acb3246170231321702d3eb9283db24b61ea4af5152a7f57a83db261b0f527fbfed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f0d8213227f1e88ea52d6b0e83772ff7f09b4e8e0b847e3acf3762b0e63e1479f4e43361c38591be93dfff7bf5b7ab13499ecf5c3d7786dc9b7ae0d7fbeeade4c1d514105dedf7f098dbe2684fb97ef32d33819bed5ffc87f089210022580f2cc83785eb800dc69c5c0007eff7f0897191f1332c6e371b2e46e95c9250c6f36591f188a58c4dfc76c96df3dbf4a320521b66504008940bd7002b82654c5a37f0f139afe4647c4ccb1b8dc6cb91ba57249431bcd9647c622963137fcffdcdbc67f06adb5ac7e6429b5f417eb8fd1b1d1f5f4f6bf1b598f2670dfc82cffbdcd7acc0692f17369dbf993deee006b1f8820c5f4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf0f0d03323436c47f04b485eaf5170eff5ef952eb93fe70730cb9faec95a23fe3f6f6a943b30bfb5adf8baf4fcc192ad996b7251d9d7acc0e57418e5f04cd7f048c6ae819142fb8cbb7dd0bd7dbce7f0492100215821580f6f0bd7197ae32eae0003f7f7f04971c71802f3318c6028df7db8da764210057df74407db1ffcd6c96df697e9403ca693f7504008540bd71a0dc0094c5a37f0f1399fe471c600bccc63180a37df6e369d9084015f7dd101f6c7fcfe2e1cc7f04ac38051e5e5c22e9bb038e64f19f761433daaae4873ecdb313036ced2d90830e919e7ab2563f586dc97794d041cb4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d60f0d82109dcb7f05b67f3e5f6edffcd5978f60f7ff6e74d9775f2ff7af343a7d7fb7b85db3aa76f0af73744923b538d4ba1bba093befc1c7ab27cdaa11ece97f058d77004583032f5fbcddfc0ce1076196c361be94138a6a2254100225040b8db771b0a98b46ff7f069110022580d2c10ef0bd71b7ee002b8000fd7f06972b4dc6f142075a96371b2b4d3b23923c37c25965786fb5d56c96e4593e94085486bb1410022502f5c6dfb8d32a62d1bf0f139afe4ad371bc5081d6a58dc6cad34ec8e48f0df096595e1bed7f3feae9558571c13e20ff7f07aebae6977bb5fb9fdd987d71dbc7ce924fbfd71d42b6ad5ef2e3c99997fb3dbb2990e91caf959935786acbc1d9041fd4c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f0d03323336d37f06b5677f125b6b9a363ce969ff78a4c9fedff627688eff9fce0d99fc6ffefb7f1648e9659bbfa77fbeb9b25e621ea6a2ee66d385d6f67f7f068dc21036e3cfbaf86f3d7b0de73fc57f059210022580dac17b785eb8d39700d2e0003f7f7f05978c2175e91a96368210c81036f0c2f3a4959091f6c71bffdc6c96c361be940bca681fa504008940bd71a76e042a62d1bf0f1399fe63085d7a46a58da08432040dbc30bce92564247db1c6fff352848fd24a8f76868691fb3d5b99c67f06ad466d73f3e1e87e36d9979552f247ac59c48649d6ed471d79767397cf7ac3c99cdc7378d06e13f5c199b0f8820fdcce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264025f92497ca589d34d1f6a1271d882a60b532acf7f7f3099bdae0fe6f70daa437f429ab86d534eadaa6edf0a9a725ffe7f7f1f842507417f0f1fbe9d29aee30c2171d23f67a961c88f4849695c87a58292967fc2f980f596af2b90f4fc1a481a00dc08652ac07257d6246eb4b09c1bcb3b1b659081101b2bbf0f0d01300f28c534048e42362906b46cc8d2cd4aebeb464740b3211064001c964947f6a772d8831ea803f6a5634cf031f6a487a466aa05cf596af2bd454fda948fcac398b038c81d10000fbf">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"c16196dc34fd280654d27eea0801128166e01ab8c854c5a37f7690dfb75a90d6324e55af1fd1d25602b87f7f02afbdae0fe74eac8a5ee1b46a437f40d4bf8388d4df0e41a9ab86d52ef0dca64d37d4e1a72297b568534c3c54c9a77ff30f1fb79d29aee30c2171d23f67a961c88f4849695c87a58292967fc34907c17cc165b19887aabb0fd0a44ae43d3f0848d36a20a8eb5a82d8b1a40f0d01305885aec3771a4b0f28abdd836f1c1b725f83ed4c1e6b3585441be7b7e940056ca3a960bee814002e001700153168dff6a5634cf0314088ea52d6b0e83772ff8d49a929ed4c0dfd2948fcc020037f0488cc52d6b4341bb97f5f93497ca58ae819aafb50938ec4153070df8567bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d84081f75ffe76196dd6d5f4a082a6a2254100225002b8d3571a6d4c5a37f7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df697e94038a681d8a0801128215c102e09b53168dff5585085c032f397f11adc21bb550d65dcfe6f5ed6d4d92bb7f0b3022e8de2b69bf30b6243e2b07b3d5efbf9d78b25ee94f0dc5d134107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbfe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d830b6273ef6196dd6d5f4a082a6a225410022500fdc002e044a62d1bffc56c96c361be940b6a65b68504008540bf71a15c65c53168dfc5c45585085975e6df7f03aecb8b3ed9aeb9469e83f37e49a6d31bf97aea6de8bbe7eb8e9e1b4bfaf358ba7acf3841871dee97ff43205bd9041fc2e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1c858b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff7f13c1acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7e94bdae0fe75ee84ea6bdd7cea6ae1b54dd0e85356fdaa5fddad4bdab6ff30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813f4087aaa21ca4498f57842507417f0f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c77b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab0f0d0235375f87352398ac4c697f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dad1bfc2c1c00f0d023537c6c5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16c96c361be94101486bb14100225020b806ee34053168dff5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6fc35892aed8e8313e94a47e561cc581c0b4e81d70426496df697e9413aa435d8a080c8940377021b8c894c5a37f6196dc34fd280654d27eea0801128166e01ab8c814c5a37f0f0d83081f6f7f1c88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da0f0d840842177fbe6196d07abe9413ea6a225410022502e5c6dcb8d814c5a37fd9d8d76c96d07abe94134a6e2d6a0801128205c69ab817d4c5a37f5585682f01c0ff7f12ad6cf15d3701ef86fb7473d88ccd64e2deff7db6364e5cf4ec8ea483ce7f1ecadf4dcb34d378306d2277e19a083fd64085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d84642d381fc46196e4593e940baa6a225410022502f5c13f704d298b46ffdf6c96df697e9403ea6a2254100225042b8d06e05b53168dffdfde55850b4d3ec81d7f04ad4f87d66b978d3775f324910aa6fc005bb777c39fdf3ddb2c775cc7e5570ba72f5efd22bd0f7cfc13ecc49a083fdcc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e26c96df697e940054dc5ad41000fa820dc0b9704e298b46ffcecdd25893aed8e8313e94a47e561cc581c0bcdb606db7bf6496df3dbf4a040a65b6a5040644a05cb8d02e09f53168dfee0f0d8364416fcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e56c96df3dbf4a080a6a225410021500f5c64171b7d4c5a37fd1d0d55892aed8e8313e94a47e561cc581c0b2c884f3206496dd6d5f4a042a435d8a080c8940357190dc682a62d1bff10f0d8365b685ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ea0f0d83101a6fce6196d07abe940b8a65b6850400894037704e5c65d53168dfe9e8e76c96e4593e940b2a65b6850400854106e360b8db4a62d1bf55867db642d3ad7f7f08adefd27a5ff69050d0fabf66f9483ec7bf8f1f6bdc7d74f4ddddeb0307e79cde81b2d0df7715bb3396df19b64107e6cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"f90f1fcf9d29aee30c2171d23f67a961c88f4849695c87a58292967fc2f98243db1d0525062755ea2a7e2639e6a0b14c6920bd0e0dd82fd6e7bdf8aac1c7561fcde8e1bf2549a351fe2639e6a0b113b96c803ff5e06496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a1271d882a60e1bf0acf7768abc73f53154d0349272d90f0d826420408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f16c96c361be9413ea681fa504003ea08171b72e09d53168dfdddce15893aed8e8313e94a47e561cc581c0b2cb6e85c6bf6496dd6d5f4a042a435d8a080c8940b5700cdc6db53168df6196dc34fd280654d27eea0801128166e01ab8c854c5a37f0f0d03373339db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bef5eae9e8e70f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813fe60f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c7e5e40f0d023537e3e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f0d84132f381fdb6196df697e9403ea6a225410022504cdc69fb8dbca62d1bff6f5f46c96df697e9403ea6a225410022504cdc133700ca98b46ff55851044113acf7f0bad70d35ef686fddfdb5cb4336edc181ee0f46ef04702e636afca2adadeaf12dfc2d6edb7fc68f76b550b1f9f1041f3da">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886496dd6d5f4a01a5349fba820044a01cb8272e05a53168df6c96e4593e94036a6e2d6a080112820dc0bb702fa98b46ff0f1392fe42fb207c61585185b58ae371c8d901fcff588aa47e561cc5802e89e003769186b19272b025c4bb2a7f5b4b2298c69fef52848fd24a8fed7f31ff46bdae0fe74eac8a5fddad4bdab6a99e1e4a5ee1b5486fe83a97f0713a9be1c87535ee84ea6bdd7cea64e309d4c9c6f9d4c79371d4d5bf59d4d5c36a9ba1d0752ef0dca70d3914bdab429a61e2a64d3bd4bf834297b4ef5376f854d7b70299f55efe7e94bdae0fe74eac8a5fddad4bdab6a99e1e4a5ee1b5486fe83a97f0713a9be1c87535ee84ea6bdd7cea64e309d4c9c6f9d4c79371d4d5bf59d4d5c36a9ba1d0752ef0dca70d3914bdab429a61e2a64d3bd4bf834297b4ef5376f854d7b70299f55efe7f0f0d8365e7c3cec8e5e9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402768586b19272ff7f01c7acf4189eac2cb07f33a535dc61848e65c72525a245c87a58f0c918ad9ad7f34d1fcfd297b5c1fcebdd09d4d7baf9d4d5c36a9ba1d0a6adfb54bbc37297f76b521cf9d4bdab6ff30f1fbe9d29aee30c2171d23f67a961c88f4849695c87a58292967fc3490472c827c3201613e369668ac8161b2312cf82394842b6191e97e0be601c9496891721e90f0d033237355f95497ca589d34d1f6a1271d882a60320eb3cf36fac1fcce90f28d3a4b449120a84411cb209f0c80584f8da59a2b20586c8c4b3e08e5210ad8647a5fb2f9acd615106eb6afa500da9a07e941002ca8066e36fdc642a62d1bfeeb1a67818fb90f48cd54091ccb8e4a4b448b90f4fdf">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8c894c5a37f7685dc5b3b96cf58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff7f05c1acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7e94bdae0fe75ee84ea6bdd7cea6ae1b54dd0e85356fdaa5fddad4bdab6ff30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813f4087aaa21ca4498f57842507417f0f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c77b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab0f0d0235375f87352398ac4c697f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d837de65a6c96df697e940b4a436cca080112807ae05fb8c814c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a75892aed8e8313e94a47e561cc581c132e880265b6496d07abe9403ea436cca080c89408ae341b8d38a62d1bfdb408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96e4593e94136a612c6a08007d40b771a7ee34f298b46f5f86497ca582211fc0c8588da47e561cc581b780db4e3afbdff0e00f0d03333439c2408af2b10649cab5073f5b6b9bd19376e525b0f4a8492a58d48e62a171d23f67a9721e9b81001e07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d841381087fc46196df3dbf4a002a693f750400894102e36edc0054c5a37fd35891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a002a693f750400894102e36edc0054c5a37f55850b4d34d87f7f24ad0b5f8ee18f678c991de4c8b3628aeb9c2ad9ee187481accd13de4ef5ecfca24b32f5f415b945873640784430417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886496d07abe9413ea6a2254100225040b8066e084a62d1bff6c96df697e940814cb6d0a080112807ee36ddc13aa62d1bf0f1391fe42fb20189b584223ab46392328480fe75891a47e561cc581f034000000fa52bb63a0c4e5e4d6e30f0d8313a07bd2decfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd6c96e4593e940bca435d8a0801128105c69db81794c5a37fd3cfd75893aed8e8313e94a47e561cc581c132eb2fb4f3ff6496d07abe9403ea436cca080c8940bd7002b8d054c5a37fe10f0d83138217d2cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8cb2a62d1bfe56c96c361be940094d27eea0801128205c033702da98b46ff6496df697e94038a693f750400894102e019b816d4c5a37f0f139fc17e186fc20bb76f8b036d05e730dd75ebf82f5fbaf030070000fb408597e158a4a47e561cc5804f32e883f55db1d0627d54759360ea44a7b29faa6d4256b0bdc741a41a4b408df2b1c88ad6b0b59ea90b62c693884bc59083391158bf0f0d033437317f18842507417f5f911d75d0620d263d4c1c88ad6b0a8acf520b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4eb6c96dc34fd280654d27eea0801128172e32ddc65953168df6496e4593e9403aa693f7504008940b97196ee32ca98b46f0f13a00bafde8458306115d770e07dcbb79f7ef362bed3b7430b981fc0cb9870b30bbf58a5a47e561cc58196dd71b7feabb63a0c4faa8eb26c1d4894f653f54da84ad617b8e83483497fc30f0d03343731c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eb76b686b19272b025c4bb4a7f5c2a379fed4bf0f1604a5279224228604b897694d5596addbb3b005df5dd1a949e48a51a12498cc09769717f0f28dacd0dfe1bb06dbdab566c982085c78576f32fad81f65959a8705f59e72fb2b38fc30e01430df08b0fda921e919aa82bb63a469311721e9fb50be6b3585441badabe94032b693f758400b2a059b806ae32253168dff6a5634cf031dce47f28e2bdae0fe74eac8a5fddad4bdab6a99e1e4a5ee1b5486fe83a97f0713a9be1c87535ee84ea6bdd7cea64e309d4c9c6f9d4c79371d4d5bf59d4d5c36a9ba1d0752ef0dca70d3914bdab429a61e2a64d3bd4bf834297b4ef5376f854d7b70299f55efe7fc4798624f6d5d4b27f5f87497ca589d34d1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbeeedecebea0f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813fe90f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c7e8e70f0d023537e6e5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb76bd86b19272b025c4bb4a7f5c2a379fed4bf0f1604a5279224228604b897694d5596addbb3b005df5de2ad29ab42d64e5a1b5293c914a34249319812ed2e2e0e8c1c7c0bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ef6c96c361be941094d444a820040a05fb8c86e36053168dffdfe1e9588da47e561cc581b7996df6df71efcf6196dc34fd280654d27eea0801128166e01ab8cb4a62d1bf0f0d03333535e4df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f26c96df697e940b8a6a2254100225041b8072e05b53168dffe8e4ec5893aed8e8313e94a47e561cc581c640d3cd85e77f6496df697e94138a6a2254101912817ee361b800a98b46ffc10f0d836597dee7e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e10f0d84134cb4dfe76196e4593e940814d444a820044a00171976e05f53168dfff6e0df6c96df697e9403ea6a225410022504cdc133700d298b46ff55851042f34cb77f1faf4e7d4df5b39477b9d3b697f3e4e9f97f4bae4b7857f2cfbf71b46767979775b78b7c5b25a396cf7d3a7acfbbc4107fdedd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96d07abe9403ea435d8a080112806ae01eb8dbca62d1bff0ecf45893aed8e8313e94a47e561cc581c0b2cba20bacff6496dd6d5f4a042a435d8a080c8940bd702d5c03aa62d1bfc90f0d8365f745efea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e90f0d84105d659fef6196dd6d5f4a082a6a2254100225001b8cb37196d4c5a37fc2e8e76c96d07abe9403ca6a2254100225040b8066e040a62d1bff5585085c69c7017f06ad8cfe817fa73c86eefec35fe10dd6f26f0327cbe01a8ab6ff7b3b0bd8f3c71de796d17b74543996cf72b734107fe6e5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96c361be940094d27eea080112806ee36ddc69b53168df5f911d75d0620d263d4c795ba0fb8d04b0d5a7f45a839bd9ab5893aed8e8313e94a47e561cc581c640e01e132eff6496df3dbf4a09e535112a080c8940397001b8d894c5a37f6196dc34fd280654d27eea0801128166e01ab8cb6a62d1bf0f0d840bae360f7f2088ea52d6b0e83772fff5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f40f0d84132fbee7be6196e4593e94134a6a2254100225000b8cbf71b654c5a37fcdf3f26c96d07abe9403ca6a225410022502e5c0bd71a7d4c5a37f55857c0f38f0bf7f09aeed7a2dbc73839e7f3ccf77b8ff416f68d02e391ce9826e1d596b6f50bfdabc526e171461e1b99cdd7973d134107ff1f0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d84105b785fc36196c361be940bea6a225410022502f5c69db8dbca62d1bfd26c96d07abe9403ca6a2254100225040b8066e042a62d1bff5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f5585089d6d97dd7f05aeef8fb66dc9dbf9975f341b37bdc04eff1ce20fe663754398fbf8cb8b7bfc21b37512c28735557b9e3d8ed10c107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d841082cbffcb6196df3dbf4a05e535112a080112807ee01bb81714c5a37fdac4c36c96d07abe9403ca6a2254100225040b8066e044a62d1bff55860b2fb8eb6fff7f04ac64ddb759e806678cfdbd5b7781d636de4cf09b06edda6eec668eed732e14f9d66896849dda73a25cc90f8820c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d03383439d06196df3dbf4a09d53716b5040089403b704f5c0bca62d1bfdfc9c86c96dc34fd281714cb6d0a08010a8005c641704253168dff5585644171f75d7f03aee93b2e6ed1bbf07f9d22de5dbb5ff6d7143cb1238f01f1edc597afb5bdf2f1daadf7fad4cd3c1de5cf264cfe2083c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e26c96df697e940baa651d4a080112800dc0bd719794c5a37fda7b8b84842d695b05443c86aa6fda5893aed8e8313e94a47e561cc581c0b2cb6e884d7f6496dd6d5f4a042a435d8a080c8940b5700d5c6df53168dfd90f0d8313206fd8408af2b10649cab5073f5b6b9bd19376e525b0f4a8492a58d48e62a171d23f67a9721e9b81001e07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d83138d37da6196df697e940b8a6a225410022502d5c6c1704f298b46ffe9d3d26c96c361be941094d444a820040a099b8db3704ea98b46ff55860b6d3cf34f7f7f08acdbcfc27cb6303e54d83fdc746a7b8256de41fb46c9c7934518d17a2cbbfddec1f90f32fe4b4c73821e50c107d2d1">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a887685dc5b3b96cf6c96df697e941094d03f4a0801128105c037702253168dff5f911d75d0620d263d4c795ba0fb8d04b0d5a7c95a839bd9ab5893aed8e8313e94a47e561cc581c132eb2fb4f3ff6496d07abe9403ea436cca080c8940bd7002b8d34a62d1bf6196dc34fd280654d27eea0801128166e01ab8cb6a62d1bf0f0d03363536408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d03353930be6196df3dbf4a05f532db42820044a01db8072e05f53168dfc65891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94038a6a2254100205040b8d3b702f298b46ff55857c4e3827dd7f0cade9a3ac5cb3c2ea76e21fbeff8c98a5abf5eb75e7ebaae874f1e95514dbb716bdbae5e18ab9253d797968b668207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d03363138c76196c361be940bea6a225410022502edc0b971b7d4c5a37fcf6c96c361be940b4a6e2d6a080112816ee05bb8c854c5a37fc7c65585089e03cdbb7f05ac9914ad6728ba47876945a4af8b5492481676e035daaffb3bfd5b675b6fe7e4b39cbf67e987318535649a083fc4c30f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c20f0d8371a03fcb6196dc34fd280714d444a820044a01bb820dc6de53168dff7685dc5b3b96cfcbca6c96e4593e94136a435d8a080112806ee01db8cbea62d1bf5586134d38fb6f7f7f03adda5aaf84e3d17eebbcafc20ab2dd36f75ed777a55d3853cf82da77b2b177519ff00cf66fbe80b94ec4cf34107fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d840b2f85bfd16196df697e94640a6a225410022500ddc6ddb8d054c5a37fc3d0cf6c96d07abe9413ea6a225410022502fdc106e05a53168dff558565d0882dff7f03adf4b76ebea2b77702c75fb3f3cd8b9e81868f788bc2df2d4b3554ed9fc759bbd9f9b2a75ea31370cf2e1a61820fcecd408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96df697e941094d03f4a0801128072e341b8cbaa62d1bf5f86497ca582211f7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c10596d9742eff6496df697e940b2a65b685040644a019b817ee36ca98b46f6196dc34fd280654d27eea0801128166e01ab8cb8a62d1bf0f0d830b6f03408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8369a6dcbf6196e4593e94642a6a225410022500ddc13971b654c5a37fd15891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94642a6a225410022500ddc1397191298b46ff558513ce38e33f7f0eadd90f2c30e13ecedda4cce4682c76f000704b8b8def1bb8c58fa2778f3c2b4f46f861d50b9235c91edaf134107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d8313ed87c76196c361be940094d27eea080112817ae32f5c682a62d1bf7685dc5b3b96cf6c96e4593e94642a6a225410022500ddc139719694c5a37fc7c6558471c65b6f7f05ad86d8e36f45b77509ebe2c8f74c97f8f3e54e412cf4cd6f48095d0e465d04af8eed3bff1b9bf74776bc4db2083fc4c30f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cb0f0d8369c71ccc6196df3dbf4a002a693f7504008940bb71b7ae32d298b46fc2cac96c96df3dbf4a002a693f7504008940bb71b7ae32d298b46f55850b6d85c17f7f02add57654b3eabaedddbfd646ced8bf770dba258fa7ef2ad9dd3fbc2f2d26869bd7283b75cb939ce26aad89d9041fc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf0f0d836c2f8bd06196df3dbf4a002a693f7504008940b97197ee34fa98b46fc6cecd6c96e4593e94136a65b6850400894086e045719794c5a37f558471f7c4cf7f02afe6e6e6bd556f693972bfa64c5a7bfe694f0725ab4ddbba8f973f2e3ae49e6abd60ab7efd17fbe489afcb747bd9041fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d836db13f408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e94642a6a225410022500cdc683702253168dffcc5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94642a6a225410022500cdc0b7704e298b46ff558513ec800d7f7f06addd3e8f07fcf54bdf9a71b5b832e1fc0b7bee93a5d31f98e6bd94776bb2fc7d87a9397a6a369ebca42ccecd041f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d8365c13fc66196c361be940bea6a225410022504cdc0b771a7d4c5a37f7685dc5b3b96cfc6c56c96dc34fd282654cb6d4a080112820dc65db81654c5a37f5585089b7d913b7f05adc747ad1b9a69c40de79cb753b7fa65f5c07df90d6a71e307e6727af7c2c8da7f32d89aa7af6d11eed48c90c107c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d8365b03fcb6196c361be94136a681fa50400894133700cdc036a62d1bfc2cac96c96df3dbf4a09a5340fd2820044a05eb8cb7702f298b46f55860b2fb8079f0f7f02ac5b27ead9bdc94347dfa1d75cf312dba4c8b6e956b24bb801e4b9b9f7a7a08e9d5a6eb535b6b34028d2886083c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d8369e75fcf6196e4593e94642a6a225410022500d5c65fb81694c5a37fc6cecd6c96e4593e94642a6a225410022500cdc0b571b6d4c5a37f558513cfb6217f7f02aee1575f78337e48d5ff18bbe7e19d67961cbcbdf1c7a0975adeb279d8fad8f3f2c3b512c66c9df9faa3c64f30c107cccb408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8313c07f408721eaa8a4498f5788ea52d6b0e83772ff6196c361be940094d27eea0801128176e09ab8d34a62d1bfcd5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96df697e940854dc5ad4100225021b8d06e09b53168dff5584740ebe2f7f07ad86bd9b89ef6bbde66f65e93ce3fddae4f7690d71d0b4f8bbd7e757b7346badf2dec07bbe5f7f23cb0d3f9341077caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d830beebfc66196e4593e94642a6a225410022502f5c0b3702f298b46ff7685dc5b3b96cf6c96e4593e94642a6a225410022502f5c0b3702f298b46ffc7c65585134071d7bf7f05aee5dfbeee5bb1478aeedc765d941b70f4cacf6cb11daf4ffacb6ef7b71715fec192be7dfc6f874d9e3d58b6af1041c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d8371f685cb6196df3dbf4a002a693f7504008940bb71b7ae32d298b46fc26c96df3dbf4a002a693f7504008940bb71b7ae32d298b46fcbca55850b6d85c17f7f02acfc862e8cd3c7c74465d1be6c6523383468df95b69df60fca726bc6f4f4684b69b740756028b35a78a17a6820c8c70f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d00f0d830bcdb5cf6196e4593e94642a6a225410022500cdc683702253168dffc6cecd6c96e4593e94642a6a225410022500cdc0b7704da98b46ff558513ec800d7f7f02adb35e9e19620736adc00e59b3eac3fb249c52feb4ac16cde48f687f973c3e7f49e7876101ad7825d29e36f8820fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8365c703408721eaa8a4498f5788ea52d6b0e83772ff6196df3dbf4a002a693f7504008940b97040b8d814c5a37fcc5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df697e940854dc5ad4100225041b8d06e084a62d1bff55840b81009c7f06ae083973efbebcba7063068875b3e2a282bfcfcd381efdaa1c8d178e5859c17f5d995cdf859b3b839e5cb9a286083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d8313a27fc66196df3dbf4a002a693f75040089413371a66e34ca98b46f7685dc5b3b96cfc6c56c96e4593e940054cb6d4a08010a806ee09ab8cb6a62d1bf5584740eb6ff7f05adeb18aad1dbba44fece8ce7909e3739e3c0731e3d19fdf0a32f2e9ef07b972b4fcf664e7c5f8493ea1d556c820fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d8365f0b9cb6196c361be940094d27eea0801128176e09ab8d34a62d1bfc2cac96c96c361be9403aa6e2d6a080112807ee019b8cbaa62d1bf5584740ebe2f7f02aecb97f6fc7a36b5b73e9cd163e3df7c7c2ad23be6a2f09aaf25da53cddbbb646f2f5d9ea3c7367d7973d82bbe2083c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d831040cfcf6196e4593e94642a6a225410022502f5c0b5702da98b46ffc6cecd6c96e4593e94642a6a225410022502f5c0b5702da98b46ff5584134070417f02ac8713f38227e1ddb6d9c79fa4f75a9511f7c0e754d651c791beefee5a5dd962cc1ddaa4b1e475f28d8f43041fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8310440f408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e94642a6a225410022502f5c13f71b1298b46ffcc5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94642a6a225410022502f5c0b7700e298b46ff5585132fb8f35f7f06ad678bfef7092e874e6d58fa116f71ec3171f87af85bbb85e7b1e86eff1d9cdfe8dfb77b0fce07b2dfc71fa860837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d83101c6fc66196c361be940094d27eea0801128176e09bb82794c5a37f7685dc5b3b96cfc6c56c96df697e9403ea6a225410022502edc69eb8cb2a62d1bf5584740eb4f77f05add3d66a25ef113c8ab92c160fdcb8417da75b3616f3b79f33987c93b024e17f5eef37b8e39537b9a66c754d041fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d8310590fcbd0c1c9c8cfce7eadfcaddd61fdbd84193a66c49bbb6cb726845e75e0134d9e67d395b7dc017a5d0b36fe4aca2d67463d0eebd9041fc5c4408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce0f0d8313ee0bcd6196df3dbf4a002a693f75040089403b7000b800298b46ffc46c96e4593e94642a6a225410022500ddc69fb8db2a62d1bfcdcc55850bed38eb9f7f03adacbbfde1cb63617229755dd9cdbd579f0e1e58074f2bfa61ed9277a2a03c78187dacd1b66c56d67b5d6fc4107fcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8369c139408721eaa8a4498f5788ea52d6b0e83772ff6196df3dbf4a002a693f75040089403b7000b801298b46ffca5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94642a6a225410022500ddc69fb8d894c5a37f55850bed38eb5f7f06ade3a0ad74fd8dda4dfa0c4b59dd9b6eebd34c9bebe7c32739baf47b80ff37e3a30febc8905bb569f66ce49e68207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d8365b783c66196e4593e94642a6a225410022502edc13f7197d4c5a37f7685dc5b3b96cf6c96e4593e94642a6a225410022502edc13f7197d4c5a37fc7c65585134c89f77f7f05adbfb3a8fbec9bde1d99f3698f12dcf8681c3939072ea1c868f578ef0c5e649c689f564cd9e5af65b0d429a1820fc4c30f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cc0f0d836db65acb6196e4593e94642a6a225410022500ddc69fb8dbaa62d1bfc2cac9d0558513cd89d7ff7f01add969d236726e7b4c44bfab1acdc336995cc87359972dee9cebc08df2fe65cde56d9cf53d69f5eb44d85bd9041fc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf0f0d8365965cce6196e4593e94642a6a225410022500edc033702253168dffc5cdcc6c96e4593e94642a6a225410022500edc033702253168dff558513c079e6bf7f02adab361c9413659821bdea2f1a6ff8efa3aba76bc5fede0dda610a6df1c7e438a6da9cd9252ecbdcdab21e134107cbca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8365c701408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e94642a6a225410022500edc037719794c5a37fcb5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94642a6a225410022500edc0357196d4c5a37f558513c07597bf7f06ad6e5a39fe76374e0d368a79e5b23ac6e5ff58766675fbb9b55e75bc98e286fc535dce38ef4a28a5732e56bc41077caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f0d8365c643c76196e4593e94642a6a225410022500edc033704fa98b46ff7685dc5b3b96cf6c96e4593e94642a6a225410022500edc033704fa98b46ffc8c7558513c079c77f7f06ad7fda5de7d63f403b7565e127e539f86df1c713eeea271d2ef0bf4d1e7b76bb0d8e2dd6b2143a787eb3df1ec820c5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d8369e643cc6196e4593e94642a6a225410022500edc00ae34d298b46ffc2cbca6c96e4593e94642a6a225410022500edc00ae34d298b46ff558413c07c227f02ac1d9554785a3a38cffaff2e5e4a1b3c07ae365ccfc7f6bb4bfb3ccde4e8ed6073dfaab5ebb75c5ae39e19a083c9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d023731d16196dd6d5f4a082a6a225410022500edc082e36da98b46ffc76c96df3dbf4a019532db52820040a00371b66e01d53168dfd1d05585085a69a1077f03ad3a78b73bfac037d63fbe9eb3b63469f46bfab477c0d12acb87be0e17b987b5ec9d6f6a0dda39e54615a5d9041fcecd0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8369b13d408721eaa8a4498f5788ea52d6b0e83772ff6196c361be94138a6a225410022504cdc641702053168dffcd5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96dc34fd281654d444a820044a001700cdc69d53168dff558571b65c71cf7f06aef6348bddba7515bd7fbaf466fc7f2b79326020b077c58f90bc64e48c556bd789cd3ca4fc749c93d735dcecec820f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d83699037c66196c361be940094d27eea080112817ee32d5c13aa62d1bf7685dc5b3b96cfc6c56c96c361be940094d27eea080112817ae01db8d34a62d1bf5584719001ff7f05add7103123f689d6b67fcdba66a7471c9e6fedb113bd7b95ebb8f07e011a67c8ff2279cc8dae71af33dda50c3041c4c3408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d8379903bcd6196df3dbf4a002a693f75040089403b7000b80754c5a37fc46c96e4593e94642a6a225410022502fdc00ae09c53168dffcdcc55850bed38e3ff7f04ac88389fd6dc59eabbe3ac5d5b85d7363444343d581623fcc5c1ccdaf5731f5e27e5923a07846916cb6df1041fcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8365e0bb408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe941094d444a820044a083704cdc0b4a62d1bffca5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a05e535112a0801128215c137719694c5a37f55850800e3cf0b7f06ad8d6b39dfd708e5d25d778bcd9b307e6ee16c5bb1db1779ff4fc655b92cf836e3e71ec33ba745985dc96f1f10417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d840b42705fc76196c361be94138a6a225410022502fdc6dab817d4c5a37f7685dc5b3b96cfc7c66c96c361be94138a6a225410022502fdc699b8d894c5a37f558571c71c0bbf7f06aebfceecce6cbda7a42ff1711bb1593f86bc35b37acb4dec9923ebd3a65fdcdd2b9cd5fad4b139f8db9835bde2083fc5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8cb8a62d1bfc24088f2b0e9f6b1a4583f9105f7777eb3a6ffe7e6c08330398758b97f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb6e73f8ff75fad3279fce32eaf7fecb576c1afdb666bcdb1f3af5fbab87563f5de86ba4ecc59578ccde6f1dc124ade197fdc62dba899ff7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f6c96df697e941054dc5ad410020502edc65db8d054c5a37f0f138cfe5a69e716748d8dc65a07f352848fd24a8f0f0d83136f834085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf64022d31">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d836dc65f408721eaa8a4498f5788ea52d6b0e83772ff6196df697e94132a6a225410022502e5c64171b0298b46ff7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df697e94132a6a225410022502e5c64171b0a98b46ff55857d9780273f4089f2b0e9f6b12558d27fadd4e6d4ac4db973ebce7ebc6a92bd5eb149bede47cf91c8f5f636d4c5bec929c86e63f5931f0d71fbe71450c1077caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f0d840b4fbef7c76196df697e94640a6a2254100225040b827ae01f53168dffc66c96df697e94640a6a2254100225040b827ae01f53168dffc6c55585642f3ef3bf7f04aecf4a76357b1cd8bb2c9b40de1a30038d566afc3760439d1f9b7dd389e7ff70d9af161b3dc397572e9b21bfe2083fc3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d836d97c3cc6196df697e94640a6a225410022504cdc13b71a0a98b46ffcbcac96c96c361be940bea6a225410022502edc69ab8d36a62d1bf5585640f082dff7f03adbafbceb5926d24e4e5fa223781655adf32638b2ede742de76c3f94c8b61f2245fd9d2967deaa75438b7390c107c8c7408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d840b4e3c2fd16196df3dbf4a002a693f750400894002e36edc1054c5a37fd0cfce6c96df697e94640a6a2254100225041b8d35702da98b46ff5585105c6996ff7f03adcba4ddf4f2d72e8a2ff8ef9024b2baab1c29ddfaffaabb8160f5cba756d673532fa5abc29676801263d7b2083fcdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d840b4d38f7408721eaa8a4498f5788ea52d6b0e83772ff6196df3dbf4a002a693f75040089403b7000b811298b46ff7685dc5b3b96cf6c96e4593e94134a6a225410022500cdc6c5700253168dff5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f55850bed38e35f7f06adb628f74ad7593a10cdc3ea9bba386ea87a6f46efabbd74696bbd148fc3918bd63d83cdd4b79c8f51fb7e6c820f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d840bac89ffc86196df3dbf4a002a693f75040089403b7000b8dbaa62d1bfc7c5c46c96c361be94101486bb1410022502fdc65fb8c814c5a37f55850bed3817ff7f05ad7b4d1b62d4ee3bd1c7ce4711cb9fe2078b2793e9d3f8cf5a8ecfe8f275edda6a71f3eacd8eeb0528be29e1820fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d836c4d3fcc6196df3dbf4a042a6a2254100225042b8d3b700d298b46ffcbc9c86c96df3dbf4a05953716b504008940bf704e5c69b53168df55850bed884d8b7f02acd6cbce0646e4f6ef6c5bc2cf2cbc78211c40b3de62e387625ade9f53cdd31fef5bf3dfc38ca7bb59bc921820c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6c96c361be94136a65b6a504008140bd7042b8d3ea62d1bf5f86497ca582211f7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c132f3afbc10ff6496e4593e94085486d994101912807ee003704ea98b46ff6196dc34fd280654d27eea0801128166e01ab8cb8a62d1bf0f0d8313e067408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96c361be9413ca6e2d6a0801128005c002e36e298b46ff5f911d75d0620d263d4c795ba0fb8d04b0d5a7c6c55893aed8e8313e94a47e561cc581c640d3e279d6ff6496df697e94138a6a2254101912820dc6dfb811298b46ff6196dc34fd280654d27eea0801128166e01ab8cbaa62d1bf0f0d830b4e3bc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96df697e94640a6a225410022500cdc68371a714c5a37fcbcac95893aed8e8313e94a47e561cc581c640d81c6dc77f6496e4593e9413aa6a2254101912800dc69db82694c5a37fc10f0d83682d83c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66c96df697e941094d03f4a0801128072e341b8cbaa62d1bfcecdcc5893aed8e8313e94a47e561cc581c10596d9742e7f6496df697e940b2a65b685040644a019b817ee36ca98b46fc40f0d830b6f03ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96e4593e940baa65b6a504003ea05eb8272e34fa98b46fd1d0cf5893aed8e8313e94a47e561cc581c0b2cbedb6eb5f6496d07abe94089486bb141019128005c69ab810a98b46ffc70f0d03383536cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96df697e94640a6a2254100225002b8c8ae09c53168dffcb7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c640db6ebedbbf6496e4593e9413aa6a22541019128172e019b8db2a62d1bf6196dc34fd280654d27eea0801128166e01ab8cb8a62d1bf0f0d8475a7dc6b408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8365b71abf6196dd6d5f4a082a6a225410022502fdc65db820a98b46ff7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e940894dc5ad4100225022b8015c13ca62d1bff5585081f7dc65d4089f2b0e9f6b12558d27fade156be5a1fdf9817b9eb373bd8753b96ba66c42a706b90a9ed8e592244b8d3edd4ddbcee8937876267efb2083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d83684e3bc86196df697e94640a6a225410022500d5c6dbb811298b46ffc66c96c361be940894d444a820044a05fb8db7700fa98b46ffc6c5558565d69f71cf7f04ad2743e5d9ee69f2e0cbb0d26fb6ec84c5c5dee597be289a9502736fec5f9fb8f156ce569dc68edd62a79f686083c3c20f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c96c96e4593e94642a6a225410022500ddc13371b794c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c640d81c6c0cff6496e4593e9413aa6a2254101912800dc69cb820298b46ff6196dc34fd280654d27eea0801128166e01ab8cbaa62d1bf0f0d85085b742f7f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d830840d7bf6196c361be940bea6a225410022502fdc69cb80694c5a37f7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e940094cb6d4a0801028215c08ae05d53168dff5585089d0be1737f0eacbdca7674d38a734966be06b39efca51e8f41ecff894f3cfa6cca4cb8d1577cf255f92ad3cb4f7d298b04d0417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8371b75dc96196df697e94132a6a225410022502edc6dfb8dbca62d1bfc76c96df697e94132a6a225410022502edc6deb82714c5a37fc7c65583136c8b7f05ad9c5f8dd69bda8cee78ef5382fe9896c3d7ddbc3f19d4fcbfb8b53356dfd1f335a3e34f447ee5e251833510c107c4c30f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cc0f0d03343639cd6196d07abe941054d03f4a080112817ae36edc69953168dfcbcac96c96df3dbf4a05d5340fd2820044a05cb8d02e34ea98b46f558475c7c42f7f02ac26fd33b2ecdc991ede7ee7045ea9d30cdb6caf1cc6cda7d74bd8f978e45acc667acbba9152697aded56ec820c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d830b827bd16196df3dbf4a05d5340fd2820044a0017190dc6dc53168dfcfcecd6c96df697e940b6a681fa50400894037700fdc65a53168df558465b7da6b7f02adcf30afc98b7fb3c4dc6f69f3d629d3bbb72770dd1559f974c4e133463d497bdd3fbcdc72be3e1eccd4b7a1820fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d03333536408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e940b8a681fa504008940bf71a15c69c53168df7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46fc55586640e36dbee7f7f05ab0eac716cea6fc58f992ea388127d06587dbb1d39939fbede02274937e72f89e56ec271a3b76ea1d57e68207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8fd06421496c3d2a1283db24b61ea4ff408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d014c5a37fc64088f2b0e9f6b1a4583f9105f7777eb3a6ffe7e6c08330398758b97f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb6e73f8ff75fad3279fce32eaf7fecb576c1afdb666bcdb1f3af5fbab87563f5de86ba4ecc59578ccde6f1dc124ade197fdc62dba899ff7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f8b1d75d0620d263d4c7441ea0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f6c96df697e941054dc5ad410020502edc65db8d054c5a37f0f138cfe5a69e716748d8dc65a07f352848fd24a8f0f0d83136f834085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf64022d31408cf2b0e9f752d617b5a5424d279a03a02b6f904b09b8dd582128967dc69d582179b9412940db8fff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb7685dc5b3b96cfcbcac9c8c7c60f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc5c40f138cfe5a69e716748d8dc65a07f3c30f0d83136f83c2c1c07f009903a2765209c584dc6eac10944b471880b12579a1b62745189b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8369e79b408721eaa8a4498f5788ea52d6b0e83772ff6196dc34fd280654d27eea0801128076e001700ca98b46ffc25891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df697e9403aa436cca080112806ae32ddc13ca62d1bf5584105e75df4089f2b0e9f6b12558d27fadc959ec9706f4e1bde616fbb418e1ad6aeff4bf7b5b44e5466f1d4e3d58bbf7ef679dc1d1e03ebbf0bb462d90417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d830b6d33c76196df697e940854dc5ad410022502cdc002e000a62d1bffcbc6c56c96c361be940094cb6d0a080102817ae045719754c5a37f558669b75f69e07f7f05ae59c4bdbb2f7d3767724fd4b367036db3a64e3daaab8e53618f0de5b66ec3e49db2f3b6efe59ef343cb9487d9041fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d03353932cb6196d07abe941094d444a820044a081700cdc6df53168dffcf6c96df3dbf4a019532db52820040a00371976e36ea98b46fcbca55850802171a0f7f02ad7bbf2f77f09a50176e0935ee925a3073fda26e70faa6f7290d7f9d0f66eeee6bd161a010e7b7365c513439a083c8c70f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c60f0d830b8d39cf6196df3dbf4a05c530963504008940397021b8dbca62d1bf7685dc5b3b96cfcfce6c96e4593e940b2a6a2254100205040b8d3b704153168dff5586109b75b0b82f7f03ad676c9927d92e7d4ffe6ad9846d3fcff0e903ab69c97f253828905e4f8b1b5f8fbcf0336f97c4388d3f79764107cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96e4593e94642a6a2254100225042b8cbb71b0a98b46ff6496e4593e9403aa693f75040089410ae32edc6c2a62d1bf5f911d75d0620d263d4c1c88ad6b0a8acf520b409221ea496a4ac9b0752252d8b16a21e435537f858cd50ecf5f0f0d830b6fb958a7a47e561cc581975f7df07d295db1d0627d2951d64d83a9129eca7e94a6d4256b0bdc741a41a4bf6196dc34fd280654d27eea0801128166e01ab8d054c5a37f4087aaa21ca4498f57842507417f408721eaa8a4498f5788cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96e4593e94642a6a2254100225040b8276e34153168dff6496e4593e9403aa693f750400894102e09db8d054c5a37fc5c40f0d830b6fb958a7a47e561cc58197441781f4a576c74189f4a54759360ea44a7b29fa529b5095ac2f71d0690692ffc3c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d094c5a37fcd4088f2b0e9f6b1a4583f9107ee3dffb76186fe6c1fa1ccd60c5779394003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb4f5976edc8f789d8f3aed235799aaefefb6f369fcdc1d581fd596d719d6c7e7541b272ceff203e4eb56e44d79ee5cac13f88d7f9f7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f87352398ac4c697f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f6c96df697e941054dc5ad410020502edc65db8d054c5a37f0f138cfe5a69e716748d8dc65a07f352848fd24a8f0f0d83136f834085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf64022d31408cf2b0e9f752d617b5a5424d279903a2765209c584dc6eac10944b471880b12579a1b62745189b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb7685dc5b3b96cf7f0c910fee3072699ddfad3b0e8e2dbececbf8ffcb7f0bb4f18b46de99a70eb4b0769aed8fa227c9deb77f726b48b3e67af7b2bac1d9ff6c512cde75f024dbf066bd0feddf745fc87ce72a7fcac9c80f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03343532cbd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf5f87497ca589d34d1f0f0d03343830cc6196dc34fd280654d27eea0801128166e01ab8d094c5a37f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"480">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:42 GMT">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f6c96e4593e94642a6a225410022502f5c65fb8dbca62d1bf6196c361be940094d27eea0801128215c102e34d298b46ff6496dc34fd280654d27eea0801128215c102e34d298b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d846996840f408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f55846d9032f75890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b5f87352398ac4c697f0f0d830b6d33408721eaa8a4498f5788ea52d6b0e83772ffc9cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be94089486d99410021502cdc699b8d32a62d1bf5584101a00bf4089f2b0e9f6b12558d27fac726ca71b91eaef85269b8549df7ba71c7d2d5b076cf1f2ab1e6f0e172ebbf21b16670e49a7b5d5b74449a0837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96df3dbf4a09a5340fd2820044a01fb8d33702153168df5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c1059138e3ccff6496d07abe940894cb6d0a080c8940bf71a7ee09b53168df6196dc34fd280654d27eea0801128166e01ab8d094c5a37f0f0d8369e133cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d3aa62d1bfc64088f2b0e9f6b1a4583f9105fc77b76b77662ddbf13a2c61d9af6ddf4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb5378a21c469b616bc9e6399c24f2fea7b7e1f162f0e77bbbe6f3c183d1fec7eb537fed29cd33bc89d395ddd66bc5fedd1f36f017d7f7b9384842d695b05443c86aa6fae082d8b43316a4fc65f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d3ca62d1bfcd7f0592039a796f7b9c3cf77e5fddf98f0e0bbf8cffc47f04b5ff724dbcb46d6f5f7e8dc35eaaedaff5b23583f3d62bb572456c5e4ef3cf77b72fcb335a6dd92eefff7fbbb830f8b1dfc790f77ceec3cbc20f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83132fb3408721eaa8a4498f5788ea52d6b0e83772ff6196dd6d5f4a32053716b50400894006e36ddc13ca62d1bf7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df697e940b6a5f29141000fa806ae001702fa98b46ff558513eebaeb804089f2b0e9f6b12558d27fad368c04370c1970a69874dbc27efbb95ba7666f1b1b73ce1d7c7d989ca4e83e19373b9afc5bb7341ef6335ec8207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03353939c86196c361be9413ca6e2d6a080112816ae045700fa98b46ffc7c6c56c96df3dbf4a019532db52820040a00371915c0b8a62d1bf558564207196df7f05ac4e90822ceb6ae7cb02dd23a911d76a13c22aba975fb0e348a4c21161fd964f677b75f9dcf30fb86ecfe2083fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d8365a6ddcc6196df697e94640a6a225410022502e5c69ab8c814c5a37fcbcac96c96d07abe94038a436cca0801128015c0b571b754c5a37f558565913417bf7f02adaa1fdef676bc37807bbe3c7987070e51d34eae1937c84cf92fc97abc39c22f7aaf439a6dd2b5503c4b889b2083c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d83642eb5d06196df3dbf4a01e5340ec50400894006e09ab8d814c5a37fcfcecd6c96c361be940b6a6a225410020502d5c1377196d4c5a37f5586101d75d7df7b7f02ae3b5fb777ddf1c7362b2f6af30d25efef15d9256717e77f026b0459233b6cdb83c70cb1fe10582484dab47ad9041fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d827001408721eaa8a4498f5788ea52d6b0e83772ff6196dd6d5f4a32053716b504008940b371a6ee01d53168df7685dc5b3b96cf6c96df3dbf4a019532db52820040a00371966e34d298b46f5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f558513ecb617837f06ad8b067a5d77f1df1df679d8f10951f86e5a2f07c5cb2d158f7397f0b9a45cbade1ecdde34fa26be17b0df6a18207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8365a69cc86196df3dbf4a01b5328ea504008940b5702edc0814c5a37fc7c5c40f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96df3dbf4a040a612c6a08010a800dc13b71a714c5a37f5586138175a79b7b7f05ac5b375b3c3561ad26c90c416ad5161362c5bfc75b337a9fbf4f20d04acc0dfedde14f2df7dccf0d3e31966820c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8365d7d9cc6196c361be94138a6a225410022502fdc0397191298b46ffcbc9c86c96df697e9403aa436cca0801128066e01eb800a98b46ff558571c7da7dcf7f02adfc724f5b16eb7f25b49aae1db1794e25bbfabee97f5d02397e4cb509ba9e58019bac991ed58342da2ba0b34107c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03363039d16196df697e94136a6e2d6a0801128172e00371b794c5a37fd0cecd6c96df3dbf4a019532db52820040a05bb8db5702d298b46f55866596de7dd07f7f03ad8e2ae191e2fe3563d8f9919e9c59927cd6f5cdd65f192ce7ed6f7cbb63e86ae5d14cf9776089d783384fb2083fcdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb0f0d8365c6d9408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e940054c258d4100225002b8d39702d298b46ff7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe941054d27eea08010a816ae059b827d4c5a37f5586132f3ccb616b7f06ad8fa27bd39f16b7333e293249c61724b7a09ef53f9eb66765eab2e8eba6f569d5c31136adde3a36b37e63cd041f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83644e3dc86196df697e94132a6a225410022502e5c08ae32f298b46ffc7c6c56c96d07abe941054d27eea08010a816ae059b8d3aa62d1bf55857d97c2c83f7f05add3d3f2f19cdf7d6927ae99347135db13efb5515fc097432e1a3a66f525fa6216abd7e1d7970688666fcd50c107c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8313eeb5cc6196df697e94640a6a225410022500fdc69db81714c5a37fcbcac96c96df697e94032a435d8a0801128105c102e05d53168dff558565b75a6c5f7f02adfd89a7d1d4fc0d45de2e4c2aa7cdc32feea0dedfdfdf5d7c31df8b75fe1e6cdd384a991ec5b99c3d6ae346c820c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d83644d39d06196c361be94138a6a225410022500d5c037704ca98b46ffcfcecd0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96df697e940094c258d410020504cdc13971b0298b46ff5585744cb6e37f7f02ad06e8f75149c27d9b4383f47aede9749675a85656e2d97c5598bcb5f4db96dfda7887f5c8f9f8f417567764107fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d8365c75d408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe941094d444a820044a099b8d3d719754c5a37f7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe941054d27eea08010a816ae05ab81794c5a37f55857df782e87f7f06afeb93f3f64879b786aae72dad39f9799ebbaed196fbf77df3b29cfcb793161fcd182eef6b8e7fcf5a6b28776bf1041f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83138007c86196e4593e940b4a5f2914100215040b8215c6db53168dffc7c6c56c96e4593e9413ca6e2d6a08010a807ae005719754c5a37f558613c06d9742cf7f05aee9247a5f2b4cfada0e99acb357ef0ab17ee4e188c2c57b2e3dd999a85c730efd2cfe6f77f3d2db7a3dabb69d9041c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d830b4f3fcd6196e4593e940bca65b68504008940b57197ae01b53168dfcccbca6c96c361be94034a65b6a50400814006e322b8d894c5a37f55857d9136e0197f03adfc678f8d95f2ab46bc7b2f3ba32edf0e6f5af8eee4ba3a111df0538b8b5a667fd63e0dcd74bd3a425f60921820c9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d3ca62d1bfd04088f2b0e9f6b1a4583f910de0f2683a7937bf9ddc7772e9fcbaee2f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb38469b7d17be536de098dc60523f9e3cb959c1fbe33b5b0cd9e1d2d33292afdde8ff64bb2d72ed6fccfcbf1a3b846a1c3d3a9ff7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9abc80f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c47685dc5b3b96cf7f05900803a1d06fca0fccd7f6c2c875bffbcbc47f04b47b63cd72e9c3d35dbcd57a92f5fcf59804d538b44d2d37aac22e9464911d6aeffba736cc9eb84e8fca0f96b06ce7927d7930e1f1c3c2cc0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d3ea62d1bfc17f019106d7797eb9c7601acd7f6076e6bbbafe6fc77f01b535ef0def92a08784ce6ca825d496add50ffbcb835936f9a1b73df027e658796dd8effbab00bf72b54b7f9c1dbfca3b396efc732f4fc6c55f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8369d701408721eaa8a4498f5788ea52d6b0e83772ff6196c361be940bea6a225410022500fdc0bf719654c5a37fc75891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be9413aa65b68504008940b571915c644a62d1bf55850b207db0bb4089f2b0e9f6b12558d27fadf1545d5ec8d4cf39edff3c197f2ea8a933dfb5796fb67c54adcf0664f6adf8fdece04cfdc6e7a7c7af9729a0837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d8365969ec66196c361be940b4a6e2d6a080112816ae32e5c0094c5a37fcfc5c46c96c361be941014cb6d0a080112816ae32f5c0054c5a37f55856990b4d89e7f04adc38218b4fe13746d7398dbfbdfc443ec7b9fbe3a8d4adbddfd3e2f1774962593769671fa8f26fe93f40c7e2083c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03353837cb6196dc34fd282029a889504008940b77196ae09e53168dff7685dc5b3b96cfcbca6c96df3dbf4a019532db52820040a05bb8db5702e298b46f5585088007042f7f04adef4e59d1d59c92f4f78b16c861338d16ebdaedce0ef91e77778c639f7e0e76ddc34536229345279fd5b243041fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d836dc7c3d06196df697e9403ea6a225410022500d5c65bb826d4c5a37fc2cfce0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96df3dbf4a05953716b504008940bb71a7ae05b53168df5585105f036e377f02ade06b496559b4f992c1a1976bc923ded64dec78b4ebe58747ee5fccfab279d70a28880f60c3b53e9fc3e7f61820cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8369d71a408721eaa8a4498f5788ea52d6b0e83772ff6196df697e940b8a6a225410022502e5c65ab826d4c5a37fc85891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a01a535112a0801128015c0bb719694c5a37f55850b6d09c1377f06aded6f79ca88f8f0afb02fb5db1feeb368fde1167bb79af30e08ead39db4e99729c7ee1c1a6a785e2be9ab0c30417caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d03353838c66196c361be9413ca6e2d6a0801128115c65bb8cbea62d1bfd06c96df3dbf4a019532db52820040a00371a0dc1094c5a37fc6c555856421105b0f7f04aedba52ccd975f5c7caee9dbbd1cf6ee058b76c19787bc65cde01e247b3ede03cd4ebe9b4f7624f9a7be6ea09a083fc3c20f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cb0f0d8365c79dca6196e4593e94136a65b68504008940b771a66e34e298b46f7685dc5b3b96cfcac96c96c361be940b2a65b68504008940b571b05c03ea62d1bf558679d0b8f38d7f7f03aed7171a397a8afe47763f46aeec869ce7265f38aee2bda99f3161a268ba5f9e1f1abbeed5463f33cbd7a353c3041fc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d836db69dcf6196e4593e941054d03b14100225040b800dc0894c5a37ffc2cecd6c96e4593e941054d03b1410022502d5c69ab807d4c5a37f55860bedbcebc17b7f02ad9b8edfc45ea316eccf3b82f07d3983f160747ef6a5aee77dbd3856b6cfc92ccdcadb3884b7f26d1da06af78820cccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83680207408721eaa8a4498f5788ea52d6b0e83772ff6196c361be940bea6a225410022500fdc0bd702da98b46ffc85891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96dc34fd281654d444a820044a08371a15c6c0a62d1bff55850b207db7db7f06ada7bd791eedcbbe2c73c516f3f4e5cf23bc79d2418fc57944ec7555af281e3fbecef0a33fe65373f4485a9a083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d8369d71fc66196d07abe9403ca6a2254100225041b817ae32da98b46ffd0c5c46c96df697e94642a65b685040089403d71a7ee32ea98b46f55851082e3aeb77f04ad91ec593f43909bb97ee8bbf995ec68fd8bba50d7a46dc16e2c28d366abb0c46bad8ed753c357ef6b4bdb66c820c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d830badbfcb6196df3dbf4a09d53716b50400894006e09db82714c5a37f7685dc5b3b96cfcbca6c96d07abe940894ca3a941000fa817ae05fb8cb8a62d1bf5586644cbce34d7f7f04ab8f7caeb538bf53b1316403e9736d3647ce659f74f1634a536a34e344eb68c51bd37085b0c3cdddfe26820fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d840baeb41fd06196c361be940894d444a820044a05ab817ee05b53168dffc2cfce0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96e4593e940bea681fa5040081403f71b0dc682a62d1bf55860bcfb8cb2f7f7f02aee1cfcbe197972e84d58f364d42f1cc4e70d3ce56f06ce7cf9353379396ace3f5e968ac673ddbdd366c47173c4107cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96d07abe94138a681d8a0801128205c0bf700f298b46ff5f86497ca582211f7b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c640e36e32c8bf6496df3dbf4a09e535112a080c8940bf704cdc69b53168df6196dc34fd280654d27eea0801128166e01ab8db2a62d1bf0f0d831044e7408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96df697e940baa65b685040089403771a76e34da98b46fc5c4c35893aed8e8313e94a47e561cc581c13afb4e38e35f6496d07abe9413aa6e2d6a080c894082e342b8cbaa62d1bfc20f0d830b617bc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06c97e4593e94034a693f7504003ea01cb8db571a694c5a37ffc8c7c65893aed8e8313e94a47e561cc581c0b2cbedbaeb3f6496d07abe94089486bb141019128005c69db8d38a62d1bfc50f0d83109e7bc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96c361be941054dc5ad410022500edc643700253168dffcccbca5893aed8e8313e94a47e561cc581c138fbec81c0ff6496df3dbf4a05c53716b5040644a01fb8d3f702d298b46fc90f0d8313ad8bc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96d07abe9413ea6a225410022500d5c0b3704ca98b46ffcfcecd5893aed8e8313e94a47e561cc581c640d01e79f73f6496d07abe94136a6a22541019128215c65fb8d3ea62d1bfcc0f0d840bc269ffcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d03373936cc6196c361be940894d444a820044a04171a6ee05f53168dffc65891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96e4593e940bea681fa5040081403f71b0dc682a62d1bf55850be07c2eb54089f2b0e9f6b12558d27fad7f4632072febbd76bbf9487ac4073174fcfcbbd344a88f9a23afce36da7f8503de7bfe19d69d546aaf2d5341077caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8d894c5a37fce4088f2b0e9f6b1a4583f90037cddd0db62db8b0f3c7c5ed1cd96834003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb23e2e59b6d41e5fefa74255c470d28d9aedbf9e9017b510deaf26fb35331c3388fcb78b8d85ae5f7463c3436816e70af0e76f7b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f4085aec1cd48ff86a8eb10649cbf4086f2b2075ad5cd91ae73a4f148645740fd447aa2f058d064975886a8eb10649cbf408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f64022d31">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83132dbd408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe941054d27eea08010a816ae341b8d854c5a37f7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe941054d27eea08010a816ae059b827d4c5a37f55866400702cbc2f4089f2b0e9f6b12558d27fadb36a4fbec2eb360d95732de08a78b16ffce77b8cb9269fc26c663ddefb37cf653b05fb8bd729915f19fbec820f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f0d83132d33c76196d07abe9413ca693f750400854002e320b8d054c5a37fc6c5c46c96df697e94038a435d8a0801028266e04171b794c5a37f558613ed81d71b177f04ad69de908b47eb5bbc357ef1bae9171f431f2a7c6fc74f6fc66ce02d1e37974cee94397dc5c0fc35d7cec1ec820fc3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d83640dbfcb6196df3dbf4a01b5328ea504008940b3704e5c13aa62d1bfcac9c86c96df3dbf4a040a612c6a08010a800dc13b71a714c5a37f5586138175d7c0e77f02aee5cc7dfd64d84c309bf7a2cb7ecfd1a1fedbb65d5931f7a4b9d9e12fbef6dbb72e28888afd7efac1777fef7f1041c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d83081f07cf6196dc34fd280654d27eea0801128072e01bb800298b46ffcecdccc5558413617d9f7f01ad7b8df1bfbef6ddcef1cd28e1f327ad67d1e48cd5c1bc78e47563927bd174bbd296f1a6aa16e9d7475b77c3041fcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d03373330408721eaa8a4498f5788ea52d6b0e83772ff6196e4593e94136a65b685040089408ae342b8d854c5a37f7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe94642a651d4a08010a807ae001700fa98b46ff558579d13ae8857f07add967e63c3efc187a3b349d3e1cf3ec3e62c3e9ed583ccbb3c2237cbce6d333fe5b3caffaab9ce63532f69a083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83089d0fc86196df3dbf4a01b5328ea504008940bf71b7ae084a62d1bfc7c6c56c96d07abe941054d27eea08010a816ae059b8d3aa62d1bf558613816da65f0f7f05adf72da5d06d9da5d0e262c8ededc63ede5ef2b9946d0ef55b25f05d9fb4f9377edcff5ec7965abae22c90ec820fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d830b2cb3cc6196e4593e9403ca612c6a0801128215c08ae09f53168dffcbcac96c96df3dbf4a040a612c6a08010a800dc13b71a714c5a37f5586132203ceb4d77f02adc19f062a6eded0c8ef2304578c9dd86df0dfec4f9f506ac9a7f43be47b862f03e4de5d9db54da66b23866f1041c8c7">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588c60f0d830b2e07d06196e4593e9403aa681d8a080112820dc68371a7d4c5a37fcfcecd0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96c361be9403aa6a225410021500e5c102e32e298b46ff5586101d7c2cbcd77f02acaf576352dd7d74e796a01f37933b92f61c14e1c25ab84e0d71e78b6bf9e37e7737d76e24813b6b6bdbdb2083cccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d83640073d46196df3dbf4a059535112a08010a8005c6dfb810a98b46ffd3d2d16c96df697e940094c258d410020504cdc659b820298b46ff558665969e032d0b7f02acc4fdeba0d780493bfbff27bdd53b3c4d91b47272ca3bf429b20e8e9d9a67686794d4fef788b4dfdfb1bd9041d0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce0f0d83640d87d86196df697e941094d27eea08010a820dc03571a0298b46ffd7d6d5cd558613efb620059f7f01ae7ae8abdfc8d77d76358cb7cdebcfe5f191feb7bdfe67c00ed272f7a2836a77be473f1af60c9af0c6eeacbbbc4107d3d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d8365d79adb6196df697e94134a651d4a0801128215c037700f298b46ffdad9d86c96c361be941054d03f4a0801028105c65ab8d34a62d1bf5586134d81b0bcdf7f02ac31bc1bb4c4e37b962889b51a075ee45e77dc69b6da01bdf2e9f4d69e90f5a38a23cb3fec73c7a75831f8820fd7d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f0d83134cbfdf6196dd6d5f4a080a693f7504008540b371a7ae34053168dfdedddc6c96e4593e9413ca6e2d6a08010a807ae005719754c5a37f558664016c0fbacf7f02add2cc576ee89f0f3659e711071e908ff4f2947b77f3e62ede66f3928f57fb76abd7bdf8cf7635b1ecd8d7586083dbda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d83640f3be36196d07abe941094d444a820044a0417020b80654c5a37ffe2e1e00f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe94136a65b6850400854106e01eb82754c5a37f5585081a744f877f02aeaf86e8b7f6d6dfea76eae38afe2b76ac5bff9e006e9ef41b17bf66f1ab4fe9b6783f2d54f8d1651beadbc0db2083dfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd0f0d8365975d408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe941094d444a820044a04571b6ee01a53168dff7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be94036a65b6a504003ea05ab8d39700053168df558508197597c17f06ace0f6cf7468053ea1ab8a4b5557bd577b06065b878dda9fd6ef7e0f592f1bcb76932710bf6c585670341e18207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d023433c86196c361be9413ca6e2d6a0801128115c0b9702253168dffc7c6c56c96df3dbf4a019532db52820040a05cb816ee32253168df5585642165910b7f05adf5b7462be1a3261b3ded74d7489ceeb7e68a38926bdcda3f66fbf9af83ddfd5de69e7927bf89af134b3cfe2083c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83138cbfcd6196df697e940854ca3a94100215022b8cb971a1298b46ffcc588ca47e561cc581c640e8800003cb6c96df697e941054be522820040a081704cdc0bea62d1bff55866dd0bef34f8b7f04adcdc35acde5ab1ce959ae34bf0e46edce267bf2ed913be2d77a13effce73ee71de04dfcfd6333f8daec7a7c4107cac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f0d023533d26196dc34fd2827d4dc5ad410022502e5c699b80714c5a37fd16c96df3dbf4a019532db52820040a099b8115c684a62d1bfd1d05585640103e07b7f02ad7eac31c26d0fdfafcde649543145ca397971c17b174fdebd66a6f3974360afb98e2aff7817565ae9275cde2083cecd0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c70f0d83089c73d66196df697e940b2a5f2914100215001b8066e34ca98b46ffd5d4d36c96d07abe940894be522820042a08571905c1094c5a37ff558613c203ee3a1f7f02ad6bf3735a7637d130eb47e58f5bedbcfbb24e64b3cc7cf3ea19259bcefec3cb253362e1bb8978fe339db178820fd2d10f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d00f0d03353439da6196d07abe940baa6e2d6a0801128072e04171a0a98b46ffd9d8d76c96df3dbf4a019532db52820040a01ab8d06e05e53168df5586680f36e36cff7f02ad789a05823ddd85e741ff6986dec3dba6ac7c3f0edcb87075f1adf7d936a71ce5f9b5e26c9f9c9f83ef12d0c107d6d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8313207fdf6196d07abe941094d444a820044a0017190dc69e53168dffdedddc6c96df697e940bca6e2d6a0801128266e00371a654c5a37f5585081e0bef397f03acc9159c91b7050b370ea8732495339cc4c35688741eaaf364f3bac0ddc461bb96bf58ac4df5b8e5a30c3e2083dbda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8369c79fe36196e4593e940814d444a820044a00171976e044a62d1bffe26c96c361be940b6a65b68504008540bf71a66e36fa98b46fe2e155851042f34e0b7f02acf796c0746bc907c6aed1a5dea5dc4f09a38907c77e8af36cf5aaac4e0a494ccc7785cea77f78707a7a764107dfde0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c60f0d03333034408721eaa8a4498f5788ea52d6b0e83772ff6196c361be94134a436cca0801128266e34f5c65f53168df7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96c361be940bca65b68504003ca08571b6ae34e298b46f5586700fb6ebadff7f06add79a9eb696bbfd6f74e9cdc142ebbeb65bcede092b6416ff4b44e5fa33530f79c9e3ded463f5537564b364107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d83642f33c86196df3dbf4a09d53716b504008940337040b8d054c5a37fc76c96df3dbf4a019532db52820040a05cb8205c644a62d1bfc7c65585644c85e6d97f05add5e21f0eb3ee52cd4f28b663e6b75478e4309168de3f16bcfeacd94bdf0fe47fbe65ec7cdaf0396d381ad9041fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d03383539cd6196df3dbf4a002a693f7504008940b77196ae09c53168dfcccbca0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96df697e941094d03f4a0801128076e32ddc032a62d1bf55850b8cbc27bf7f03ada252ecbd4ec5b3ef414728a9cf4f85b0116d1360bdb51874fabe38dc3eabfab49fbe9ad9cd77c0f95ba764107fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d03393034d1c1cfcecd6c96df3dbf4a082a435d8a08010a807ee360b80794c5a37fc07f00ad97cb5d6de789a7719330f1e9e47c38cfc2be36ec7d1c8735eab2b398fe56e50a311723f1e7db6e4c3d7f61820fcbca0f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c40f0d03393838d3c3d1d0cf6c96e4593e94085486bb1410022500fdc69fb8d894c5a37fc27f00acae4f7146e3e976bec2c3e76f9c17d9caff6973f2b62e3467ab74c967875b39e41644729a7013cc248f6cd041cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb0f0d8375a75dd56196c361be940bea6a225410022502cdc03371a1298b46ffd4d3d26c96df3dbf4a019532db52820040a003700e5c0b2a62d1bf5585089f700e8b7f02afc95fe75f13e5c5cb863dba2af5b61d9c7279ed2cb90317ee0f5c96abdf0e766ee564b63db62e61b6dc5b6f5ed9041fd1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d827402d96196c361be940b4a6e2d6a080112816ee36cdc138a62d1bfd86c96e4593e940894d444a820042a0037190dc640a62d1bffd8d7558669903ef3cf7f7f02aec68c4e47949ef1f8f7d4c5c73514e1f7805b2f53ef3f9de3cfaff3f2a87d2da5b6d3ee3b7bd89fddb7bddef1041fd5d40f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8375f799de6196c361be940bea6a2254100225022b827ee09d53168dffdddcdb6c96c361be940b6a65b68504008540bf71a6ae044a62d1bf5585089f7822777f03ad45efcd5a62665eee72b63ceedb9f7651e4ed5f1a2f4dd3215397d770cf14fa24c2d13985d927e4dc29b764107fdad9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d84105b79dfe26196c361be940bea6a225410022500edc68571a7d4c5a37fe1e0df6c96df3dbf4a09d53716b504008940bd71a15c640a62d1bf55850b216d91377f02addef8f75bec98611e8d5ba805d971660edfd4f51478f2edc3dcb1b9e27c8f60f3f9ae92a1dd619b064b229a083fdedd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d840b4f01ef408721eaa8a4498f5788ea52d6b0e83772ff6196c361be940b4a6e2d6a080112817ee342b820298b46ff7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96dc34fd28012996da9410022502e5c13771b0a98b46ff5585684fb816da7f06ad07117bfcaa2d36630fa0445d86cb38fbe488dbe7bfd305da19e4f591fb739661479c2d7a9f861c3a3de89a083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d03393239c8e1c6c5c46c96dd6d5f4a080a65b6a5040081403f71a72e040a62d1bfe07f03aeebbb771dd967e5c6d75d91d8ff6c1387f0ea7179853e7664cb9bcfbbbbaad1be35aef747e5dd5f97b8f7a6cd9041c2c10f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8db4a62d1bfc958b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff4003703370c1acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7e94bdae0fe75ee84ea6bdd7cea6ae1b54dd0e85356fdaa5fddad4bdab6ff30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813f4087aaa21ca4498f57842507417f0f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c77b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab0f0d820ba05f95497ca589d34d1f649c7620a98326ed4b3cf36fac1fc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b5f87497ca589d34d1f0f0d03323436d44088f2b0e9f6b1a4585fb485eaf5170eff5ef952eb93fe70730cb9faec95a23fe3f6f6a943b30bfb5adf8baf4fcc192ad996b7251d9d7acc0e57418e5f04cd408cf2b0e9f6b585ed6950958d278c6ae819142fb8cbb7dd0bd7dbc9409ff2b0e9f6b52548d6e854a194ac7b0d31aa1d0b4a6a0ab4834956320ef3800f92100215821580f6f0bd7197ae32eae0003f7f408ef2b0e9f6b52548d6a646d69c689f971c71802f3318c6028df7db8da764210057df74407db1ff588aa47e561cc581e71a00016c96df3dbf4a320521b66504008940bd7002b82654c5a37f0f139afe4647c4ccb1b8dc6cb91ba57249431bcd9647c622963137fcff52848fd24a8f76868691fb3d5b9955850b6e81e17f7f12aed9fb949f99713b94cf78b5605f75e7ff63e50d43c7571d2b7e5de1d6daf0f38f1efa71cf8c98eccbd9dd6fec820f7caf0ae0500e46cbd18a49091c6d36478acb3246170231321702d3eb9283db24b61ea4af5152a7f57a83db261b0f527fbfd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03343531cdd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df6c96c361be94036a6a225410022502ddc106e32ea98b46ffbf7b8b84842d695b05443c86aa6fcf5892aed8e8313e94a47e561cc581c13c2132dbc26497df3dbf4a32053716b5040644a05bb8cbb71b714c5a37ffd80f0d03383536408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e46c96d07abe9413ea6a225410022500d5c08ae082a62d1bffc4c2d35893aed8e8313e94a47e561cc581c640cbccb6e3df6496d07abe94136a6a2254101912816ee32edc684a62d1bfdc0f0d8371f75fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96e4593e940baa6a225410022502e5c03d704e298b46ffc8c6d75892aed8e8313e94a47e561cc581c13e270426836496df697e940894d444a820322502e5c03d71b6d4c5a37fe00f0d830bce03c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96d07abe940bca681fa504003ea041700edc69a53168dfcbc9da588da47e561cc581b780db2cbccb7f6496d07abe9413aa6e2d6a080c894082e342b8cbaa62d1bfe30f0d827820c8408af2b10649cab5073f5b6b9bd19376e525b0f4a8492a58d48e62a171d23f67a9721e9b81001e07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfdb0f0d03353136dde4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"516">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:54 GMT">>} +] +}, +{ +undefined, +<<"48826402768586b19272ff7f23c7acf4189eac2cb07f33a535dc61848e65c72525a245c87a58f0c918ad9ad7f34d1fcfd297b5c1fcebdd09d4d7baf9d4d5c36a9ba1d0a6adfb54bbc37297f76b521cf9d4bdab6ff30f1fbe9d29aee30c2171d23f67a961c88f4849695c87a58292967fc3490472c827c3201613e369668ac8161b2312cf82394842b6191e97e0be601c9496891721e90f0d033237355f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f6196dc34fd280654d27eea0801128166e01ab8db4a62d1bfce0f28d3a4b449120a84411cb209f0c80584f8da59a2b20586c8c4b3e08e5210ad8647a5fb2f9acd615106eb6afa500da9a07e941002ca8066e36fdc642a62d1bfeeb1a67818fb90f48cd54091ccb8e4a4b448b90f4fdf">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f6c96df3dbf4a09d53716b504008940bd7042b806d4c5a37f6196c361be940094d27eea080112816ae34fdc138a62d1bf6496dc34fd280654d27eea080112816ae34fdc138a62d1bf4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d84136cbc0f408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5584780113df5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7d358b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff7f0dc1acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7e94bdae0fe75ee84ea6bdd7cea6ae1b54dd0e85356fdaa5fddad4bdab6ff30f1fed9d29aee30c2171d23f67a961c88f4849695c87a5835acff92403a47ecf52e43d3f030c1f0314000802565f95d6c637d969c6ca57840138f3856656c51904eb4dc641ca2948db6524b204a32b8d3a171d1bcc9491c6dfc1e892239e007c5500596c2fb4ebce81e71bf89084813f4087aaa21ca4498f57842507417f0f28c11c8b5761bb8c9ea007da97cf48cd540b8e91fb3d4b0e447a424b4ae43d3f6a60f359ac2a20df3dbf4a002b651d4b080cbaa0017000b800a98b46ffb5358d33c0c77b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab0f0d0235375f87352398ac4c697f408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc6c96c361be9413ca6e2d6a080112807ae36ddc0b2a62d1bfe6e4c15893aed8e8313e94a47e561cc581c13ce32c85a7bf6496df697e94036a6a2254101912807ee09ab801298b46ffd30f0d840b8dbcf7e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df6c96e4593e94085486bb1410022502fdc037704d298b46ff5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6fc65892aed8e8313e94a47e561cc581c0ba17c0e3406496df697e94136a681fa5040644a08571b6ee32d298b46fd80f0d84081d685f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e56c96c361be94136a681fa5040089403571a72e05953168dfc3c2ca5892aed8e8313e94a47e561cc581c105c105e6856497c361be940b8a65b685040644a01bb8d3d71b754c5a37ff6196dc34fd280654d27eea0801128166e01ab8db6a62d1bf0f0d8365f701c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887685dc5b3b96cf6c96c361be94138a6a225410022500fdc033704053168dffc8c7cf5893aed8e8313e94a47e561cc581c640d3cdbee83f6496df697e94138a6a22541019128205c035704d298b46ffe10f0d840b400bffc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8db8a62d1bfc24088f2b0e9f6b1a4583f910b9fba2ebcf716c19b972d9f98767ee9db7f17ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb306be0ff1d29eefb1cf1a67f36f8bfe316cbfeddeb8f9bd8b3cf64f1ec431082ec79250fa6311af6ad3eb2a534d09c13557c7fbd6d5d40f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2408cf2b0e9f752d617b5a5424d27990806e94b2bcb09b8dd58212896188a059e8e423c379b8dc75bd6d8d70f0d023533">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c77f03910b99b183885b771037fe7e6ce3bf687f7fc27f02b6731fa745fbb276bfda7c6fedf8f82f9ba7bdb263bf5efeef06acb9fd79c3fba2ec7d34e3eb1bddbf65bfa9df4d7fb75bb726fc3a3a53dad95f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d8310822fcf6196df3dbf4a09d53716b50400894035700fdc0bca62d1bfcb5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96e4593e94032a436cca08010a8205c65db8c894c5a37f5585644279f65e4089f2b0e9f6b12558d27fac2c56966e17b1d5eb102f620f9e59ecd378d77185179eb77f0a2358ac865df7bd88016717e1aeecafbb3341077caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d830b8dbdd86196e4593e940b8a681fa504008940bb71a72e34ca98b46fd4c6c50f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe941054d27eea08010a816ae059b827d4c5a37f55860b4eb6eb4fb37f05acb3a70e2ec782f46cca7fc4acd18014621069a3be898efd5aad770249a0b939fbf597772e5db4e9a2feaf1041c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d840b8cb8d7dc6196e4593e940b4a5f291410021500cdc0bb719794c5a37fd86c96c361be94034a693f75040085413371a7ae34253168dfcbca558613c10b6265ef7f02acc8e7201f69b426ddb7ef5ffd2a72d8f5f4eaf3602ad13bdb2bcc27e924d8045d18b07871f3cda07ae49a083fc8c70f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88db6c96e4593e940b2a65b68504008540bb702f5c6c0a62d1bf5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab5892aed8e8313e94a47e561cc581c0b8013ee05c6496e4593e940894d03f4a080c89408ae09bb811298b46ffdd0f0d03353934408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dee27f199107e33a78edd70eec18b6f2e37b1e30e367dd7f19b5ff724dbcb46d6f5f7e8dc35eaaedaff5b23583f3d62bb572456c5e4ef3cf77b72fcb335a6dd92eefff7fbbb830f8b1dfc790f77cee7b9384842d695b05443c86aa6fae082d8b43316a4fc4d90f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d8313e017c16196dc34fd282754d444a820044a099b8cb5702253168dff7685dc5b3b96cfd9d86c96c361be941014cb6d0a080112816ee36fdc680a62d1bf55856dc740d35f7f0dae8f9e7e44f7c9a9e23f6db9ff377afd9341d9ebd3723b70fdd3c8f8bf2ce39e6ee3c9c7b687b77e5940f59890c107d7d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f0d83642db7c66196df3dbf4a09c532db42820044a01fb8172e32ca98b46fc2dddc6c96df3dbf4a05f532db42820044a05db8105c0894c5a37f558679c6d9740cff7f02acafce1ba5e9ed0d1f6cd4f6f3cc824394c7ba2d977ad468e9f5af3ecc523d83a7759e272a00d63d98b5a61820dbda0f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d90f0d8365b65cca6197dd6d5f4a09d5340fd2820044a01eb8d3571b754c5a37ffc6e1e06c96df3dbf4a05f5340fd2820042a05ab8d39704f298b46f55860b2f32fb6fbf7f02aeefbcfe7ac9c69ddfbb37038b26dbfba169af1063909ef467e7fbe22db830f3c5beef0a96c7adbc72c9096fc3041fdfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd0f0d83642d33ce6196d07abe94038a436cca080112816ee36cdc65f53168dfca5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96d07abe94038a436cca0801128066e32f5c0094c5a37f558675c75f69d77f7f04ac75b1789af8f0947d9ac9b3a1898cbdbd70367e793a60e8820d6abb9059ee88ed74d5f9a37befe87300a6820f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8364407fd76196df697e9413ca612c6a0801128215c6d9b820a98b46ffd3c6c56c96df3dbf4a082a6a225410020502fdc6c571a0298b46ff5586105a75e13edf7f05ade17e6d4f399e677ba23db6458f3fb047be2c4b4b6bb7b6c3d7adda6fc5a70c84a31e0f7e437b2d7b674e6f1041c4c30f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c20f0d83644107db6196dc34fd282754d444a820044a099b8d37700153168dffd7cac90f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96c361be941014cb6d0a080112816ee36fdc69953168df55856dc7197dbf7f02adb3070aeb188208fd65f5bf22778f6ec158b749fc70f17da20af66d5b7d8a1c59479e7e97bf62cfb05e1ff1041fc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8db8a62d1bfdb7f2091060dd95f0ded0e6d79fdf8b96367665c5f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f97f21b6d137fbf1cf659e928bb7eac78f37afda3169b3aed6f17be3a3f3bf5c96e5ebb5e707cd147bfdd6ddecbf8c60c1a9b85e207b8b2f56bfe05a839bd9ab5f87352398ac4c697f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf0f0d841044f0bf408721eaa8a4498f5788ea52d6b0e83772ff6196df3dbf4a002a693f750400894106e01fb8d32a62d1bf7685dc5b3b96cfd7d66c96df3dbf4a002a693f750400894106e01fb8c854c5a37f55850b4cba16bf7f0baee987b79d35eacd91cc7cb5f6de866c1e7c9b66ab292d6716d2e1db9d9d1d0d1f04bf0ebf0eed7ef4bef4f6d9041fd5d40f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c50f0d03343339c36196dc34fd282029a889504008940bf702f5c136a62d1bffc2dbda6c96df3dbf4a019532db52820040a05cb8172e05d53168df5585085e742fb37f02ad6cb53ddd3a8003efd3b7cb7d11eb2f3f3e2dd7a3071b659997b2ebc9d5db7d263fd361d2ebbdf826e9a39a083fd9d80f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01ab8dbaa62d1bfc67f0f900c375ad78c50be1d98d9e79728b95efdce7f0eb4e2df8fc03eff5dcf37f85e3d5a72bfd9bbe3749d26cde43c87e2adf97af6e699dbf5d4d54ad16973f7b4da68fdeafe6628d71faf7b9384842d695b05443c86aa6fae082d8b43316a4fce5f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce0f0d023637cc6196d07abe941094d444a820044a01bb8d82e09d53168dffcb5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a019532db52820040a05cb8172e05a53168df5585081c13ce877f09ad2e4afacddb6e2ebe87bf935af767413bd83479b6fa34332b5a7259af9f7738e40a3f5316498de7566d3143041f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d60f0d03383631d46196c361be940bea6a225410022500edc139704fa98b46ffd36c96dc34fd282694d27eea0800754033700d5c0054c5a37fc6c555850b2171903f7f04ad6f45df19fbe5c0ce06fbcc0eb3f3c155bcbf1cdb8bdded49f52e1a79f3f42aadf69c83f59dfd40ac7800786083c3c20f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88da0f0d023433d86196df697e94132a6a225410022500fdc08ae32ea98b46ffd7c9c86c96c361be94034a65b6a50400814006e34d5c0baa62d1bf55857dc699683f7f02ade4de0d31a496736abe3999b1dd37df6b2e5c7f84c1d3a5d2135bbb1d77deadc6fdd9c26e49d776a75ba31f8820c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f0d830b6fbddc6196dc34fd282029a889504008940b771b0dc03aa62d1bffdbcdcc6c96df3dbf4a019532db52820040a05cb8172e09f53168df5585085f7dc6437f02aeab0f3df0dd86f1ead13bdbe297f31c3a713f158ce1e9eb84b56ebbcba792c62c5db2e64cc68a9d3b727e68f1041fcbca408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e30f0d830b8dbbe16196df697e94136a6e2d6a0801128176e09eb8d814c5a37fe0d2d16c96df3dbf4a019532db52820040a05cb8172e32053168df55866596d975c7bf7f03ad42324bf9f97e3bb5bd66b882d08bc38ea8cfa7873fc6b21cf237b71c5b0aff277c6b0f98fafed6fe8bd3f8820fd0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83640167408721eaa8a4498f5788ea52d6b0e83772ff6196d07abe9413ca693f75040085410ae09ab806d4c5a37f7685dc5b3b96cfd9d80f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe941054d27eea08010a816ae059b827d4c5a37f558613ed09e79b677f05adefa81b40fcffb79cdf57a9f469dfc5fe980b3462bf369a71adfa1cc3d86f45dd1a39d2f14f7538f8557fc4107fd7d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d033435355a839bd9ab6196dc34fd280654d27eea0801128166e01ab8dbca62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15f87497ca589d34d1f0f0d83136217c0bf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"2522">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:04:58 GMT">>} +] +}, +{ +undefined, +<<"88bf768586b19272ff4083928891831840d74085f2b4e7427f881840d297e00be2174003703370e6bdae0fe61cf9d4bfbb5a97b56d535ee846a6bdd7c6a6ae1b54c9a6fa97b568534c3c54c9a77a99f55e5356fbdfcfd2959e8313d585960fe674a6bb8c3049d7ed6950931eaa476752a5721e963c3246076c8648800758ad9ae2bfeaa1d262673cc622fe69a3f97b8b84842d695b05443c86aa6f0f0d033535384088ea52d6b0e83772ff8f49a929ed4c01103e94a47e607d96bf7f0f88cc52d6b4341bb97f5f92497ca589d34d1f6a1271d882a60b532acf7f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c5c47f04871840ca97e01059c3c20f0d0237387f028f49a929ed4c01103e94a47e607da0ffc1c06496d07abe94138a65b68502fbeea806ee001700053168df5892ace84ac49ca4eb003e94aec2ac49ca4eb0034085aec1cd48ff86a8eb10649cbf0f28c7d79e089f75a7402582b3ccb2269a103ed42f9acd615106eb6afa500cada4fdd61002ca8166e01ab8dbca62d1bfed4ac699e063ed490f48cd540bf6b4a8498f5523b3a952b90f4f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d66c96e4593e940baa6a225410022502edc13f702d298b46ff6196dc34fd280654d27eea080112806ee32d5c0b6a62d1bf6496dd6d5f4a01a5349fba820044a01bb8cb5702da98b46f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d8413aeb2ef408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f558413a0699f5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4d27f128318822f7f0c871882252fc0e85bd1d00f0d0234337f0c8f49a929ed4c01103e94a47e607dd67fcf5f87352398ac4c697fcccbca0f28c5c1ba07dd69d00960c8df6d2b03ed42f9acd61510722c9f4a09b5af948b0801654037700d5c6de53168dff6a5634cf031f6a487a466aa05fb5a5424c7aa91d9d4a95c87a7ef">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"88d8408cf2b0e9f752d617b5a5424d279a08998d979e7d61371bab042512cf0e5716186369a95f746c8cbfbf7b9384842d695b05443c86aa6fae082d8b43316a4fdb0f0d023533">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dae14088f2b0e9f6b1a4583f910feeb7f0b58317e6bc41e41d7cef69cb9b7f17ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb38519c05e5a30b3fed9f1b897bd6d0478b6b2193767421fa80d9d9b706db38f872bda5c0fdf9b1e50f4cd87850f977cfbfa6dddc1dec30f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dee57f02910b8f5de4d5dc7b3183f7f343b87f346bbbc17f01b5260ce11697d9ff74b5c8f83b614ebc92dec3c0dfed1eac9f33469f9998efb36e0c7daeed41269d9699dbd18f7fefd77bbbb8301bdfc4e1c60f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e07685dc5b3b96cf7f01910ebc21dbbb08736bfdc3bde8713db31b3fc47f01b5bba30617e87cd24dc9dcae676fac3c6f533670e70f1fc67569bf939b44636bbfed8f03bfc33ca9cf9a5c3aa7e924adc7f8fe59bc7fc7e45f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d0237367f1d88ea52d6b0e83772ff6196df697e94136a6e2d6a0801128166e321b8d32a62d1bfc35891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a019532db52820040a05bb8db371b0298b46f558665971d7df73f4089f2b0e9f6b12558d27fad292cf3abc7efacf9399f56476a0e3fd93a43560f556a8deb2addd257cfa2ef7b5fa16a4932d7fba3636986083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8313edb3c76196dd6d5f4a05a535112a0801128205c0b371b7d4c5a37fccc6c50f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96c361be940bca681d8a08010a8266e360b82714c5a37f55850ba0109c077f05addbb6aea1249eb197a63f0fd35d967264b8e7e396fa744d784b0bf62d5efa877a65f58f647a315fdba0336c820fc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8313e07bcb6196dc34fd280654d27eea0801128005c13f700153168dffd0cac96c96d07abe941054d27eea08010a816ae059b8d3aa62d1bf558469b65b7b7f02ae938f1ed5f91f0ef34fb895b79d9e2f75ab4e377d5f059aff1a945b3270ed8f662767e535ff027f28afe2f5b2083fc8c70f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c60f0d83138f35cf6196d07abe9413ea6a225410022500fdc6c1700ca98b46ffd4cecd6c96df697e940094c258d410020504cdc13971b0298b46ff558569a65c7dcf7f02aed745f0c5e7a71b4eb73bdedd8bf46d78f5adccf878d47e993c012ff9e9f98eefac777b6117e97b646a38bb4d041fcccb0f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88e00f0d03383739d36196dd6d5f4a01e532db42820044a0057196ee32d298b46fd8d2d16c96df3dbf4a019532db52820040a05cb8115c69e53168df55860804c89f71bf7f02add3866e51cfae1c9af73908e2d508747e99adb978b2f609c597da4d6ead3934fe7bd0304789c150573a7a86083fd0cf0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03383239d86196df697e9413ea693f7504008540b771a72e32d298b46fdd6c96df3dbf4a019532db52820040a05cb8115c69f53168dfd8d7558613ecb8e3206f7f03ad03fab1121006f2707115fe5e70e88f368934d37dce5639ef87bfc99ccf475e29bd89e6b981d937e7ddcc1b2083d5d40f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c20f0d03383734dc6196dc34fd282029a889504008940bb71a0dc69c53168dffe1dbdac65585085f13efb37f01aeb3c774f9b3844f7ad0d77c08a99cfe7238f6bd05bdbf4c23c82af25f8a7efaf50ff27cb0f0fcaf393876d5b2083fd8d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d03383339df6196dc34fd282794cb6d0a0801128172e36cdc6db53168dfe4deddc9558679a6d969c6bf7f01ade99a2e2cef7a6bb3d5c7f1c1e2acdef495e6b2019f7b87d31eadf8af003a2ac22d2b7ee6e1877db6fbaa59a083dbda408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c90f0d03383733e36196df697e940094d444a820044a041700edc6c0a62d1bff7685dc5b3b96cfcee3e2558513aeb6d09f7f03aef7adeb6fcee9f935db1754e1aef65d9466f5eeff7b47c28f0f6e9766bfd2f116acf0e18b09e8f1bd0eebe70c107fe0df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d03383339408721eaa8a4498f5788ea52d6b0e83772ff6196df3dbf4a01a535112a0801128066e32f5c0b4a62d1bfc25891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46fd45585138270006f7f04acf77b86f775b52490a2189bc1aa4fcdcb149cb7199bc39438afbfe24f0cbb47b2e6976741747e1a71f036c8207caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f0d03383239c56196dc34fd281794c258d4100225000b8cb771b754c5a37fc9c4c36c96df3dbf4a019532db52820040a05cb8115c69c53168df5586109a109b685f7f04aed99b7de2cd7f0f6e3633f979ec792d316f46b63a33e1ad1287be5cbeafe69f7d4fdfc31e5367e5c7f3674cfb2083c3c20f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d90f0d03383734c96196dd6d5f4a09f532db42820044a00171966e32f298b46fcd6c96df3dbf4a019532db52820040a05cb8115c69d53168dfc9c8558579a136f3c17f02adc3b2947edbe3a53b649bc70d0de3f3bfc89d4f316313bb35591cc1bf964d3ee2db643a86fbe13b79fbfaf1041fc7c60f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01bb800a98b46ffd14088f2b0e9f6b1a4583f910e6c2e5ecb841fb0b3bdf068bd8b03df9f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb5c13dd2f5fce28c9c89edcc49c3c5f638f2cb8f47bd87e3fbc2db3fddecc0c1883243828cbd3b6fe55e2ab2db9b4a1e698933fe83b77b9384842d695b05443c86aa6fae082d8b43316a4f5a839bd9ab5f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03333934d66196df697e94132a6a225410022502e5c69cb80794c5a37fdad5d46c96df3dbf4a019532db52820040a00371a72e36d298b46f55857d9742cb5f7f0badcef9cd3e7eb3de462e1470599e9db0e7f1cbf19dfeadbbb3392b8898c93c774d7a94f085d65cfc7b3573cd041fd4d30f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c20f0d03363237da6196df3dbf4a042a6a225410022502d5c659b820a98b46ffded9d86c96df3dbf4a019532db52820040a05cb816ee34d298b46f55850bef05f0077f02ad769a1aa30b8e76d9bfde4fcc382f7264e4fd6eac4ff7c78e5b79dfa7f2b90b77a67e3b87b361e8bde90f8a1820d8d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d827041de6196e4593e940814d444a820044a0437041b826d4c5a37ffe26c96df3dbf4a019532db52820040a05cb816ee34e298b46fdedd5585101d7de0bb7f02aebc7ce4a777e61122dc39dcd976ad5d3a67f38384f2ba2e39a8b2ba3d5e6b6f3cb44ba76e095c5bf0c0aff3c4107fdcdb0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83132dbd408721eaa8a4498f5788ea52d6b0e83772ff6196df697e9413ea693f750400854006e362b8cbca62d1bf7685dc5b3b96cf5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe941054d27eea08010a816ae059b827d4c5a37f558613ed05c65a6b7f07ad93699ee68e379bb32e869ea3c0eb6744e073663e363fe1cd5d81ae59990ecdbb731afd01d9bb26f67dc934107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f0d830b6fb5c76196dc34fd282029a88950400894082e05ab817d4c5a37ffc6c5c46c96df3dbf4a019532db52820040a05cb816ee36fa98b46f55850882fbcd337f04ad0c66b6d7f83eed68a39f1e70d3a30cf678dde355de7c7c7e1b3cde290e8db9b23b14eed02f74f3fdfdc03d9041c3c2408725453d44498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da0f0d023433cc6196e4593e94138a6e2d6a0801128215c0bd719754c5a37fcbcac96c96df697e94136a6e2d6a0801128205c139704153168dff5586644d3efbcdff7f03ae97f190bbd6bd5874c8dfeefe37db93868b29dd80bcf6fbed4b5cabf57edcda7109ef595ad4f961efdc7ef878820fc8c70f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88de0f0d83081c0fd06196c361be940bea6a2254100225021b806ae05f53168dffcfcecd6c96df3dbf4a019532db52820040a05cb817ae01b53168df55850b20644d337f02aea614fe76eb0f5bcd5fe87ae7bbef9e0e4dee7365767e379bd5ffdaf5fbf599fc07f77b39adeb261b2efb2b70c107cccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d03383530d46196dc34fd2817d4d27eea08010a8015c00ae32253168dffd36c96df3dbf4a019532db52820040a05cb8115c6c4a62d1bfd3d25586640275f75b077f02aee2ffb3dbdb547e9df7be4f0f690f0c37d677474d3bdcc880fbbce76c5eb51804efbbc6feda32fe87675f5378820fd0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d83136e07d86196d07abe941094d444a820044a00371a76e05b53168dffd7d6d5d45585081d75a71d7f01addc275ba7dedf529b07ef8c3bc9ae5f5c8053f3c6f8787e44dbefe0ef160bd3687238bceacf2f445648f1cd041fd3d20f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d03353634dc6196df697e9413ea693f750400854086e36d5c69c53168dfdbdad96c96c361be94034a65b6a50400814006e09db8c894c5a37f558613ecbc0105cf7f03abdaeee78f503bc9d438ff3cd86a561105fb3bc3d326a72995abc0e5b994e6c65987a05d3920da1b2d7b2083d8d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d830b8fbde06196df697e9413ea693f75040085408ae083704053168dffdfdedd6c96df3dbf4a019532db52820040a003700cdc69b53168df558613ecbaf382177f02aee7df476bedf0eddb0e6f7e8328a9c24c7dbf1d1e889ac7e7553b7af3b50b6d9f94b7a4f5157da7d70e0f714d041fdcdb0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c60f0d03353538e46196dc34fd282029a88950400894086e32d5c65a53168dffe3e2e16c96c361be94034a65b6a50400814006e09db81754c5a37f55850882d804f77f02ac2711b4d6cd02b5ec90dbc30bfb304b5cb51f7ccf0c1942f1b654ef89057f658b743ad2f37aed66c7d764107fe0dfda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d83109c7b408721eaa8a4498f5788ea52d6b0e83772ff6196dc34fd282794cb6d0a0801128015c641704253168dff7685dc5b3b96cf6c96df3dbf4a019532db52820040a0037000b81794c5a37f5891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f558579b03627817f06ad10b2dab66966932976f7fddd47e377d1267d51c73ebc1fa5bbba46b111d17ee41f2d06e3da98f475bacdd9a0837caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d40f0d820b81c76196df697e94136a6e2d6a0801128205c13d71a714c5a37fc66c96df3dbf4a019532db52820040a05cb816ee09b53168dfc5c45586659684fbae7f7f04aded4ddd77fa8b2e6e23cbb6beeec2d533cd6e3d536e876084d7094f2ebd3aa7e64761fc47e89ecf87f342db2083c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d830b6e3bcc6196dc34fd2827d4dc5ad4100225022b817ae34ca98b46ffcbc9c86c96df3dbf4a019532db52820040a05cb816ae01953168df5585640271d75f7f03ae7c758fd585db9fb67d3ddbddadfcda773782ddddf9b68d7c6fe33df9a3a33639b849d785e3f0bf865d77a3f1041fc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd0f0d83101d6fd06196e4593e9403ca612c6a0801128066e09bb8d814c5a37fcfcdcc6c96df3dbf4a019532db52820040a05cb817ee01f53168df5586132275c65b177f02acf2e9666a5e7cfaefe558f961c0d55a5dba91f6dbe8dfb2e9ee35bb9c8676b67f3dc729abec17d1debcdb2083cccb0f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88e10f0d830ba067d46196df697e9413ea693f75040085403f71915c034a62d1bfd36c96df3dbf4a019532db52820040a05cb816ae32fa98b46fd2d1558613ecbcf3aebd7f02addd6c8eefd11038603f73f7cbe7978dd1cc53f3dff84879c3dc2d629e4dae333e5fdd5d0b778734774e6edb2083d0cf0f138efe4015bf2dc7678263cfff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d8313800fd96196e4593e94136a65b685040089408ae36cdc65a53168dfd8d6d56c96df3dbf4a019532db52820040a05cb8176e32e298b46f558579d13a079e7f03ada61ea0d5a9c2f7ba7bdafa61f3565ec6b31c4f773d229bc63c177d22f7e93b6c97617a501b2b67562be1d9041fd5d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d830b6f07dd6196d07abe941094d444a820044a04371b76e36053168dffdcdad96c96df3dbf4a019532db52820040a05cb8166e002a62d1bf5585081a03cc8b7f02acbe68e2c74929993cb4e2f7a538bbb385cfd87f0de720e6f5d701874e0bb4a4478f867303145eac8cf3f8820fd9d8408725453d44498f57842507417f0f138efe401ff79b5b24c97f8e7ffa0ff3">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c70f0d023434e26196dc34fd282029a8895040089400ae34ddc65b53168dffe1dfde6c96df3dbf4a019532db52820040a05cb8166e34fa98b46f5585089a71d71d7f03aef1d2964b2f5d83877f1e5c4ffb93cfe73f195f9dd8b865e3b395d2faf1d62fc2f7aba72d4b0f13727e700dbe2083dedd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e46c96df3dbf4a044a681d8a08007d410ae081702da98b46ff5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c0b2cbcdb2f3ff6496dd6d5f4a042a435d8a080c894106e36d5c6c2a62d1bf6196dc34fd280654d27eea0801128166e01bb801298b46ff0f0d83085c77408721eaa8a4498f5788ea52d6b0e83772ff0f138efe421fd67f7b9b14fdb3ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88bf7685dc5b3b96cf4088f2b0e9f6b1a4583f91069060deedffcda0fd06e7db7bf2fef17f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb3b38c7e336876de8f91ecdaf3f3a76c3c52d75e7b64d18bdf6c0fcee6ff44ff7c09f97dcf409dca9b487656814989aa005b3a557b9384842d695b05443c86aa6fae082d8b43316a4fc75f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d830b417fc66196d07abe941054d27eea08010a816ae05fb800a98b46ffc65891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f0f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96d07abe941054d27eea08010a816ae059b827d4c5a37f55866400704eb82f7f14ace2e881b676b8fe78cf58fbcc404decf35e87b925b5e2f4b56707bf84dd7f419b8f648afd252b99f6c70c107f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d8365c033ce6196dc34fd280654d27eea0801128072e001702153168dffcec5c46c96df697e94038a435d8a0801028266e04171b794c5a37f5584136d3e2f7f04ad976460a8d5e84fe65b79c793f7d6ecd76fed459d68cb6f777b43d733df8887ce99281f9b6d662d31bcf0a1820fc3c20f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d827020d36196e4593e940814d444a820044a01bb807ee01e53168dffd3cac96c96df3dbf4a019532db52820040a00371905c03ca62d1bf5585104020b6df7f03adbc3fcf5539aa502745719f20b2eeda5dc799dd5fa59a9fcddd458cb8a206ffd5b17e66a8bab4b81f096b64107fc8c70f138efe421ff7251297859773ffd07f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cf0f0d83700e33d76196df697e9413ca6e2d6a080102816ae05fb8d32a62d1bfd7588ca47e561cc581c640e8800003ce6c96dd6d5f4a0995340fd2820040a01db8c86e32253168df558671c138d322077f03acfc3375a2889bb62c30bd862279ac376699bcbb3b17afbe9eff2d8fd79ebd9cd463e36fbe51c5e6ba1d8e6820cdcc0f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d40f0d8365e03ddc6196d07abe94132a651d4a0801128205c6dbb827d4c5a37fdcd3d26c96e4593e9413ca6e2d6a08010a807ae005719754c5a37f5586134dbedbaeb57f02aee77b0793bdb2f7270cf46d336660f2cd247db119abb76c71d4dfd9df1e62ddf5c3574c3fbcbaf3262a7771f1041fd1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d80f0d8369d699e06196df3dbf4a05c530963504008940bd71a66e32fa98b46fe0d7d66c96d07abe941054d27eea08010a816ae059b8d3aa62d1bf5586109b640079af7f02ae956fdd3cb2e5a25d9cb903d66f7b2476dbdb78651e8bbe658add0e9b18658f35dd326cd934de3d2d2e89f46c820fd5d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc0f0d836da659408721eaa8a4498f5788ea52d6b0e83772ff6196df697e94081486bb1410022500cdc10ae042a62d1bff7685dc5b3b96cfdddc6c96e4593e940b6a612c6a0801128172e34cdc03ea62d1bf55860baf85f75d177f04ad92234adbafeb01240f166af7c3f0df9f89bfbfd51b33e8f61fc5bdf0d7d4567a75fc5155c39fe2da41643b2083dbda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d8369a69fc36196c361be94132a681d8a0801128005c69bb8d32a62d1bfc2e1e00f1394fe5a0f3fdcfd727fbe08cf16ece165b8bfe83fcf6c96c361be9403ea6e2d6a08010a8076e001704f298b46ff55860bed3cd32e037f02adfcc71feeed15a35e8c3cf5e2c65a3d76d9df99c2cb2b39c30bd57bcf96c969b6d8e58dea64888cf8cda5ef1041dfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83680e37c86196df697e94136a6e2d6a0801128166e01db82754c5a37fc75891a47e561cc581c640e8800003eabb63a0c46496e4593e940bca681fa5040659500cdc659b820298b46f6c96df3dbf4a01a530963504008140b971a66e36da98b46f558665971f69b73f7f05ad276efcd3fb826f734be373a787bf6d5d6df7b4dee7dc57c766726dc43d6dd556111bdf82931eef1b96bde2083f7caf0ae050a065c0c8269b00da7df6e47c5238e06395c8de136590ab9283db24b61ea4af5152a7f57a83db261b0f527fbf4085f2b10649cb8ec664a92d87a542507b6496c3d49f0f1397fe590ad61900e1a079e2dd9db0022ddb820045ff41fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c60f0d8369d75ed06196e4593e940b4a6e2d6a08010a8176e360b817d4c5a37fcfc5c46c96d07abe94134a436cca08007d40b971a7ae084a62d1bf558665b7c4d89e6b7f04adf1f9cdfbf7e3e1663ca7ddced9746ba5382cdbb6d4f3eb5b2226af418c0ec5a49fb864e1b897c79f56dafc4107c3c20f13a2fe5a0ffb73f38c866e9cf16efc65c8b77365c8af6dfa07d03e9973e99722ffa0ff3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d26c96e4593e941094dc5ad410020504cdc6dfb8d3ca62d1bf5f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab5893aed8e8313e94a47e561cc581c0b2cb6f38d07f6496dd6d5f4a042a435d8a080c8940b5704fdc032a62d1bf6196dc34fd280654d27eea0801128166e01bb801298b46ff0f0d84109d701fdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e01bb80654c5a37fda4088f2b0e9f6b1a4583f91068737e5c0ce1fde7bff36e9dbcdb08b9f4003703370ff12acf4189eac2cb07f33a535dc618f1e3c2e3a47ecf52e43d2c78648c56cd6bf9a68fe7eaf6b83f9bd0ea52feed6a67879297b86d521bfa14c9c613a9938df3a97b5693a9ab7eb3a9ab86d52fe0ce6535f0ba65356fda652ef0dca6bc7cd4d5a73a9c34e4535f0daa61c9a54bdab429a61e2a64d3bd4bf834297b4ef5376f854c7821535edc0a67d5794c5ab8a9ab7de53f94088f2b0e9f6b1a4585fb3b7ab09bfd270876dde993bc9dc18ba3f9785ec4c687cc6b2da317bd0f6a9f6f7e9c98ec49da9f5d85c12bb535c6af64f70d8e77b9384842d695b05443c86aa6fae082d8b43316a4fc65f87352398ac4c697f0f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4e07f049105fd3c7161e38dabd85f7365dd2d6fd0ffc37f03b6ef83fd87d6e973f1629c16736c923a816993cf0d5ab570ef1f3bdc787ae77a4e9e49e63d2c97d6cdbd19d7e394f3dfeafffbf33ffbd9c2cac10f28c74150831ea58d240175e59b7c4e09c12ccbae3ed32dfda958d33c0c7da921e919aa8171d23f67a9721e9fb50be6b3585441bed2fd2800ad94752c2032e2807ae001700153168dffc0">>, +[ +{<<":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">>} +] +} +]}. +{story_22, [ +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8c814c5a37f768586b19272ff588aa47e561cc581e71a003f6496dd6d5f4a01a5349fba820044a04571b72e32053168df6c96df697e940894ca3a9410020502cdc69eb800298b46ff0f138bfe5b0acd46d11d91f07f3f52848fd24a8f0f0d023831408721eaa8a4498f5788cc52d6b4341bb97f5f87497ca589d34d1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c4c3c26c96d07abe94134a651d4a08010a810dc6c5700053168dff0f138bfe42c9566a466471d283f9c10f0d03333138c05f87497ca58ae819aa">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8c894c5a37f7686bbcb73015c1f0f0d83680cb55f90497ca589d34d1f649c7620a98268faff5885aec3771a4b6496dc34fd280654d27eea0801128115c6dcb8c894c5a37f5a839bd9ab0f28d3bb0e4bfc325f82eb8165c86f04182ee0042f61bd7c417305d71abcd5e0c2ddeb9871401fb50be6b3585441b869fa500cada4fdd6684a04571b72e32253168dff6a5634cf031f6a487a466aa05e319a4b5721e940037033709ebdae0fe54d5bf2297f76b52f6adaa64e30a9ab86d53269bea5ed5a14fe7fc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cd6c96df3dbf4a080a651d4a08010a8076e05bb8cb6a62d1bf0f138ffe5c6cab34f8da095c6df659203f9fca0f0d830b8c83588ca47e561cc58190b6cb8000016496df697e940054d27eea0802128115c6dcb8c894c5a37fcb5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d16c96df3dbf4a05f521aec5040089403f71b0dc1014c5a37f0f138efe5b8d66a3281b0c827197000fe7ce0f0d023931c1c0cdbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8cb2a62d1bfd3c40f28e8bb0e4bfc325f81f6a165cbe265f71e65c79dbacde7c4ebecc2215d84179f66e61c5007ed42f9acd615106eb6afa500cada4fdd60b2a04571b72e32ca98b46ffb5291f95873160642db2e0000fb52b1a67818fb5243d2335502f18cd25ab90f4fda9dcb620c7aa00f6c96df3dbf4a042a436cca08010a8076e34d5c642a62d1bf0f1390fe5b7647d6686365b95d7e37db203f9fd0c36496df697e940054d27eea0802128115c6dcb8cb2a62d1bf7b9384842d695b05443c86aa6fae082d8b43316a4fc80f0d83780007d15f901d75d0620d263d4c741f71a0961ab4ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2d7c80f28e9bb0e4bfc325f80227e1bf75f15d699bd86f36276f42ee1bafb376f5d7a1baf3d730e2803f6a17cd66b0a88375b57d280656d27eeb0595022b8db9719654c5a37fda948fcac398b03216d9700007da958d33c0c7da921e919aa8178c6692d5c87a7ed4ee5b1063d50076c96c361be940094d27eea0801128072e36d5c6c0a62d1bf0f1390fe5b6db6d668923b23e4191e13c0fe7fd4c7c1c0ca0f0d8375a7dfd3bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3d8c90f28e9bb0e4bfc325f82f5e1430c22870330e1640cc2fb4dde870bd81f7da6eede15fb9871401fb50be6b3585441badabe94032b693f7582ca8115c6dcb8cb2a62d1bfed4a47e561cc58190b6cb80003ed4ac699e063ed490f48cd540bc633496ae43d3f6a772d8831ea803f6c96df3dbf4a080a6e2d6a080112806ae322b8db6a62d1bf0f138ffe44e4a359a20c237e495c246407f3d5c8c2c1cb0f0d8365b79cd4c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4d9ca0f28e8bb0e4bfc325f81cbc1becb6f60699861be169903c0bc17b034fbc0659c2e86e61c5007ed42f9acd615106eb6afa500cada4fdd60b2a04571b72e32ca98b46ffb5291f95873160642db2e0000fb52b1a67818fb5243d2335502f18cd25ab90f4fda9dcb620c7aa00f6c96df3dbf4a320532db52820042a04171b72e36153168df0f138efe44dcab34370b190412342203f9d60f0d03363037c9c3d55f87352398ac5754df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8cb4a62d1bfdc0f0d033134375f89352398ac7958c43d5fd1d0cf0f28d3bb0e4bfc325f82eb8165c86f04182ee0042f61bd7c417305d71abcd5e0c2ddeb9871401fb50be6b3585441b869fa500cada4fdd6684a04571b72e32253168dff6a5634cf031f6a487a466aa05e319a4b5721e9ced86c96d07abe94134a651d4a08010a810dc6c5700da98b46ff0f138ffe42c95669f1bee32378a065a07f3fdac6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e9bb0e4bfc325f81dbace103b7e17705d75b78379c861861bc265f7ef030b4e3f730e2803f6a523f2b0e62c0c85b65c0001f6a17cd66b0a88375b57d280656d27eeb0595022b8db97197d4c5a37fda921e919aa8179c6708995c87a7ed4ac699e063ed4ee5b1063d5007cf5f91497ca589d34d1f649c7620a98386fc2b3d6496dc34fd280654d27eea0801128115c6dcb8cbea62d1bf5887a47e561cc5801f7b8b84842d695b05443c86aa6fd4798624f6d5d4b27f6196dc34fd280654d27eea0801128115c6dcb8cbea62d1bfda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f138afe44f3c065974226ff9fe06c96df697e940b4a612c6a0801128066e099b8cb8a62d1bf6496df697e9413ea6a22541002ca8115c6dcb8d014c5a37f588ba47e561cc58190840d00000f0d033739356196dc34fd280654d27eea0801128115c6dcb8d014c5a37fde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f138afe42fba07da71a6ddfe7e46c96df697e94105486d994100225022b817ee34ea98b46ffc1c00f0d023439bfdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f138afe596c0f0990b4d39fcfe56c96e4593e940894dc5ad410022500e5c6dfb8c814c5a37fc2c10f0d8369a71bc0e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688cbbb58980ae05c5f6196dc34fd280654d27eea0801128115c6dcb8d054c5a37f5f88352398ac74acb37f7f2988ea52d6b0e83772ff0f0d836df13d588ca47e561cc58190b6cb80003f0f1390fe59085c644dbc07c2d3ad3ae05f7bf96496dd6d5f4a0195349fba8200595002b807ee05b53168df6c96dc34fd280654d27eea0801128015c03b719654c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2c10f0d84081b6c1fc00f1391fe42cbc165b79f132075f0b420040f7f3f6496c361be940054d27eea0801654082e36cdc69d53168df6c96df3dbf4a002a693f750400894039700ddc034a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f86497ca582211f0f1389fe5f7c2dbc069b0ff3f06c96c361be940094d27eea080112806ee01db80694c5a37fcdccd1e70f0d840840f07fcbeb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d80f138afe44f09c6de744cbdfcff16c96df697e940bca6e2d6a0801128072e36fdc13ca62d1bf6496df697e9413ea6a22541002ca8115c6dcb8d054c5a37fce0f0d830bc067c9ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da0f138afe44f080271a7de67f9ff36c96df697e940bca6e2d6a0801128015c69bb81754c5a37fbfcf0f0d8365d033caee">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88db0f1389fe5d75f005a6402fe7f46c96d07abe94038a436cca0801128105c0bb71b0298b46ffc0d00f0d83101b67cbef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f1389fe5a65f03627dc73f9f66c96c361be940094d27eea080112806ee01db80654c5a37fd3d2d7ed0f0d8465e700ffd1f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f138afe42d81913ecb6dbdfcff7bec2d2d7ed0f0d840b2175afcdf1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf0f1389fe5d7c0269b7840fe7f7bed3d2d7ed0f0d846596d973d1f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f138afe42165c65a6da033fcff76c96e4593e940baa6a225410022502edc03d700253168dff6496df697e9413ea6a22541002ca8115c6dcb8d32a62d1bfd40f0d8365d6436196dc34fd280654d27eea0801128115c6dcb8d32a62d1bff4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e10f138afe42f3c1784265b67f9ffa6c96df697e940b8a6a225410022502ddc13d719714c5a37fc0d6dbf10f0d830800efbff5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f1389fe5b6d9005a705fcfffb6c96c361be940bea6a225410022502ddc6dfb81754c5a37fc1d7dcf20f0d83105d7fc0f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e9bb0e4bfc325f81dbace103b7e17705d75b78379c861861bc265f7ef030b4e3f730e2803f6a523f2b0e62c0c85b65c0001f6a17cd66b0a88375b57d280656d27eeb0595022b8db97197d4c5a37fda921e919aa8179c6708995c87a7ed4ac699e063ed4ee5b1063d5007f1dfc1d7dcf2dbc0f6ed0f138afe44078417db784f7f3ffc6c96df697e940bca651d4a08010a8072e32fdc0094c5a37f0f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ee0f138afe44078417db784f7f3f52848fd24a8fbfc3d90f0d023433c2f8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f138afe42113e0699032dff3fbe6c96c361be940bea6a225410022502ddc6deb8d814c5a37fc4dadff50f0d830bee0bc3f9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6c3e6d30f0d83081d730f138afe44cb2079d0becb3fcfbf6c96c361be940b2a65b6850400894033702edc684a62d1bf6496dc34fd281129947528200595021b8c86e01b53168dff588ca47e561cc5802db6d880007f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f30f138afe44079a69b71e719fe7c26c96df697e940bca651d4a08010a8066e005702fa98b46ffc8de0f0d023433c77686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8d34a62d1bf768fc17b568521ac649caa05702e1657075a839bd9abe65f87497ca589d34d1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884085aec1cd48ff86a8eb10649cbfeafa0f138afe42f81b79d00421fe7fc96c96e4593e940bca693f7504003ea01fb8d35700fa98b46f6496dc34fd280654d27eea0801128115c6dcb8d34a62d1bf0f0d0130c4c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c2df6196dc34fd280654d27eea0801128115c6ddb81794c5a37ff0ece17f0386d27588324e5f5886a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff0f28a7cbbb06edd93569c97e01342038d34e3616aeb3780204379b03e17eebecb206c0cfda9ac699e063c7f0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884089f2b567f05b0b22d1fa87d78f5b0dae25d9588aa47e561cc5804dbe2003c76496df697e94038a693f75040089408ae36e5c69c53168dfdb0f28cca0e4802abb795ba156e855bb81585f55dbcadd0ab742addc0ac2ffda85f359ac2a20df697e94038b693f75840089408ae36e5c69c53168dff6a5634cf031f6a487a466aa05e719c2265721e9f3ca0f0d033638346196dc34fd280654d27eea0801128115c6dcb8d38a62d1bf7686a0d34e94d727">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884084a4b2187f84a4b2187fe96496c361be94138a6a2254100225022b826ae05953168dff6c96dc34fd2826d486bb141000fa8076e01ab800298b46ffedc276841d6324e50f0d8379f7c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688aa6355e580ae05c16196dc34fd280654d27eea0801128115c6dcb8d3aa62d1bf5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96df3dbf4a002a693f750400894082e001704053168dfffcf16496dc34fd280654d27eea0801128166e09cb8d3aa62d1bf5889a47e561cc5802f001f0f28c4348dbd001b2e9c145ee38723e47b1cbd42e70d10cd041f6a17cd66b0a8837da5fa50015b49fbac2128115c6dcb8d3aa62d1bfed490f48cd540dbcb90f4fda958d33c0c7f4003703370adacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe6f70daa437f429ab86d534eadaa6edf0a9a725ffe7d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f138afe42f3400b61032cff3fe16c96df697e940b4a612c6a0801128066e099b8cb8a62d1bf6496df697e9413ea6a22541002ca8115c6dcb8d3aa62d1bf588ba47e561cc58190840d00007b8b84842d695b05443c86aa6fdc0f0d8369f6dfc8df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f138afe42265c0ba1132cff3fe5c1c0bfbedc0f0d8369b743c8df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e9bb0e4bfc325f81dbace103b7e17705d75b78379c861861bc265f7ef030b4e3f730e2803f6a523f2b0e62c0c85b65c0001f6a17cd66b0a88375b57d280656d27eeb0595022b8db97197d4c5a37fda921e919aa8179c6708995c87a7ed4ac699e063ed4ee5b1063d50077f049ebdae0fe54d5bf2297f76b52f6adaa64e30a9ab86d53269bea5ed5a14fe7f5f91497ca589d34d1f649c7620a98386fc2b3dc2c1c0de798624f6d5d4b27fcbe25f89352398ac7958c43d5f0f1389fe5b71d0ba2138fff3e96c96df3dbf4a002a681d8a0801128015c64371b794c5a37f0f0d83085b07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dab82754c5a37f7689aa6355e580ae05c20f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559efc36c96df3dbf4a05c521b665040089403d71976e36d298b46f5888a47e561cc5819003e65501314084f2b7730fdd0ae1523e9352264571e0804a7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a2128f6e82e3c1036a7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a4d27a942cdc7c0f014feaf4952978649caa6e2d9dcb629c44b83fbf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196d07abe941094d444a820044a01ab8015c65953168dffc55f87352398ac4c697f0f0d841099645f6c96d07abe94136a435d8a08010a8105c68371b754c5a37f588ba47e561cc5804dbe20001ff6c47f04dc0ae1526a44d02e3c1034a7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a2124f61719b8f040e29fd5e92a52f0c93954dc5b3b96c53889707f7f4a0570a9349ea50b371e0bcd29fd5e92a52f0c93954dc5b3b96c53889707f7c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196c361be94138a6a2254100225022b8d3f7190a98b46ffcac20f0d837d903f6c96d07abe94136a435d8a08010a807ae01db8d894c5a37fc1f9c77f01dc0ae1526a44d3371e081c53fabd254a5e19272a9b8b6772d8a7112e0fefe940ae1510947b75bb8f040d29fd5e92a52f0c93954dc5b3b96c53889707f7f4a0570a9349ea50b971f03c053fabd254a5e19272a9b8b6772d8a7112e0feffc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688aa6355e580ae25c16196dc34fd280654d27eea0801128115c6dcb8d3ea62d1bfded2c8d5ccc4f3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2cec60f0d841321719f6c96d07abe94136a435d8a08010a8105c69cb810a98b46ffc552848fd24a8fcc7f03dc0ae1526a44d02e3c10054feaf4952978649caa6e2d9dcb629c44b83fbfa502b8544251edd6ae3c0780a7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a4d27a942edc782f34a7f57a4a94bc324e553716cee5b14e225c1fdffcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196c361be94138a6a2254100225022b8d3f704153168dffd2ca0f0d8213c1c5c8c0ce7f00da0ae1526a44cbf71e0804a7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a2128f6e82e3cf29fd5e92a52f0c93954dc5b3b96c53889707f7f4a0570a9349ea5102e3c179a53fabd254a5e19272a9b8b6772d8a7112e0fefcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196df3dbf4a002a693f750400894035704fdc038a62d1bfd4cc0f0d033138336c96e4593e940854ca3a9410022500edc6c1719794c5a37fcbc3d17f01fa0ae1513d1330400b8f014feaf4952978649caa6e2d9dcb629c44b83fbfa502b8549a91340b8f040e29fd5e92a52f0c93954dc5b3b96c53889707f7f4a0570a884a3dbaddc7820754feaf4952978649caa6e2d9dcb629c44b83fbfa502b8549a4f5285eb8f32e014feaf4952978649caa6e2d9dcb629c44b83fbfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e86196dc34fd280654d27eea0801128115c6dcb8d814c5a37fcf6c96dd6d5f4a09a521aec5040085400ae04171a1298b46ffdcd26496dc34fd280654d27eea0801128166e09cb8d814c5a37fe60f28c4348dbd001b2e9c145ee38723e47b1cbd42e70d10cd041f6a17cd66b0a8837da5fa50015b49fbac2128115c6dcb8d3aa62d1bfed490f48cd540dbcb90f4fda958d33c0c7fe55a839bd9ab0f0d023335c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688aa6355e580ae25d9c2d30f0d0233356c96df697e940b8a6a225410022500cdc645700f298b46ffd6ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196df3dbf4a05e535112a0801128066e05db826d4c5a37fddd50f0d84085b69bf6c96d07abe94136a435d8a08010a807ee01eb8cb8a62d1bfd4ccda7f07dc0ae1526a44d02e3c103aa7f57a4a94bc324e553716cee5b14e225c1fdfd2815c2a2124f616deb8f040d29fd5e92a52f0c93954dc5b3b96c53889707f7f4a0570a9349ea50b971e0bcd29fd5e92a52f0c93954dc5b3b96c53889707f7d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128115c6dcb8d854c5a37f5f87497ca589d34d1fe67f1d88cc52d6b4341bb97f0f28cddf9305d87864bf0123132418ca1682c806091979a1b6eca1fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4ff0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1f40864d832148790b9365a085b71f65c7c2175d79965d65e0840c881f768586b19272ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c2df6196dc34fd280654d27eea0801128115c6ddb82694c5a37fecebe14085aec1cd48ff86d27588324e5f5886a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff0f28a7cbbb06edd93569c97e01342038d34e3616aeb3780204379b03e17eebecb206c0cfda9ac699e063cef1d80f1391e4c7f2d09e7160b2cbac89d7de740007f36c96c361be940bca681fa5040089403b71b7ee34ea98b46f0f0d83684f39">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688cbbb58980ae05c5f6196dc34fd280654d27eea0801128115c6dcb8d894c5a37f5f88352398ac74acb37fe80f0d836d96c5588ca47e561cc58190b6cb80003f0f1391fe5979b680db4cba169b13afb4fb2cff3f6496c361be940054d27eea080165403b71a15c65c53168df6c96df3dbf4a002a693f75040089403b702f5c69a53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1cc0f0d84101b6ddf6c96c361be940094d27eea080112800dc6dfb800298b46ff6496d07abe94032a5f2914100225022b8db971b1298b46ffe9e1cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eb0f138afe42d3ee09a138d37fcfe16c96dd6d5f4a05b521b66504008140b97000b800298b46ff6496d07abe940894dc5ad4100425022b8db971b1298b46ff588ca47e561cc58190840d0000070f0d830b6eb5c77686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c7d20f0d840b2e34d76c96dc34fd280654d27eea0801128066e32cdc6c2a62d1bfc3eee6d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c8d30f0d837822176c96e4593e94642a6a225410022500e5c69fb8d814c5a37fc4efe7d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d5798624f6d5d4b27fd57b8b84842d695b05443c86aa6f6c96dc34fd280654d27eea080112810dc13d704053168dffd5e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdccd70f0d840befb6e76c96dc34fd280654d27eea0801128072e32e5c138a62d1bfc8f3ebd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8db2a62d1bfcec2d9c16c96e4593e94642a6a225410022500edc1337191298b46ffd8e30f0d83684d036496d07abe94032a5f2914100225022b8db971b654c5a37f588ba47e561cc5804dbe20001fef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f138afe5a71a69a13aebffcfff0cc6496d07abe940894dc5ad4100425022b8db971b654c5a37fcb0f0d821321c3ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf0f1389fe5b642db6171a0ff3f1cdbecb0f0d03333339c3ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3768fc17b568521ac649caa05702e165707e8c8e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4d4df0f0d8375d69e6c96c361be940094d27eea0801128066e00571b7d4c5a37fc3c2f3de">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d5c9e00f28cddf9305d87864bf0123132418ca1682c806091979a1b6eca1fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4ff0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1fdfde0f0d8413ed3ae76c96dc34fd280654d27eea0801128066e321b8d014c5a37fd1c3f4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6d6cae1c96c96df3dbf4a002a693f7504008940377041b806d4c5a37fe0eb0f0d83759007c5c4f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7d7e20f0d8375f7d96c96df3dbf4a002a693f75040089403b702d5c0bea62d1bfc6c5f6e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c40f0d0234336c96df3dbf4a05a535112a0801028105c082e34da98b46ff7f2588ea52d6b0e83772ffe352848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be9413ea6a225410020500e5c64171b714c5a37fd1c1d0e6cbcaf1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdbf6c96e4593e940b4a6e2d6a08010a8072e059b801298b46ffd2c2d1e7cccbf2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfdee90f0d8465b719776c96e4593e94642a6a225410022500d5c10ae34053168dffdaccc2e8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfdfd3ea0f28cddf9305d87864bf0123132418ca1682c806091979a1b6eca1fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4ff0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1fe9e80f0d8369f7dd6c96df3dbf4a082a65b6a5040089403371b76e32ea98b46fcecdc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0e0d4ebd36c96c361be9413ea65b6a50400894082e059b81714c5a37feaf50f0d83109c77cfcec4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1e1ec0f0d830b4f036c96d07abe941054d03f4a0801128076e36f5c038a62d1bfd0cfc5eb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2e2ed0f0d8379f10b6c96d07abe941094d444a820044a019b820dc03aa62d1bffd1d0c6ec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e30f138afe5a0ba20bad81907f3fc66c96df697e94132a6a2254100225020b8d3d704ea98b46ff0f0d837d97d9d476841d6324e5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d55f87352398ac5754dff10f0d837c4fb56c96df697e94640a6a225410022500f5c0b9704e298b46ffd5d4caf0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e8e7f20f0d8468027dff6c96c361be940094d27eea080112806ae01db800298b46ffe3d5cbf1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8db4a62d1bfc1ddf4dc6c96c361be940094d27eea080112807ae32e5c69a53168dff35a839bd9ab0f0d8379b75f6496d07abe94032a5f2914100225022b8db971b694c5a37fd9cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcc4f70f0d840bce01bf6c96c361be940094d27eea080112807ae32e5c69953168dfbfdad0f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c5e1f80f28cddf9305d87864bf0123132418ca1682c806091979a1b6eca1fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4ff0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1ff7f60f0d841000fbffbebfdad0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c5f80f0d840bcf38dfc1bfdad0f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c5f80f0d841002267fc1bfdad0f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd5f86497ca582211f6c96c361be940094d27eea080112807ae321b81694c5a37fe3d3e2f8c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402c5f90f1fa79d29aee30c5289978c6692d5c87a58a513314a268a41a4788a9a5135e3db527fc96c3d305289bfe3c30f0d82101c7f15842507417f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7f27f0088cc52d6b4341bb97f0f0d840baf38ffc4c5e0d6fc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8cbbe0f0d840bc0745fc7c5e0d6fc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e3f30f0d84105913df6c96e4593e940bea651d4a08010a807ee05cb810a98b46ffd8768586b19272ffe3e2d8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae1c00f0d830b4f076c96df697e94134a65b685040089403371b7ee09953168dfc8e3d9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbbfe9c90f0d821081c35f87497ca589d34d1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f70f138afe597dc6da03c1683fcfda6c96df697e940b8a6a225410022500e5c6dab8dbca62d1bff1f00f0d8465f7df67f9ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd0c30f0d840844ebffc9cae5dbc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd0ecc3ebccc1cb0f0d84109979afcae5db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd0ecc30f28cddf9305d87864bf0123132418ca1682c806091979a1b6eca1fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4ff0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1f40864d832148790b9365a085b71f65c7c2175d79965d65e0840c881fc20f0d84101f705fcacbe6dc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e9f9c40f0d84702d34d76c96e4593e94642a6a225410022500edc0b3702e298b46ffe8e7ddc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfd2c50f0d840baeb22f6c96c361be940094d27eea080112807ee05cb82654c5a37fcde8dec4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ebdd6c96c361be94138a6a2254100225022b8dbd702ca98b46fff0e0efc5cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ecdecbf0e0efc5eae9cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8dbaa62d1bfe9f1c8f06c96df697e940854d444a820042a01db8cbd700fa98b46ffc7d10f0d033939396496d07abe94032a5f2914100225022b8db971b754c5a37fece2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0d7ca0f0d8365f69f6c96d07abe9413aa436cca0801128072e32e5c6c0a62d1bfbfede3c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1d8cb0f0d83085b7b6c96d07abe94032a6e2d6a0801128066e34edc6dd53168dfc0eee4ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2d9cc0f0d830800f76c96d07abe9413aa436cca080112807ae09cb81754c5a37fc1efe5cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3da6c96e4593e940b4a6e2d6a08010a8072e059b80714c5a37ff7e7f6ccc2f0d60f0d83640dbfe6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c45f91497ca589d34d1f6a1271d882a60c57737ff8cf0f28d2df9305d862e1bb06ddfcf5e081d1886e3a1189c14616e374ae4ad3c17e3fb50be6b3585441be7b7e94642b5f291610040502ddc6dfb8dbea62d1bfed4ac699e063ed490f48cd540931631af18cd25ab90f4f0f1f989d29aee30c24c58c6bc633496ae43d2c1aa90be579d34d1f7f0a9365a0bacbce899640cbcf32e884cb410819103fce0f0d84101f705fd6d7f2e8f8d8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6bfd00f0d83085b7bc2c4f2e8cef9f87e9365a0bae3c07df740d3af05b75910821032207fd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7de0f0d03363037ceeacfc5f3e9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7de0f0d8313e20f6c96df697e940baa681fa504008540397197ee004a62d1bfebd0c6f4ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8df0f0d8313cc8bbeebd0c6f4ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8df0f0d83640dbfbeebd0c6f4ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8df0f0d8313c00fbeebd0c6f4ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8df0f0d8313e267c2ebd0c6f4ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8dfd20f0d841004207f6c96df697e94640a6a225410022500edc6dcb806d4c5a37fc7f5ebd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8dbca62d1bfe10f0d8313cc83c0edd26496d07abe94032a5f2914100225022b8db971b794c5a37ff7ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfe20f0d8313cebbc1eed3bef7ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfe20f0d8313ee3bc5eed3bef7ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bff60f0d03313737c5eed3bef7ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfc4d50f0d83085b7bc7c9f7edd3798624f6d5d4b27f7b8b84842d695b05443c86aa6f7f059265a0bc00be26df034cbce81979e104206440e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2f90f0d83740e3bdcf1d6c1faf0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2e56c96e4593e940b4a6e2d6a08010a8072e04571b0a98b46ffc1f2c0d7c2588ba47e561cc5804dbe20001fe20f0d03323838f2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c45f87352398ac4c697f0f0d83784cb9cbf4d9c4bff3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6dcb8dbea62d1bfe90f0d8313cd0bc8f5da6496d07abe94032a5f2914100225022b8db971b7d4c5a37fc1f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f138afe5a13e1684d3adbbfcff66c96df3dbf4a082a65b6a5040089403d700d5c69c53168df6496d07abe940894dc5ad4100425022b8db971b7d4c5a37f588ca47e561cc58190840d000007c8e90f0d8365b6dec37686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f138afe5a132271f682fbdfcffa6c96df3dbf4a082a65b6a5040089403d700d5c69b53168dfc1c0caeb0f0d84081f007fc5bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc581a69e69f65f7f6496dd6d5f4a01c521aec50400b4a05bb8072e36f298b46f6c96df3dbf4a32152f948a08007d403d71976e002a62d1bfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac2c1588ca47e561cc581a009e001e6bf6496e4593e940894c258d41002d28176e361b8d32a62d1bf6c96c361be940b8a435d8a0801028066e01db8c854c5a37fd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc5c4588ca47e561cc58022742cb8267f6496dc34fd28c814d03b141002ca8172e320b8d094c5a37f6c96dc34fd281694ca3a9410022500ddc69fb8cb2a62d1bfd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c8c7588ca47e561cc581965b65f79c176496df697e94138a693f750400b2a05db8cb571a0a98b46f6c96dd6d5f4a05f53716b5040081403371a0dc65b53168dfd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3cbca588ba47e561cc581a680d85f6f6496d07abe94134a5f2914100225022b8cb971b694c5a37f6c96df697e94134a65b68504008940b371976e01f53168dfdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884084a4b2187f84a4b2187f588ca47e561cc58190b6cb80003f6496c361be94138a6a2254100225022b826ae05953168dff6c96dc34fd2826d486bb141000fa8076e01ab800298b46ffd1e276841d6324e50f0d8413a16dff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc0f138afe44271f784f36007f3f52848fd24a8f6c96df697e94134a436cca080102816ae09cb8d054c5a37fd9d8e25a839bd9ab0f0d03353731ded8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ded6d5588ca47e561cc5804d842175d0ff6496e4593e94105486d9941002ca806ae09cb8c814c5a37f6c96dc34fd2801290d762820042a01bb8dbb71b714c5a37fe7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1d9d8588ba47e561cc581f13ee8441f6496df697e940bea612c6a0801654033704fdc0014c5a37f6c96d07abe94009486bb1410022500edc6c571b714c5a37fea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4dcdb588ca47e561cc581a0bc2001d6ff6496dd6d5f4a004a681d8a08016940b37197ae05a53168df6c96df3dbf4a042a681d8a080102810dc65ab827d4c5a37fed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7dfde588ba47e561cc58020101f101a6496c361be940054d03b141002ca8172e360b82654c5a37f6c96d07abe940894d03b1410022500ddc082e040a62d1bfff0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f139728e3746091c8de748cc6d1641104e808065e0491ca27ff5893a47e561cc5801f4a536a12b585ee3a0d20d25fcb5f901d75d0620d263d4c741f71a0961ab4ff0f28c7c7a21bd7b570d3be006179b002fbe17da1061bf77ed4d634cf031f6a5f3d2335504f4af18cd25ab90f4fda983cd66b0a88375b57d281794ca3a941019794002e001700053168df4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f9408721eaa8a4498f57842507417f0f0d836dd75feed1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eee6e5588ba47e561cc581e6c2db4f336496dd6d5f4a040a612c6a080165400ae08371a1298b46ff6c96c361be94101486bb14100225020b8076e32253168dfff7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885895aec3771a4bf4a523f2b0e62c00fa52a3ac419272ff4085aec1cd48ff86a8eb10649cbff44090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbc40f0d0234336196dc34fd280654d27eea0801128115c6ddb800298b46ffd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be5f911d75d0620d263d4c795ba0fb8d04b0d5a77f0788cc52d6b4341bb97f0f0d83085b7b6c96c361be940094d27eea080112810dc6dab82794c5a37f6496d07abe94032a5f2914100225022b8dbb700053168dfffbdb768586b19272ff798624f6d5d4b27f7b8b84842d695b05443c86aa6f40864d832148790b9265a0bc00be26df034cbce81979e104206440dd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c5c40f0d83085b7bc3c2588ba47e561cc5804dbe20001fe0c2c1c0bfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c50f0d8365f69f6c96c361be940094d27eea0801128115c086e32e298b46ffc4bfe1c3c2c1df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e8bb0e4bfc325f81b66e821680e3f089fbb82f5f0b9830b617df79abd7a1001bb9871401fb5291f958731607da700f000007da85f359ac2a20d07abe9413ab6a2256684a04571b76e004a62d1bfed490f48cd540bc633496ae43d3f6a5634cf031f6a772d8831ea8037f119ebdae0fe54d5bf2297f76b52f6adaa64e30a9ab86d53269bea5ed5a14fe7f5f8b497ca58e83ee3412c3569f0f138afe42e3ef38eb2dba2fe7e36c96df697e94640a6a225410022500f5c69fb8dbca62d1bf6496c361be940054c258d41002ca8115c6ddb801298b46ff588ba47e561cc581d75d700007c6e40f0d826c026196dc34fd280654d27eea0801128115c6ddb801298b46ffe8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e9bb0e4bfc325f81b66e821680e3f089fbb82f5fbe07efde784fdec18216438305cc38a00fda948fcac398b03ed3807800003ed42f9acd61510683d5f4a09d5b5112b3425022b8dbb700253168dff6a487a466aa05e319a4b5721e9fb52b1a67818fb53b96c418f5401fc3c20f138afe44eb8f880dbc007f3fe7c1c0bfc7e50f0d8365d08bbee8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f138afe42e0401684e3ef7f3fe86c96df3dbf4a082a65b6a5040089403d700d5c69d53168df6496d07abe940894dc5ad4100425022b8db971b7d4c5a37f588ca47e561cc58190840d000007cbe90f0d850b6f3e207f6196dc34fd280654d27eea0801128115c6dcb8dbea62d1bf7686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80694c5a37f5f89352398ac7958c43d5fd40f0d83136d836c96df697e94640a681d8a080102807ee09bb8d814c5a37f6496d07abe94032a5f2914100225022b8dbb700d298b46ffcff1d3d2d1d0ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80754c5a37f5f87352398ac4c697f6c96e4593e940b4a6e2d6a08010a8072e04371a1298b46ffd57f1a88ea52d6b0e83772ffd5d76496d07abe94032a5f2914100225022b8db971b794c5a37fd4f40f0d023433f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df5887a47e561cc5801fc20f138afe42f81b79d00421fe7ff76c96e4593e940bca693f7504003ea01fb8d35700fa98b46f6496dc34fd280654d27eea0801128115c6ddb80754c5a37f0f0d0130c5ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e3e2c4e1e70f0d023433c5fa">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37f5f86497ca582211f6c96df697e94640a6a225410022500fdc106e36e298b46ffddc5dcdefa6496d07abe94032a5f2914100225022b8dbb700f298b46ffdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c86c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fdfc7dee0bfdcfc0f0d0337383752848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3ca0f0d826c42bfc8e1c0ddbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3ce0f0d83136d836c96df697e94134a65b685040089403371b7ee09953168dfc9e2bfc1de">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88c4768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc5802d3e203e173f6496df3dbf4a09b521aec50400b2a01bb8cbf700d298b46f6c96df3dbf4a09a5349fba820042a019b8cb3702da98b46f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac3c2588ca47e561cc5804013a275c67f6496e4593e94138a65b6a50400b2a01ab8172e32153168df6c96dc34fd282654cb6d0a08010a8072e05eb821298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc6c5588ba47e561cc581965e71e6996496e4593e940894be522820044a05db8d357190a98b46ff6c96c361be940baa436cca0801128066e085704253168dffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c9c8588aa47e561cc58190bef0036496e4593e9403aa693f75040089403771a76e01f53168df6c96dc34fd282754d444a820044a019b8176e01c53168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f138afe44f059038e34f37fcfcf6c96df3dbf4a044a436cca080102807ae34fdc6c4a62d1bf6496d07abe940894dc5ad4100425022b8dbb700f298b46ff588ca47e561cc58190840d0000070f0d830b4f836196dc34fd280654d27eea0801128115c6ddb80794c5a37f7686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf5f86497ca582211f6c96c361be940094d27eea080112807ae321b81694c5a37fcf408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff5a839bd9ab6496d07abe94032a5f2914100225022b8dbb700f298b46ff588ba47e561cc5804dbe20001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c56c96c361be940094d27eea080112810dc03f702053168dff798624f6d5d4b27fc5c4c3c2c1c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c7c6bec5c4c3c1c0c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c95f87352398ac4c697f6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fc0c7c6c5c3c2c40f0d8369d0b752848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc0bfc1c8c7c6c4c3c50f0d836de69ebe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccca6c96df3dbf4a09f5340ec5040089403d7040b820298b46ffc2c9c8c7c5c4c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc580217590bccf6496dc34fd281754d27eea0801128015c6c1702153168dff6c96dd6d5f4a01d535112a080112807ee043700253168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c2c1588aa47e561cc5802c85c0356496d07abe94036a693f750400894006e320b8c894c5a37f6c96e4593e94642a6a2254100225021b8d82e05f53168dffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37fc6c5588ba47e561cc5819036d3ce7f6496e4593e9403aa693f750400894006e34f5c65a53168df6c96dc34fd282754d444a820044a043702d5c0b8a62d1bffce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c9c8588ca47e561cc58020081c780fff6496df3dbf4a09e53096350400b2a045704cdc6dd53168df6c96e4593e940b4a681d8a080112816ae019b827d4c5a37fd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cccb588ca47e561cc5802171c03410ff6496d07abe940bca681d8a0801654086e36edc0bea62d1bf6c96df697e9403aa612c6a080112816ae36e5c69b53168df798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d0cf588ba47e561cc5802cb6e3eebd6496d07abe940bea693f75040089403771b66e09c53168df6c96e4593e94032a6a225410022500cdc0357190a98b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc58020101a0b8dff6496c361be940054d03b141002ca816ee09cb8cb2a62d1bf6c96d07abe940894d03b1410022500edc6deb81754c5a37fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c2c1588ba47e561cc581f744e3e0736496dd6d5f4a09a53096350400b2a00571b15c0b4a62d1bf6c96c361be94132a681d8a080112807ee01cb8db6a62d1bfc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37fc6c5588ba47e561cc5804271b69b176496df3dbf4a09f5349fba820044a05eb816ae34053168df6c96e4593e940894dc5ad4100225002b8215c034a62d1bffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c8408721eaa8a4498f5788cc52d6b4341bb97f0f0d8379d7036c96c361be940094d27eea080112810dc03f702053168dff6496d07abe94032a5f2914100225022b8dbb700f298b46ff588ba47e561cc5804dbe20001f52848fd24a8f768586b19272ff798624f6d5d4b27f7b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca5f87352398ac4c697f6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fc27f0988ea52d6b0e83772ffc2c4c7c6c10f0d836de13dc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc00f0d8371a641bfbec4c7c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc0bfc3bec2c4c7c6c10f0d8371e7c5c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc00f0d8369c65f6c96c361be940094d27eea0801128105c082e32da98b46ffbfc5c6c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cec1c0c4bfc3c5c8c7c20f0d03383533c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581c799684f356496d07abe941054ca3a941002ca816ee08371b1298b46ff6c96df697e9413ea681fa5040089403d700edc65f53168dfc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3c2c1588ba47e561cc581e085d03adf6496df697e94036a612c6a0801654086e341b8d32a62d1bf6c96dd6d5f4a09f521aec504008940b7704edc6dd53168dfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37fc6c5588ba47e561cc581c081e136df6496dd6d5f4a0595328ea50400b2a01bb8d06e09953168df6c96c361be940b6a65b6a50400894033704f5c65e53168dfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c9c8588ba47e561cc580416dd69f736496e4593e9413ca693f75040089408ae05bb82694c5a37f6c96c361be940b4a6e2d6a080112816ae0817196d4c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5cdcc588ba47e561cc581d680e040ff6496d07abe9413ca651d4a08016540397022b81754c5a37f6c96e4593e940b8a681fa5040089400ae09cb8d3ea62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d0cf588ba47e561cc581b7dd7df6dc6496c361be940854ca3a941002ca817ae019b80694c5a37f6c96d07abe940bca65b6a5040089400ae34ddc0b6a62d1bfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc580227c2c84206496d07abe94005486bb141002ca8266e36ddc65e53168df6c96d07abe9403ea651d4a080112816ee001700ea98b46ffc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f86497ca582211f6c96c361be940094d27eea0801128166e32edc6c4a62d1bfcb408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37f5f87352398ac4c697f0f0d8369c65f6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fc4c26496d07abe94032a5f2914100225022b8dbb700f298b46ff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37fc3c2798624f6d5d4b27fc9c8c76496d07abe94032a5f2914100225022b8dbb700fa98b46ffc2c70f0d8365c759c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0c50f0d03383334c4cac8bec2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6cc6c96c361be940094d27eea080112807ae321b81694c5a37fc0cbcac9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c66c96c361be940094d27eea0801128105c082e32da98b46ffc1cccbcac0c4c90f0d836de13dc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c70f0d03353836c6cccac3c0c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c7c6c1cccbcac0c4c90f0d03353831c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2d3d2588ba47e561cc581b75a71b7d96496e4593e9403ea651d4a0801654006e059b8d094c5a37f6c96dc34fd282654cb6d4a0801128115c135700ca98b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a6840101ef6496d07abe94134a5f291410022502e5c69db81754c5a37f6c96df697e94134a65b6850400894037702e5c6c4a62d1bfc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f91497ca589d34d1f6a1271d882a60c57737f408721eaa8a4498f5788cc52d6b4341bb97f0f0d83136d836c96df697e94640a681d8a080102807ee09bb8d814c5a37f6496d07abe94032a5f2914100225022b8dbb700d298b46ffd0cf768586b19272ffce7b8b84842d695b05443c86aa6f40864d832148790b9365a13aeb4279a6c0d01b0b4fb4d8021032207f5a839bd9ab0f28adf06416290bdcc42c00fb50be6b3585441badabe94032b693f758400b2a04571b76e01d53168dff6a5634cf031f">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88d2cac9588ba47e561cc581d6c0fb2cff6496d07abe940894d27eea080112806ee322b8d094c5a37f6c96e4593e940baa6a225410022500cdc69cb801298b46ff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb80794c5a37fcfce588ca47e561cc58190ba069f79ff6496df697e94036a693f750400b2a04371b66e32ea98b46f6c96dd6d5f4a321535112a080102816ee01ab807d4c5a37fc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5804d32e3adbb6496dc34fd2800a97ca4504008940bb71a7ee34e298b46ff6c96dc34fd280794dc5ad410022500cdc086e36d298b46ffc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c2c1588aa47e561cc5802079b6416496dd6d5f4a01a5349fba820044a05fb806ee36fa98b46f6c96df3dbf4a002a693f750400894002e32fdc13ea62d1bfcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c5c4588aa47e561cc581b0be21336496c361be9403ea693f7504008940b37020b8d894c5a37f6c96d07abe941094d444a820044a045704fdc69953168dffce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c8c7588ba47e561cc581979c032f0b6496df697e940bca5f291410022500ddc0b971b0a98b46ff6c96d07abe94038a436cca080112806ae05db8d36a62d1bfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96df697e94640a6a225410022500fdc106e36e298b46ff798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f87352398ac4c697f0f0d8313c2076c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fc6c4c3c252848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c0bfc8c7c6c5c4c3c20f0d03363138be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c0bfc8c7c6c5c4c3c20f0d03353732be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581f69f780d8b6496df3dbf4a082a612c6a0801654086e05eb800a98b46ff6c96e4593e9413ca681d8a0801128172e05bb82694c5a37fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c2c1588ba47e561cc581a6da0bed8b6496e4593e94138a5f2914100225002b8cb9704153168dff6c96dc34fd2820a996da1410022500fdc65eb8d36a62d1bfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c5c4588ba47e561cc581a79b69a6db6496dc34fd2827d4be522820044a05db826ae34d298b46ff6c96dc34fd281694cb6d0a080112806ae00371b794c5a37fd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc8c7588aa47e561cc580417597db6496df697e94038a693f750400894006e081704d298b46ff6c96d07abe9413ea6a2254100225022b8105c65f53168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cccb588aa47e561cc581c03820b56496dc34fd281029a4fdd410022502cdc102e34ca98b46ff6c95dc34fd282029a8895040089408ae041700053168dfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37fd0cf588ba47e561cc58020009a08816496e4593e9413aa612c6a08016540b3704ddc69f53168df6c96c361be940b8a681d8a080112810dc6dfb8d3ea62d1bfc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a6dd642f836496e4593e94138a5f2914100225021b8172e36fa98b46ff6c96c361be941014cb6d0a0801128172e05db82794c5a37fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c2c1588ba47e561cc581e75d65c13d6496e4593e940b2a612c6a080165400ae01ab81754c5a37f6c96dc34fd28169486bb14100225020b8d0ae36253168dffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c95f87352398ac4c697f0f0d84081b71cf6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37f408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f86497ca582211fc4798624f6d5d4b27fc47b8b84842d695b05443c86aa6fc45a839bd9abc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37fc26c96c361be940094d27eea080112807ae321b81694c5a37fc2c8c1c7c0c6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112810dc03f702053168dffc4cac3c9c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1cc0f0d03383430cbcac9c8c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1cc0f0d840800107fcbcac9c8c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1cc0f0d836df13fcbcac9c6c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15f87352398ac5754df0f0d830bee83c1cbcac9c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2be0f0d8313cebd6c96c361be940094d27eea0801128166e32edc6c4a62d1bfcccbcac9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3bf0f0d83132e3bbecccbcac9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3ce0f0d033133386c96df697e94134a65b685040089403371b7ee09953168dfcdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c00f0d03323438c1cdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c00f0d03333430c1cdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c00f0d826c42c1cdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cf0f0d83089e6bc1cdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cf0f0d820b42c1cdcccbcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5804f38ebcd3f6496df3dbf4a01c52f948a0801128176e32d5c65e53168df6c96e4593e9413ea436cca0801128066e342b810a98b46ffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c2c1588aa47e561cc581d684e89a6496d07abe940894d27eea0801128066e05bb8db2a62d1bf6c96e4593e940baa6a225410022500f5c0bf71a0a98b46ffcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc5c4588ba47e561cc5802ebaebef876496dc34fd282694d27eea0801128015c6c1704053168dff6c96dd6d5f4a09953716b5040089403f7020b8d3aa62d1bfd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc8c7588ba47e561cc581f704cbef7f6496e4593e940b4a693f7504008940b9702edc03aa62d1bf6c96c361be940894d444a820044a01cb8176e044a62d1bff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37fcdcc588ca47e561cc5802d044dbafb5f6496df697e940b8a435d8a0801654002e34edc032a62d1bf6c96d07abe940894be522820042a059b8176e080a62d1bffc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112807ae321b81694c5a37fc4408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff5a839bd9ab0f0d033935346496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca768b1d6324e5502b857138b83f5f88352398ac74acb37f588aa47e561cc581a642d81c6496df3dbf4a01e5349fba820044a04571a7ae36da98b46f6c96e4593e94134a6a225410022502cdc0b3719754c5a37fd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc2c1588ca47e561cc5802169e75e0b9f6496dc34fd281714d03b141002ca8115c002e34da98b46ff6c96dc34fd2810a984b1a820044a05ab8d3f71b754c5a37fd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c5c4588ba47e561cc5804eb2f3edbd6496e4593e94036a5f291410022500ddc69cb82754c5a37f6c96dc34fd2800a9b8b5a820044a019b817ae32253168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37fcac9588ba47e561cc581b6dc71b0376496dd6d5f4a01c5328ea50400b2a099b8115c0b4a62d1bf6c96e4593e9413aa65b6a504008940b9704e5c6df53168dfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15f87352398ac4c697f0f0d83640e336c96c361be940094d27eea0801128105c082e32e298b46ff408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c85f87352398ac5754df0f0d033533396c96c361be940094d27eea080112810dc03f702053168dffc4c3c2c1c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac66c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fccc57b8b84842d695b05443c86aa6fc5c4c35a839bd9ab0f0d840ba2139fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc90f0d03383333c0c7c6c5c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ffca0f0d827840c1c8c7c46496d07abe94032a5f2914100225022b8dbb702053168dffc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc46c96e4593e940b4a6e2d6a08010a8072e04571a714c5a37fd1cac2c9c8c7c10f0d8369f087c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0c50f0d830b2fb5c4cac9bfc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c50f0d836dd7456c96c361be940094d27eea080112807ae321b81694c5a37fcbcac9c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1cdc4d2cbc3cac9c8c20f0d84081f6dafc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c60f0d03393934c5cbcac0c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc581b680d38d01bf6496df697e941094cb6d0a0801694006e360b8cb4a62d1bf6c96d07abe940054cb6d4a08007d4086e041702f298b46ff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c3c2588aa47e561cc581d03af3a16496dd6d5f4a042a693f7504008940bb7196ee002a62d1bf6c96df3dbf4a05e535112a0801128066e341b82754c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac6c5588aa47e561cc5819704008b6496e4593e9403aa693f7504008940bb71905c684a62d1bf6c96c361be94138a6a225410022500cdc6c1700e298b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc9c8588ca47e561cc5802f3afb2e099f6496dd6d5f4a01f532db528200595001b826ae05953168df6c96c361be94138a436cca08010a8115c033700d298b46ffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cccb588aa47e561cc581a640d85c6496df3dbf4a01e5349fba820044a04571915c138a62d1bf6c96e4593e94134a6a225410022502cdc69cb8cbaa62d1bfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ffd0cf588ca47e561cc581913cf01c03bf6496df697e940bea693f750400b2a005704edc0baa62d1bf6c96d07abe94034a6a225410020500fdc6dcb8db6a62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581965c744e356496e4593e940894be522820044a045702f5c0b4a62d1bff6c96c361be940baa436cca080112816ae05bb801298b46ff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c3c2588ba47e561cc58196da65e7dc6496c361be940b4a5f291410022502cdc10ae01c53168dff6c96d07abe940b2a436cca0801128115c03b702f298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca5f87352398ac4c697f0f0d8313a26f6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37f408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff6496d07abe94032a5f2914100225022b8dbb702053168dff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112810dc6dab82794c5a37fcbc57b8b84842d695b05443c86aa6fc56496d07abe94032a5f2914100225022b8dbb700fa98b46ffc45a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c35f87352398ac5754df0f0d8369e1336c96e4593e940b4a6e2d6a08010a8072e04571a714c5a37fcac9c1c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ffcdccd1cbc3cac9c8c10f0d03353938c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bec00f0d8369969a6c96c361be9403ea6e2d6a08010a8076e09fb820298b46ffcccbcac9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf768b1d6324e5502b857138b83f5f88352398ac74acb37f588aa47e561cc581f101c6436496e4593e940b4a693f75040089403571a0dc0054c5a37f6c96dc34fd281654d444a820044a01bb827ee09d53168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c3c2588ba47e561cc58020780103c06496c361be9403ca681d8a08016540b3702ddc0814c5a37f6c96d07abe9413aa612c6a0801128115c106e040a62d1bffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c6c5588ca47e561cc5802fb2d3edb8f76496dc34fd2816d4cb6d4a0801654086e34fdc6de53168df6c96dc34fd28165486d99410021502ddc086e32d298b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbc9c8588ba47e561cc5804dbeeb60736496d07abe94032a5f291410022502d5c13d71b714c5a37f6c96df697e94034a6e2d6a080112807ee36cdc65d53168dfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cecccb588ca47e561cc5804e882f3ceb3f6496dc34fd281694dc5ad41002ca8166e34ddc032a62d1bf6c96dc34fd28112984b1a820042a0437041b82654c5a37ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1cfce588ba47e561cc581965d75d75b6496e4593e940894be522820044a05bb8166e09b53168dff6c96c361be940baa436cca080112807ae09ab8cbea62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a134e800f76496dc34fd2821297ca4504008940b971a05c65e53168dff6c96dc34fd282794cb6d0a080112806ee320b81694c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc5802f05b6da676496dc34fd282694d27eea0801128166e05cb81654c5a37f6c96dc34fd282129b8b5a820044a045702fdc034a62d1bffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588aa47e561cc5804e81d0836496df697e94038a693f7504008940b9700fdc0014c5a37f6c96dd6d5f4a09e535112a0801128072e32cdc640a62d1bfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112807ae321b81694c5a37fc7408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff5a839bd9ab6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5802ebe07c2df6496dc34fd282694d27eea0801128072e09bb8d36a62d1bf6c96dd6d5f4a09953716b5040089400ae001700053168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588aa47e561cc5802d082f7f6496dc34fd280654d27eea0801128172e36d5c03ca62d1bf6c96dc34fd280654d27eea080112806ee019b81694c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc5819744c842f76496dd6d5f4a05c52f948a080112816ee01fb80794c5a37f6c96df3dbf4a01f521b665040089403d71966e05953168dfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc581a7196db6596496df3dbf4a09d52f948a080112806ae32e5c032a62d1bf6c96df3dbf4a05f532db42820044a01bb8cbf704d298b46fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ca47e561cc580220b2f3a107f6496dd6d5f4a09a5340ec50400b2a00171a7ee000a62d1bf6c96c361be9413aa651d4a0801128166e059b8c814c5a37fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cfce588ca47e561cc5802fb2e84427ff6496dc34fd2816d4cb6d4a08016540bb71b05c6df53168df6c96dc34fd28165486d99410021500cdc03f7190a98b46ffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc58191004cb4ef6496d07abe940814be522820044a05ab827ee32ea98b46ff6c96df697e94105486d99410022500fdc6c5702da98b46ff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc581971d79a65d6496dd6d5f4a05c52f948a0801128015c69ab82754c5a37f6c96c361be94081486d99410022500fdc10ae32e298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc5802079b6c4cf6496c361be940b8a693f75040089400ae09fb81654c5a37f6c96df697e9403ea6a225410022500fdc6d9b80694c5a37fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112807ae321b81694c5a37fc7408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1d0cf588ba47e561cc581b0844268406496e4593e940bca65b6a50400b4a01bb8cbb7190298b46f6c96dc34fd28079486d9941000fa8066e32e5c640a62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c66c96c361be940094d27eea0801128166e32edc6c4a62d1bfcfc5c4c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a65e0bef356496d07abe94134a5f291410022500e5c082e05a53168dff6c96e4593e94136a65b685040089400ae321b800a98b46ff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc581d640d85b6f6496dd6d5f4a09d5328ea50400b2a005700fdc69b53168df6c96c361be940bca681fa50400894082e322b800298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ca47e561cc5802cb2d000277f6496dc34fd28071486bb141002ca8215c64171b754c5a37f6c96c361be94640a5f291410021502edc69fb8cb8a62d1bfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc58196c2ebef356496c361be940b4a5f291410022500e5c082e05a53168dff6c96df697e940b4a436cca0801128015c643700253168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ba47e561cc581a79d136d0b6496dc34fd2827d4be522820044a085704e5c0894c5a37ff6c96c361be940b2a65b68504008940bb71b7ee01b53168dfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f87352398ac5754df0f0d8469e7590f6c96c361be940094d27eea080112810dc03f702053168dff408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5802f36dbee3b6496dd6d5f4a09b5349fba820044a001704fdc6dd53168df6c96c361be941054dc5ad410022502cdc6c3719714c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc5802cb6e89c0f6496d07abe940bea693f75040089403771b7ae042a62d1bf6c96e4593e94032a6a2254100225002b8db7700f298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc5802213a100416496d07abe94136a681d8a08016540b37196ae000a62d1bf6c96df697e94134a651d4a080112810dc699b827d4c5a37fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810a98b46ffcac9588ba47e561cc5802071f6db6f6496df3dbf4a05b5349fba820044a085700cdc036a62d1bf6c96df697e9403ea6a225410022502f5c69bb820298b46ffc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1cdcc588ba47e561cc5819085a0b2f76496dd6d5f4a01f52f948a0801128166e36fdc13ea62d1bf6c96df3dbf4a099521b6650400894082e362b8cb6a62d1bfcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4d0cf588ca47e561cc5802d89b68210ff6496d07abe9413ea435d8a080165400ae045704253168dff6c96e4593e940b8a693f750400854082e09cb8d3ca62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810298b46ff5f87352398ac4c697f0f0d8371e65a6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37f408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff52848fd24a8f6496d07abe94032a5f2914100225022b8dbb702053168dff588ba47e561cc5804dbe20001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5802fb6e09b676496d07abe94138a693f7504008940357041b82694c5a37f6c96e4593e940bea6e2d6a0801128072e01eb8d34a62d1bf798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810a98b46ffc4c3588ba47e561cc58190b8d38fb96496d07abe940814be522820044a01ab8015c03aa62d1bff6c96e4593e94109486d99410022500e5c69db817d4c5a37fc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c7c6588ca47e561cc5802db4e38f3e2f6496e4593e940054d03f4a08016540b3702f5c69953168df6c96c361be940854d27eea08010a8115c0b5700e298b46ffc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cac9588aa47e561cc581b700c8bf6496dd6d5f4a01a5349fba820044a01ab8c86e01953168df6c96c361be940094d27eea080112806ee34fdc138a62d1bfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7cdcc588ba47e561cc581d704c85c7f6496e4593e94640a651d4a08016540bd71905c0014c5a37f6c96c361be940854d03f4a080112800dc6c37191298b46ffcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cad0cf588ca47e561cc580227c4d38e37f6496df697e94009486bb141002ca8066e01eb81714c5a37f6c96d07abe9403ea651d4a080112807ae32ddc0054c5a37fce">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588cd768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc5804175c0803f6496e4593e9413ca693f7504008940bb704ddc644a62d1bf6c96c361be940b4a6e2d6a080112806ae001704f298b46ffd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c2c1588ca47e561cc5802d000e85d6bf6496dd6d5f4a05a521aec50400b2a05bb8d82e01b53168df6c96df3dbf4a05b52f948a08010a8076e043704ca98b46ffd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d5c5c4588ba47e561cc5802d32f3cdb76496df697e941014d27eea080112806ae32f5c038a62d1bf6c96d07abe940054d444a820044a01bb8cb7704153168dffd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8c8c7588ba47e561cc581c644cb8dbd6496df697e940b6a651d4a08016540bb7190dc13ea62d1bf6c96dd6d5f4a040a65b6a5040089403371a7ae32d298b46fdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbcbca588aa47e561cc581a0b810ff6496dd6d5f4a01a5349fba820044a00171905c684a62d1bf6c96c361be940094d27eea0801128166e360b80794c5a37fdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dececd588ca47e561cc5804d81d105c6bf6496df697e94101486d9941002ca8176e09cb8cb6a62d1bf6c96dd6d5f4a019521aec5040085403371b7ae09953168dfe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1d1d0588ca47e561cc5802c800d32177f6496e4593e94032a435d8a0801654006e05bb8d3ca62d1bf6c96dc34fd280754ca3a94100225022b817ee36ea98b46ffe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4d4d3588aa47e561cc581d75e005b6496d07abe940894d27eea0801128166e01ab80714c5a37f6c96df697e940b8a6a2254100225022b8d33704153168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb810a98b46ffd9d8588ba47e561cc5802ebaf32cb56496dc34fd282694d27eea0801128015c6dcb806d4c5a37f6c96dd6d5f4a09953716b5040089403d71b7ee09953168dfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1dcdb588ba47e561cc581b6d90b626f6496dd6d5f4a01c5328ea50400b2a059b827ee05c53168df6c96df3dbf4a09e532db52820044a04371b66e000a62d1bfc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4dfde588ba47e561cc5804d38f38eb76496dd6d5f4a004a5f2914100225002b8d06e34e298b46ff6c96c361be9403aa6e2d6a080112807ee09eb800298b46ffc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7e2e1588ba47e561cc58022132f36cf6496dc34fd281754d27eea0801128172e36d5c69a53168df6c96dc34fd280714d444a820044a01bb8015c034a62d1bffcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae5e4588ba47e561cc581969f704fb76496c361be940b4a5f2914100225000b807ae34e298b46ff6c96df697e940b4a436cca080112816ae32d5c0054c5a37fce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb807d4c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a76c96df3dbf4a002a693f7504008940b3704ddc0054c5a37fd1408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff6496d07abe94032a5f2914100225022b8dbb700fa98b46ff588ba47e561cc5804dbe20001f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc580400b6003ce7f6496d07abe94134a65b6a50400b2a05eb810dc6dd53168df6c96df697e94138a65b685040085400ae09db8cbea62d1bfdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbc2c1588ba47e561cc581b036ebefbf6496df697e940054ca3a941002ca800dc6ddb810298b46ff6c96d07abe9403ea65b6850400894082e36edc0b2a62d1bfdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb811298b46ffc6c5588ba47e561cc5804e059680df6496d07abe94032a5f291410022502f5c6d9b8dbaa62d1bf6c96df697e94034a6e2d6a080112800dc03371a0a98b46ffe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c9c8588ba47e561cc581a65c6da6596496d07abe94134a5f2914100225001b8cb5704da98b46ff6c96e4593e94136a65b6850400894086e342b8d36a62d1bfe6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cccb588ca47e561cc5802fbccb4d3c0f6496c361be941054cb6d4a080165400ae321b8d894c5a37f6c96df697e94009486d99410021500fdc69db8d894c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d0cf588aa47e561cc58021138f7f6496dc34fd280654d27eea0801128172e01bb800298b46ff6c96dc34fd280654d27eea0801128072e341b8cb6a62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbd3d2588ba47e561cc581b702e09c776496d07abe9403aa651d4a08016540b37001b8cbea62d1bf6c96df697e94138a65b6a5040089408ae34f5c0baa62d1bfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ced6d5588ba47e561cc581d138cb6c8b6496dc34fd282714ca3a941002ca816ae32e5c034a62d1bf6c96dc34fd2817d4d03f4a080112807ee32fdc13aa62d1bfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688cbbb58980ae05c5f6196dc34fd280654d27eea0801128115c6ddb80794c5a37fdae10f0d847da6da6b588ca47e561cc58190b6cb80003f0f1390fe420642175a001e7c2d38ebee85efe76496df697e94101486d9941002ca8166e341b817d4c5a37f6c96dd6d5f4a01e532db42820044a05ab8176e01f53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d65f87352398ac4c697f7f2688cc52d6b4341bb97f0f0d033732336c96df697e94134a65b685040089403371b7ee09953168df6496d07abe94032a5f2914100225022b8dbb702253168dffe452848fd24a8fe7d17b8b84842d695b05443c86aa6f40864d832148790b9365a13aeb4279a6c0d01b0b4fb4d8021032207fe60f28adf06416290bdcc42c00fb50be6b3585441badabe94032b693f758400b2a04571b76e01d53168dff6a5634cf031f">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88ddc40f0d8365d13d6c96df3dbf4a002a693f7504008940b3704ddc0054c5a37f7f0588ea52d6b0e83772ff768586b19272ffc4588ba47e561cc5804dbe20001fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1c80f0d03393837c1c0bfc5bec4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1c80f0d8364207bc1c0bfc5bec4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e15f911d75d0620d263d4c795ba0fb8d04b0d5a76c96d07abe9413ea6a225410022500fdc03b71a0298b46ffd9c2c5c1c7c05a839bd9ab0f0d03353938c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4c00f0d033731376c96c361be940094d27eea0801128166e32edc6c4a62d1bfc4c3c9c2c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5c16c96c361be940094d27eea080112810dc03f702053168dffdcc5c8c4cac3c00f0d03393733c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e65f87352398ac5754df0f0d03333836bfc6c5cbc4ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7c36c96e4593e94136a65b685040089403b7000b8d34a62d1bfdec7cac6c2ccc50f0d03353834cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb811298b46ff5f86497ca582211f6c96e4593e94640a681fa50400894033702d5c65b53168dfe1cacdc9cfc8c50f0d03343239ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0c70f0d8313a26f6c96c361be940094d27eea080112807ae321b81694c5a37fcbcad0c9cfe2cec6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1d30f0d0234336c96df3dbf4a05a535112a0801028105c082e34da98b46ffcccbd06496d07abe94032a5f2914100225022b8dbb702053168dffcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c50f0d830b8cb3c6cdccd2cbd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3d50f0d03373333c0cdccd2cbd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c50f0d830b8d3b6c96c361be940094d27eea0801128105c69fb807d4c5a37fcecdd3ccd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc580220bae321f6496dc34fd281754d27eea080112816ee043700ca98b46ff6c96dc34fd280714d444a820044a01eb827ee32053168dff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac3c2588ba47e561cc581a7d96d975f6496dd6d5f4a32052f948a080112816ee36cdc642a62d1bf6c96df3dbf4a044a65b685040089403b700d5c65953168dfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc6c5588aa47e561cc581f680f83f6496dd6d5f4a01a5349fba820044a05bb806ee084a62d1bf6c96df3dbf4a002a693f75040089403d71a05c6c4a62d1bfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c9c8588aa47e561cc5804e3c20376496df697e94038a693f7504008940b7704edc0baa62d1bf6c96dd6d5f4a09e535112a0801128076e36edc0054c5a37fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3cccb588ba47e561cc58196c0175f076496c361be940b4a5f2914100225001b8d02e084a62d1bff6c96df697e940b4a436cca080112810dc64171b1298b46ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6cfce588ba47e561cc5802079f65c776496c361be940b8a693f75040089403371966e05f53168df6c96df697e9403ea6a225410022500edc69ab8dbaa62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9d2d1588ba47e561cc581b0badbe1776496e4593e940094ca3a941002ca8105c685704fa98b46ff6c96c361be94038a65b68504008940bb704e5c65e53168dfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcd5d4588ba47e561cc5804f09c7da776496df3dbf4a01c52f948a0801128072e04571b7d4c5a37f6c96df3dbf4a320521b665040089400ae09bb8cbca62d1bfd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfe6e3d3408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f768586b19272ff6496d07abe94032a5f2914100225022b8dbb702253168dff588ba47e561cc5804dbe20001f5a839bd9ab0f0d0335363052848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e65f87352398ac5754df0f0d8313cd83e4c5c3c2c1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7be0f0d83085f736c96c361be940094d27eea080112810dc03f702053168dffc6c4c3c2c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb811298b46ff5f87352398ac4c697f0f0d830bc06bc0c8c6c5c4c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfe20f0d830b22076c96e4593e94640a681fa50400894033702fdc0bca62d1bfc9c7c6c5c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0e3bedfc9c8c7c6c5c40f0d830bef83c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0e4e3588ca47e561cc5802d09c640eb9f6496e4593e940baa435d8a08016540b571b6ee01e53168df6c96c361be9403ea5f291410021500fdc006e080a62d1bffe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3e7e6588ba47e561cc5804079c65b0f6496df697e9413aa693f7504008940b9704fdc69953168df6c96dd6d5f4a05c53716b5040089403771b15c0814c5a37fe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581c65f13c0776496e4593e940b8a651d4a080165408ae34cdc6df53168df6c96c361be9403ca65b6a504008940b3704cdc65e53168df798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc3c2588ba47e561cc581a65d65b13d6496d07abe94134a5f291410022500cdc69fb820298b46ff6c96e4593e94136a65b685040089403b7022b8db8a62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc6c5588aa47e561cc581f70006d96496e4593e940b4a693f7504008940b77197ae01b53168df6c96c361be940894d444a820044a01db8cb7704da98b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c9c8588ba47e561cc5802d34e36db96496df697e941014d27eea0801128072e34e5c13ca62d1bf6c96d07abe940054d444a820044a003702f5c65f53168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d5cccb588ca47e561cc5802cbac800f3ff6496df3dbf4a042a435d8a0801654082e362b800a98b46ff6c96e4593e941054be522820042a05db8076e32ca98b46ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8cfce588ba47e561cc581a69a740f3f6496df697e94136a5f2914100225000b816ee082a62d1bff6c96d07abe94132a65b68504008940b57040b8db2a62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbd2d1588ba47e561cc5802069e7d9076496df3dbf4a05b5349fba820044a05cb817ee084a62d1bf6c96e4593e940814d444a820044a01cb8115c6c2a62d1bffd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f138afe5a005970200bef7f3fe26c96e4593e941014cb6d4a0801128172e32fdc6dd53168df7b8b84842d695b05443c86aa6fe50f0d830bc27be17686bbcb73015c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e2d9d8588ca47e561cc5804cbae36db8f76496d07abe94036a436cca08016540b571905c0014c5a37f6c96df697e94032a681fa5040085403f71b0dc65b53168dfd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5db408721eaa8a4498f5788cc52d6b4341bb97f0f0d837da71c6c96e4593e94136a65b685040089403971b7ae34ea98b46f6496d07abe94032a5f2914100225022b8dbb702253168dff588ba47e561cc5804dbe20001f52848fd24a8f768586b19272ffddc85a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb811298b46ffe4e3588ba47e561cc5804eb2e09f0f6496e4593e94036a5f291410022500ddc00ae01953168dff6c96dc34fd2800a9b8b5a820044a01ab8d3b7190298b46ffe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1e7e6588ba47e561cc581d1004d85df6496c361be94136a651d4a0801654106e32fdc03ea62d1bf6c96dd6d5f4a080a681fa504008940bf71966e05e53168dfe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81654c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588aa47e561cc581f704f05c6496e4593e940b4a693f7504008940b9704d5c03ea62d1bf6c96c361be940894d444a820044a01cb8066e082a62d1bff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbc3c2588ca47e561cc5804f3cfbccb61f6496c361be94034a6a22541002ca8005c0b9704d298b46ff6c96df697e94034a651d4a08010a816ae05eb8d814c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ca47e561cc5804e3e100997ff6496e4593e940854dc5ad41002ca8005c006e044a62d1bff6c96dc34fd2817d4c258d410021502d5c69fb81694c5a37fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc58190b4d34fff6496e4593e9403aa693f750400894035702f5c0094c5a37f6c96dc34fd282754d444a820044a01cb816ee32d298b46ffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ca47e561cc5802eb2065c781f6496e4593e941094d03f4a08016540bf7190dc6d953168df6c96df3dbf4a09f53716b5040085413371a76e36ca98b46fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cfce588ba47e561cc581e75a1321736496df697e940894c258d41002ca8176e085704fa98b46ff6c96dd6d5f4a05b521aec50400894035700e5c682a62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3d2d1588aa47e561cc581f6c206836496e4593e940b4a693f7504008940b3700edc6da53168df6c96c361be940894d444a820044a0457196ee36053168dffd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d5d4588ca47e561cc5802265b75f7dbf6496df697e94138a681d8a08016540b371a66e34f298b46f6c96dd6d5f4a084a651d4a080112810dc135700253168dffd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e05f87352398ac5754df408721eaa8a4498f5788cc52d6b4341bb97f0f0d84640279ff6c96df697e94640a6a225410022500f5c0b57190298b46ff6496d07abe94032a5f2914100225022b8dbb702253168dff588ba47e561cc5804dbe20001f52848fd24a8f768586b19272ffda7b8b84842d695b05443c86aa6f40864d832148790b9365a13aeb4279a6c0d01b0b4fb4d8021032207f5a839bd9ab0f28adf06416290bdcc42c00fb50be6b3585441badabe94032b693f758400b2a04571b76e01d53168dff6a5634cf031f">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88e3e2e1588ba47e561cc581c7c4d32db36496df697e941094ca3a941002ca8172e099b80714c5a37f6c96dd6d5f4a09d5340fd2820044a01cb806ee09d53168dfe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e6e5e4588ca47e561cc58196df7de65a7b6496e4593e94136a5f29141002ca806ae09fb8d054c5a37f6c96dc34fd282694cb6d0a080102806ee362b81714c5a37fe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81654c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588aa47e561cc581a03217036497df3dbf4a01e5349fba820044a01ab8db9719694c5a37ff6c96df3dbf4a09b535112a080112806ae36f5c640a62d1bf798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ca47e561cc5802175f6df79df6496e4593e941014d03b141002ca800dc65db800298b46ff6c96dc34fd280694c258d4100225021b8cbb7197d4c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc581a69c71c75e6496df697e94136a5f291410022500ddc68371b0a98b46ff6c96d07abe94132a65b6850400894033704edc6dd53168dfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc581a65e03c26b6496d07abe94134a5f291410022500ddc6c171b754c5a37f6c96e4593e94136a65b6850400894033700fdc69b53168dfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ba47e561cc581a65d0002f76496d07abe94134a5f2914100225002b8d82e36153168dff6c96e4593e94136a65b685040089403f700fdc6dd53168dfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cfce588ca47e561cc58042034e38fb7f6496df697e940b8a65b6850400b2a05db8015c03ca62d1bf6c96dd6d5f4a044a65b6a5040085403571a76e084a62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f0f138afe42ebedbecb6cbad7f3df6c96df3dbf4a080a6e2d6a0801128072e320b8c854c5a37fdedc0f0d03343930d576841d6324e5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d5d4588ba47e561cc5802f059680ff6496dc34fd282694d27eea0801128115c68171a1298b46ff6c96dc34fd282129b8b5a820044a059b8c82e05a53168dffd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9d8d7588ba47e561cc5804cbc10b60f6496dc34fd2800a97ca45040089400ae099b80654c5a37ff6c96dd6d5f4a01f53716b50400894082e01bb8cb2a62d1bfd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcdbda588ca47e561cc5802203cdb407bf6496dc34fd282654d03b141002ca8105c002e34153168dff6c96dc34fd282794ca3a9410022502f5c6c1702ea98b46ffd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfdedd588ba47e561cc581d71c03226f6496df3dbf4a3215328ea50400b2a01ab8d3f702f298b46f6c96df3dbf4a040a681fa50400894037702cdc0094c5a37fdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e2e1e0588ca47e561cc580407990be067f6496df697e940094cb6d0a08016540b77196ee32e298b46f6c96dd6d5f4a040a65b685040085403b71a05c138a62d1bfdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb811298b46ffe40f0d8468427d9f6c96e4593e94640a681fa50400894033702fdc0bca62d1bf408721eaa8a4498f5788ea52d6b0e83772ff768586b19272ff6496d07abe94032a5f2914100225022b8dbb702253168dff588ba47e561cc5804dbe20001f52848fd24a8fe67b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81654c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588ca47e561cc5802c884eb2d37f6496c361be94036a435d8a08016540b77022b8dbca62d1bf6c96d07abe940094ca3a9410022500f5c13771a654c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc581b71b79b0376496df697e9403ca651d4a0801654002e34ddc65e53168df6c96d07abe94136a65b6a504008940b37040b82654c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc5802cbeeb4ebb6496d07abe940bea693f7504008940bb700f5c640a62d1bf6c96df697e940094d444a820044a01ab8cb5719794c5a37fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc5819081e1041f6496dd6d5f4a01f52f948a0801128115c102e34ca98b46ff6c96df3dbf4a099521b66504008940b57020b81654c5a37fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ba47e561cc58020780f09af6496c361be940b8a693f750400894006e04171b754c5a37f6c96df697e9403ea6a2254100225022b827ee34da98b46ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cfce588ca47e561cc580206da69e703f6496df697e94036a681d8a08016540b5700d5c6da53168df6c96dd6d5f4a01a5340ec50400894082e341b8d814c5a37fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3d2d1588ba47e561cc581f659702ebb6496df697e940bea612c6a08016540b57040b810298b46ff6c96dd6d5f4a002a435d8a0801128105c086e05e53168dffd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81694c5a37fd6d5588ba47e561cc581f69d038fff6496e4593e940b4a693f75040089408ae00371a654c5a37f6c96c361be940894d444a820044a05ab8d3d702da98b46ffd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1d9d8588ba47e561cc5802d3acbc0676496df697e941014d27eea080112816ae081719754c5a37f6c96dd6d5f4a32053716b50400894082e041704f298b46ffd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4dcdb588ba47e561cc5802cbedb6e0b6496d07abe940bea693f7504008940b971972e32e298b46f6c96df697e940094d444a820044a01bb8cbd704fa98b46ffda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e0dfde588ba47e561cc581a03c20b4ff6496df3dbf4a080a5f291410022502f5c6d9b801298b46ff6c96e4593e94005486d994100225001b806ee32da98b46ffdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae2e1588ba47e561cc581a0080113ff6496df3dbf4a080a5f2914100225001b8cbf704ca98b46ff6c96df3dbf4a004a436cca080112810dc64571b6d4c5a37fe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cde5e4588ca47e561cc5819036cb22107f6496df697e941094d444a8200595042b826ae05b53168dff6c96dc34fd282754d27eea080102817ae019b811298b46ffe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581f136079e736496d07abe940bca612c6a08016540b57197ae34053168df6c96df697e94032a435d8a080112807ee32d5c1054c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6c3c2588ba47e561cc581d75f702db36496c361be940054c258d41002ca817ae32cdc03aa62d1bf6c96d07abe9403aa681fa50400894006e34ddc13ca62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9c6c5588ca47e561cc58022680cb4f3bf6496e4593e9413aa681d8a080165400ae085700153168dff6c96dc34fd2820a994752820044a041700edc680a62d1bffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcc9c8588aa47e561cc5819684d05c6496e4593e9403aa693f75040089408ae01ab810298b46ff6c96c361be94138a6a225410022502d5c699b821298b46ffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfcccb588ca47e561cc5802c81a69f703f6496e4593e94032a435d8a080165408ae32cdc0b6a62d1bf6c96c361be94038a651d4a0801128166e34ddc0894c5a37fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e2cfce588aa47e561cc581f036f3ff6496dd6d5f4a01a5349fba820044a05ab8076e01953168df6c96df3dbf4a002a693f750400894082e32edc65b53168dfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5d2d1588ca47e561cc5802c844f36cb9f6496df3dbf4a01a521aec50400b2a04371a72e040a62d1bf6c96e4593e94034a651d4a080112816ee05fb821298b46ffd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81694c5a37fd6d5588ba47e561cc58196db744cbd6496c361be940b4a5f291410022502edc0357191298b46ff6c96d07abe940b2a436cca080112806ae342b8cbaa62d1bfd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1d9d8588ba47e561cc5804cb4f32cbf6496c361be94640a693f7504008940bb702e5c0b2a62d1bf6c96d07abe940814dc5ad410022500d5c0bf702da98b46ffd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4dcdb588aa47e561cc5819032071b6496e4593e9403aa693f750400894006e01eb817d4c5a37f6c96dc34fd282754d444a820044a0457196ee01a53168dffda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7dfde588ba47e561cc5819742c85c7f6496dd6d5f4a05c52f948a0801128115c133704ca98b46ff6c96df3dbf4a01f521b66504008940b5700d5c6db53168dfdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae2e1588ba47e561cc58196db71c6456496c361be940b4a5f291410022502e5c6dab82714c5a37f6c96d07abe940b2a436cca080112806ee00571b0298b46ffe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cde5e4588ba47e561cc581a75f64400f6496dc34fd2827d4be522820044a001704cdc6db53168dff6c96dd6d5f4a05b532db42820044a05ab8066e36253168dfe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a79e03afff6496c361be9403ea693f7504008940357190dc6d953168df6c96df697e94132a6a225410022500ddc69db8db6a62d1bf798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6c3c2588ca47e561cc580227df784f35f6496df697e94009486bb141002ca8266e32ddc0bca62d1bf6c96dc34fd280754ca3a9410022502ddc683700da98b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9c6c5588ca47e561cc5819782fb4279af6496dd6d5f4a05f5328ea50400b4a05ab827ae32f298b46f6c96df3dbf4a019532db52820040a01fb8db5704e298b46fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81654c5a37f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d840badbad76c96c361be94138a6a225410022500cdc002e000a62d1bff408721eaa8a4498f5788ea52d6b0e83772ff5a839bd9ab768586b19272ff6496dc34fd280654d27eea0801128166e36edc0b2a62d1bf5889a47e561cc58197000f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4d1d0588ba47e561cc58020081a69ef6496df3dbf4a05b5349fba820044a01bb8cbd700253168df6c96df3dbf4a042a6a225410022500cdc65bb8cbaa62d1bfcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7d4d3588ba47e561cc581b75971f07f6496dc34fd281029a4fdd410022500d5c0bd71a694c5a37f6c96dd6d5f4a082a6a225410022500e5c0b5702ca98b46ffd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb81694c5a37fd8d7588ba47e561cc581f71f036db96496dc34fd282654c258d41002ca8172e34e5c640a62d1bf6c96dc34fd282694d03b1410022500ddc0bd71a0a98b46ffd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1dbda588ca47e561cc58040744e81b73f6496d07abe940054cb6d0a0801654082e09eb810298b46ff6c96df697e940894cb6d0a08010a8176e36ddc1094c5a37fd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4dedd588ba47e561cc581b79c740eb96496df3dbf4a040a651d4a0801654082e341b8d814c5a37f6c96e4593e941014cb6d4a0801128176e09eb800a98b46ffdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7e1e0588ba47e561cc5802fb2f3c16f6496dd6d5f4a09b5349fba820044a099b8c82e34fa98b46f6c96e4593e940bea6e2d6a080112816ee360b80694c5a37fdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae4e3588ca47e561cc5804db41740cbff6496dc34fd28269486d9941002ca8176e05ab8cb2a62d1bf6c96dc34fd282714d03b1410021500d5c10ae32da98b46ffe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb816d4c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc580226de101af6496dd6d5f4a05e5349fba820044a005704edc0bea62d1bf6c96c361be94036a6a225410022500fdc6ddb80714c5a37f798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4c3c2588ba47e561cc5802f36db8f356496dd6d5f4a09b5349fba820044a001704ddc0bea62d1bf6c96c361be941054dc5ad410022502d5c006e01c53168dffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5588ba47e561cc581c69e7dc6df6496df3dbf4a05d5328ea50400b2a05bb8cbd702d298b46f6c96e4593e94038a65b6a5040089403b7196ee05d53168dfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8588ba47e561cc581a7dd13a06f6496d07abe94642a5f2914100225002b816ee34053168dff6c96e4593e940854cb6d0a0801128105c102e09b53168dffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccb588ba47e561cc581a03adbeebf6496df3dbf4a080a5f291410022502edc082e05a53168dff6c96e4593e94005486d99410022500d5c643702e298b46ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d07686bbcb73015c1f0f0d0231365f90497ca589d34d1f649c7620a98268faff5885aec3771a4b0f28bbbb7f6dee3876ffef6ec8f0614ead7b9c4fff20a63f3572087a3f7e5a677715bfbb5ea7bf6e3f6a5634cf031f6a487a466aa0b2b5e319a4b5721e9f408721eaa8a4498f5788cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4c10f0d023136c0bf0f28babb7f6dee3876ffedd6a784c01a1fd44ffe414c7e6ae410f47efcb4ceee2b7f76bd4f7edc7ed4ac699e063ed490f48cd541656bc633496ae43d3fbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4c10f0d023136c0bf0f28bbbb7f6dee3876ffef269a3b457a5676dea7ff90531f9ab9043d1fbf2d33bb8adfddaf53dfb71fb52b1a67818fb5243d233550595af18cd25ab90f4fbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4c10f0d023136c0bf0f28bbbb7f6dee3876ffefc76fcc9a1b6e747ae7ffc8298fcd5c821e8fdf9699ddc56feed7a9efdb8fda958d33c0c7da921e919aa82cad78c6692d5c87a7be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d45f87497ca589d34d1f0f0d840badbad76c92dc34a9a4fdd45195040b8dbb702da820045f7f0188ea52d6b0e83772ff5a839bd9ab768586b19272ff6496d07abe94138a65b68502fbeea806ee001700053168df5892ace84ac49ca4eb003e94aec2ac49ca4eb003d54085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcdbda588aa47e561cc581a6590b826496df3dbf4a01e5349fba820044a059b8172e32ea98b46f6c96e4593e94134a6a2254100225022b817ae32053168dffd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfdedd588aa47e561cc581d005a7836496dd6d5f4a042a693f7504008940b771a7ae32e298b46f6c96df3dbf4a05e535112a0801128076e05ab8cb2a62d1bfdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e2e1e0588ba47e561cc581a75965c73f6496c361be9403ea693f750400894002e09cb8d054c5a37f6c96df697e94132a6a225410022502cdc6deb82654c5a37fdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5e4e3588ba47e561cc581b6c4c81d7b6496dd6d5f4a01c5328ea50400b2a043700f5c65953168df6c97df3dbf4a09e532db52820044a05cb8cb57197d4c5a37ffe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e8e7e6588ca47e561cc5802e3adbe213ff6496df3dbf4a05c5340fd28200595022b8176e34d298b46f6c96e4593e940894d444a820042a05ab8172e05d53168dffe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128115c6ddb816d4c5a37f768b1d6324e5502b857138b83f5f88352398ac74acb37f588ba47e561cc581a0bcfb4fbf6496dc34fd2821297ca450400894002e342b81694c5a37ff6c96dd6d5f4a09f532db42820044a059b8276e05d53168df798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887688cbbb58980ae05c5fc55f8b497ca58e83ee3412c3569fc07f1c842507417f0f138afe44e01d65d0b4ebbfcf6c96df697e940bca6e2d6a080112806ee34fdc0baa62d1bf6496dd6d5f4a05d5340ec50400b2a01cb8272e05c53168df588ca47e561cc5802db6d880007f7b8b84842d695b05443c86aa6fdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4cbc3c5c20f138afe440719109c109dfe7f6c96c361be940094d27eea0801128105c65fb82714c5a37f6496dc34fd280654d27eea0801128166e01fb8cbca62d1bf5889a47e561cc5802f001fc1e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cecdcc588ba47e561cc5802cb4dbcf076496d07abe940bea693f75040089400ae34f5c65c53168df6c96e4593e94032a6a225410022500fdc0b5719654c5a37fcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1d0cf588aa47e561cc581f700e33f6496dd6d5f4a01a5349fba820044a05bb8cbd702f298b46f6c96df3dbf4a002a693f75040089403b7196ee01e53168dfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4d3d2588ba47e561cc5819702ebae396496dc34fd2816d4be522820044a01fb8db3704153168dff6c96dc34fd2810a90db32820044a05fb806ee01953168dffd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d7d6d5588ca47e561cc5802169f71b781f6496dc34fd281714d03b141002ca816ae09cb8db6a62d1bf6c96dc34fd2810a984b1a820044a01fb8dbb71b6d4c5a37fd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dad9d8588aa47e561cc581903a17db6496e4593e9403aa693f75040089400ae05db810298b46ff6c96dc34fd282754d444a820044a041702edc134a62d1bffd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6dd5f86497ca582211fd8d50f1389fe5c0bc17c4f32f7f36c96df3dbf4a002a693f75040089408ae34fdc6d953168dfd25a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d96196dc34fd280654d27eea0801128115c6ddb81714c5a37f5f87352398ac5754dfd90f0d837dd7df0f138afe44ebacb2e85e033fcf52848fd24a8f6c96df697e94640a6a225410022500cdc6deb811298b46ff6496c361be9403ea693f75040089403f71b6ae36e298b46f588aa47e561cc581c034f001">>, +[ +{<<":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">>} +] +} +]}. +{story_23, [ +{ +undefined, +<<"488264016196dc34fd280654d27eea0801128166e32edc0814c5a37f769086b19272b025c4b884a7f5c2a379feff0f28ff3dbb76f2dc325f81b6dd034fc6d842d15c04ae34f8d96df036d05975b1899744eb5215b2040204a1085e13829196d92b426a56dc6c1a0fecd45035452b6a88a05440544f68190d524e89d56635440c9524b42a2068191510356e5440fc54400815115e5598d5102ceeab230b8a88a0544faa2062293a9d514a2004000802a88184d61653f9545285c544507da85f359ac2a20dd6d5f4a0195b49fbac16540b371976e040a62d1bfed4ac699e063ed490f48cd540bc7191721d7b7afdff0f1f909d29aee30c78f1e178e322e43af6f5630f0d82109f408721eaa8a4498f57842507417f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff588eaec3771a4bf4a523f2b0e62c0e035f87497ca589d34d1f5a839bd9ab6496dc34fd280654d27eea0801128166e32edc65e53168df0f13b1fe64948e3f201970430b617996d98e49247a51824211d24ab34f92594aecaf05d246eb6d48c89a0bafb4400d92bef87f9f4088f2b563a169ce84ff93ac7401a757278f099578e322e43af6f5b8f03f0f0d84136179cf6196dc34fd280654d27eea0801128166e32edc0854c5a37f7f0788ea52d6b0e83772ff408af2b10649cab0c8931eaf90d70eedca7f551ea588324e51c7417fbf4088f2b10649cab0e62f0233337b05582d43444e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32edc0894c5a37fc96c96d07abe940b6a6a2254100225020b8d0ae36ea98b46ff52848fd24a8f5888a47e561cc581f0036496dc34fd280654d27eea0801128166e362b810a98b46ff7b8b84842d695b05443c86aa6fcb0f0d8313416b5501304088ea52d6b0e83772ff8d49a929ed4c0d7d2948fcc0175b7f0a88cc52d6b4341bb97f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2588aa47e561cc581e71a003f5f89352398ac7958c43d5fd16496dd6d5f4a01a5349fba820044a059b8cbb702253168df0f13b1fe64948e3f201970430b617996d98e49247a51824211d24ab34f92594aecaf05d246eb6d48c89a0bafb4400d92bef87f9fd00f0d03393538cac2cdcccb6c96e4593e9413ca65b6a5040038a05ab8c8ae34ca98b46fc9c57f058d49a929ed4c0d7d2948fcc017c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d7c76c96df3dbf4a01b5340fd2820042a01fb816ee36fa98b46fcbd50f0d8369d79cc4588ca47e561cc581903cd36fba0f6496dc34fd282714d444a820059502cdc6dcb8d094c5a37fcfd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f0f138ffe6408d66872ba58da92479e781fcf6496df697e940b2a693f750400894086e362b806d4c5a37f588ba47e561cc5804dbe20001fcd6c96d07abe940baa6a225410021502cdc65db821298b46ffd1db0f0d830884ef5f901d75d0620d263d4c741f71a0961ab4ff6196dc34fd280654d27eea0801128166e32edc0b2a62d1bfd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f138ffe5c75d59a1cae9636a3940d001fcf6496df697e940b2a693f750400894086e34fdc6c2a62d1bfc2d16c96d07abe940baa6a225410021502cdc65db820298b46ffd5df0f0d033634345f86497ca582211fc1dc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66c96d07abe9413ea6a225410022502cdc64371b6d4c5a37f0f138ffe5923eb34491914617191bc407f3fd7588ca47e561cc58190b6cb80003f6496df3dbf4a321535112a080165403d71a76e36253168dfd6e30f0d03343138c5c4df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c00f138ffe44175668923228c2e3237880fe7fd9bf6496df3dbf4a321535112a080165403d71a7ae01953168dfd7e40f0d821043c6c5e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca6c96df3dbf4a042a6a2254100225020b807ae09e53168dff0f138ffe5d642e2cd123236400dc925003f9dbc16496df3dbf4a09a535112a080165403d7040b8d894c5a37fd9e60f0d836de6dbc4c7e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96d07abe9413ea6a225410022502cdc659b80654c5a37f0f138ffe5d0b4459a248c8a36dd0b41203f9ddc36496df3dbf4a321535112a080165403d71a7ae01d53168dfdbe80f0d836de7c3c6c9e4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6c96e4593e940b8a693f7504008540b771a15c0b8a62d1bf0f138ffe5b2904b3518648e5111e138007f3dfc56496df697e940baa6e2d6a0801654086e34ddc65b53168dfddea0f0d83759799cccbe6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06c96df3dbf4a042a6a2254100225020b807ae09c53168dff0f1390fe5a0c8facd123236403cf363781fcffe1c76496df3dbf4a09a535112a080165403d7041b810a98b46ffdfeccecd0f0d836dd133e8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d26c96d07abe9413ea6a225410022502cdc645700153168dff0f1390fe5f009f59a248c8a30c72b2e340fe7fe3c9c8e0ed0f0d84085f71dfcfcee9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f0e06c96d07abe94138a435d8a080102816ae08571b7d4c5a37fe4ee0f0d03393136dd588ca47e561cc5804eb4179f0bbf6496d07abe940b8a6e2d6a0801654106e36fdc0814c5a37fd1ec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d66c96e4593e94038a65b68504008540bb702d5c036a62d1bf0f1390fe4401808b34375c7e31b32ca1681fcfe7cd6496df697e940baa6e2d6a0801654086e360b80654c5a37fe5f20f0d8465d79f17d46196dc34fd280654d27eea0801128166e32edc0b4a62d1bfef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f6e66c96d07abe94138a435d8a080102816ae05eb8cb6a62d1bfeaf40f0d84642c81efe3588ca47e561cc5804eb4179e7d9f6496d07abe940b8a6e2d6a0801654106e36f5c69d53168dfc1f2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370d6acf4189eac2cb07f33a535dc618f1e3c2f31cf35051c882d9dcc42a1721e962b1cc51c8c56cd6bf9a68fe7e94bdae0fe74eac8a5fc1c54d7ba1535eebea64e30a9938df5356fd6a6ae1b54d5bf6a9934df5356fbdfcf5f96497ca58e83ee3412c3569fb50938ec4153070df8567b0f138f0b80642179965f65d6db6df081a7ff6196dc34fd280654d27eea0801128115c69bb8db4a62d1bf6496dc34fd280654d27eea0801128166e34ddc6da53168df4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb59871a52324f496a4f5a839bd9ab768320e52f0f0d840842d37f408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5583640f35588faed8e8313e94a47e561cc58197000f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e76c96d07abe9413ea6a225410022502cdc64371b714c5a37f0f138ffe5d1086b344919146174458c00fe7f8de6496df3dbf4a321535112a080165403d71a7ae01c53168dff6c40f0d836de0b3e56196dc34fd280654d27eea0801128166e32edc0bca62d1bf7f3588ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3ff50f0d826402c7c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bef50f0d826402c76196dc34fd280654d27eea0801128166e32edc0bea62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f6c96df697e9403ca681fa50400894102e01cb81794c5a37f6196c361be940094d27eea080112816ae320b810298b46ff6496dc34fd280654d27eea080112816ae320b810298b46ffce768344b2970f0d023433cb5584799109ff5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96dc34fd280654d27eea0801128166e32edc0bea62d1bf5890a47e561cc581e71a003e94aec3771a4b6496dd6d5f4a01a5349fba820044a059b8cbb702fa98b46f7f1ae9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f4088f2b5761c8b48348f89ae46568e61a002581f5f9e1d75d0620d263d4c741f71a0961ab4fd9271d882a60c9bb52cf3cdbeb07f798624f6d5d4b27fd77b8b84842d695b05443c86aa6fd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f6c96e4593e94032a6a225410022502d5c102e042a62d1bff0f138ffe432c71acd12313cdb820b64203f952848fd24a8f588ba47e561cc5804dbe20001f6496c361be94640a693f7504008940b771a15c69b53168dfc3dd0f0d83644db55f901d75d0620d263d4c741f71a0961ab4ffd7d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96df3dbf4a042a6a2254100225020b807ae09a53168dff0f138ffe59948b3448c8d900e3f238007f3fc2fa6496df3dbf4a09a535112a080165403d7041b80654c5a37fc6e00f0d8308040f5f87352398ac5754dfdad9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c00f138efe6322cd1232364038fc8e001fcfc4588ca47e561cc58190b6cb80003f6496df3dbf4a09a535112a080165403d7040b8dbea62d1bfc9e30f0d03313838c0dcdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86c96df3dbf4a09d53716b50400894082e05bb8d854c5a37f0f138ffe44fb2b34418c8cbed3ad32407f3fc7c06496df3dbf4a019535112a080165403f71b0dc69c53168dfcbe5dade0f0d03363539dd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f138ffe4212acd1063232fb4eb4c901fcff6496df3dbf4a019535112a080165403f71b0dc69b53168dfc2ccc0c9e60f0d03323836dbdfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb0f138ffe44dc8b34418c8cbed3ad32407f3f6496df3dbf4a019535112a080165403f71b0dc6dc53168dfc3cdc1cae70f0d03363035dce0df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96e4593e94642a6a225410022502edc0bf7191298b46ff0f1390fe4220cad2cd1246ca18c2ec61003f9fcb588ca47e561cc58190b4e81969ff6496df3dbf4a321535112a08016540bb702fdc644a62d1bfd0ea0f0d84081d6c1f5f86497ca582211fe4e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e25f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d83132ebdece2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f6c96c361be94134a65b6a50400854082e05ab8cbea62d1bf6196c361be940094d27eea0801128215c6deb8db2a62d1bf6496dc34fd280654d27eea0801128215c6deb8db2a62d1bff2e10f0d840880cb5fee55846c4e81dfe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e8c30f0d03333038f16196dc34fd280654d27eea0801128166e32edc1014c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e9c40f0d03333038f2be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402bf768586b19272ff6495dc34fd2800a994752820000a0017000b800298b46f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf7f22caacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f28bf40606c0fb61c0103ad5f68026dbfb50be6b3585441be7b7e940096d27eeb08017540b371976e080a62d1bfed4ac699e063ed490f48cd540bc7191721d7b7af0f1fffa3019d29aee30c206bc7191721d7b7ab11c646238c8c23fca8749609cf4957ac7317e2a44548a0f4547c54889054a0c9293ac0d81f6c3802075abed004db7f1314f1164324c7aa03549f8ac744561ed496090b28eda13f14d11543a4b0463b282a3b5a5f81d75c49f55960f058fe281d535a398b016a5b15df8a688bb96c418f54005c2d2e2f8ac7445e0b18ebae0f1e273d25ac7317e238c9152482a3a624153f0825852d5158541e8b5263d5005971cf2eb8f7c47476891032bb7f11d1da2b206576fe23a3b45de090b28eda12b783d9449e0d217e2a44512600b2d85f69f7997de71bf8a911120e1bf0acf7c548892682eddbca880b2a20633d25ac7317e2a445d1158e62db65104e94d6ab30b0c78f1e178e322e43af6f563e2a44561652d9616c830f0d033635367f31842507417f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfd00f138ffe5c03d2acd1246ca18c2ec61003f9dd588ca47e561cc58190b4e819685fcfe1fb0f0d83702d83dbc7f3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e0da0f138ffe442656689191b201c7e47000fe7fded76496df3dbf4a09a535112a080165403d7040b8dbaa62d1bfe2fc0f0d03353437d9f5f4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f3ce0f0d03333038fcc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1db0f138ffe5e7e559a24646c8071f91c003f9fdfd86496df3dbf4a09a535112a080165403d7040b8d854c5a37fe3fd0f0d831080efdac9f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c7c6c5c4c30f0d023433c2f2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f4cf0f0d03333038fdc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e26c96d07abe9413ea6a225410022502cdc645700f298b46ff0f1390fe421904159a248c8a3108607000fe7fe1da6496df3dbf4a321535112a080165403d71a7ae040a62d1bfe55a839bd9ab0f0d84134279afe0f9f8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f7d20f0d83644f87becc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f6c96e4593e940bea6e2d6a080112817ae09bb8d3ea62d1bf6196c361be940094d27eea0801128205c0b5702153168dff6496dc34fd280654d27eea0801128205c0b5702153168dff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbf60f0d830b6f07408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5584704dbcfff6edc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ec6c96e4593e94642a6a225410022502edc0bf704e298b46ff0f138ffe431bb2acd1246ca11c64132f03f9eb588ca47e561cc58190b4e819683f6496df3dbf4a321535112a08016540bb702fdc138a62d1bff0c80f0d83740cbfe7d67f1088ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f0c10f138ffe4401b2b34491b28471904cbc0fe7ee588ca47e561cc58190b4e8196dcfc0f2ca0f0d837996dbddd8bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fdf0f0d03333038cbd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f2c30f138ffe59032f2cd1246ca11c64132f03f9f0588ca47e561cc58190b4e81965bfc2f4ccebda0f0d84089969afc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f4cccb6c96c361be9403aa6e2d6a0801128172e34e5c684a62d1bf6196dc34fd280654d27eea0801128105c13b700e298b46ff6496dd6d5f4a01a5349fba820044a041704edc038a62d1bfca768344b2970f0d84132f859fca5584085a0b5f5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f9ca0f138ffe432ca059a248d94238c8265e07f3f7c6c8fad20f0d83782eb9f1e0c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5e60f0d03333038d26196dc34fd280654d27eea0801128166e32edc1054c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88fa588ca47e561cc581c640e880007fe76496d07abe94032a693f750400b4a01cb8db5700d298b46f54012a6c96dc34fd280654d27eea0801128072e360b8d32a62d1bf0f0d8365e083e5cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88fec1ea6496c361be94642a6a22541002d2820dc6dcb800298b46ffc06c96e4593e94642a6a2254100225041b8d86e36fa98b46ff0f0d836c0d3fe7ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7fc4ed6496d07abe94032a693f750400b4a01fb8d3b702ca98b46fc36c96dc34fd280654d27eea080112807ee321b82694c5a37f0f0d836c0e87ead1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887b8b84842d695b05443c86aa6fddf06c96df3dbf4a05f532db42820044a08571a7ee34ea98b46f6196c361be940094d27eea0801128215c03371b6d4c5a37f6496dc34fd280654d27eea0801128215c03371b6d4c5a37fdbce0f0d84642fb2e7da55846dc001cfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f2afdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3cdec6496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25f5f87352398ac4c697fe0768320e52f0f0d023432e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cade0f138ffe59132b34491b28471904cbc0fe7f52848fd24a8f588ca47e561cc58190b4e8196c1fdec9e80f0d033830335f87352398ac5754dff7de">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcfd0f0d03333437e9d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96e4593e94038a65b68504008540bb702d5c0054c5a37f0f1390fe4236dc2acd0dd71f8c60115e681fcfc1588ca47e561cc58190b6cb80003f6496df697e940baa6e2d6a0801654086e360b82794c5a37fcdec0f0d84640e342f5f901d75d0620d263d4c741f71a0961ab4fffbe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ceedc66c96df697e94640a6a225410022502d5c13b704fa98b46ff6196c361be940094d27eea0801128205c13f702e298b46ff6496dc34fd280654d27eea0801128205c13f702e298b46ffebde0f0d840bc071bfea5584702e3cdfdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e1b1288a1861860d19edbaf39b11f9d711aff0f0e6787c3992bc3bb6d1a7878bbbdaa30d78368387e73c5838ffb675b5f6a5f3d2335502f617ba0865ea2a7ed4c1e6b3585441badabe94032b693f758400b2a059b8cbb704153168dff6a6b1a678184088f2b5761c8b48348f89ae46568e61a00f2c1f7f0fe9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27ff9da6196dc34fd280654d27eea0801128166e32edc1014c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dee45f88352398ac74acb37f6496d07abe94032a693f750400b4a045700cdc65a53168dfe46c96dc34fd280654d27eea080112810dc00ae01f53168dff0f0d840b2eb4e7c1f2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1f50f138ffe42cb8b34491b28471904cbc0fe7fd4588ca47e561cc58190b4e804fb5ff4df5a839bd9abd4ea0f0d826420f4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e3e9c26496d07abe94032a693f750400b4a01eb8076e09a53168dfe86c96dc34fd280654d27eea080112807ae01ab80654c5a37f0f0d84081d007fc5f6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffecc56496dd6d5f4a004a693f750400b4a04371a72e32053168dfeb6c96c361be940094d27eea080112810dc65db82654c5a37f0f0d8369975beff9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e8eec76496dd6d5f4a004a693f750400b4a019b816ae09c53168dfed6c96c361be940094d27eea0801128066e041700da98b46ff0f0d8365f71bf1fb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eaf0c96496dd6d5f4a004a693f750400b4a04571a7ee36ca98b46fef6c96c361be940094d27eea0801128115c65fb82654c5a37f0f0d8369e69af3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ed6c96c361be940094d27eea0801128166e099b810298b46ffe1588ca47e561cc58190b4f81e7dff6496dc34fd280129a4fdd41002ca8166e09eb8c814c5a37f0f0d840bcfb4ffcfd0c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f06c96c361be940094d27eea0801128176e003702fa98b46ffe4e06496dd6d5f4a0195349fba8200595002b8005c0854c5a37f0f0d84136079bfd1d2c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca6c96c361be940094d27eea080112810dc641704da98b46ffe6d2588ca47e561cc58190b4fb2d099f6496dc34fd280129a4fdd41002ca816ae04171b794c5a37f0f0d8413afb2f7d5c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f5588ca47e561cc581c640e880007fd56496dd6d5f4a004a693f750400b4a01bb8d3f702ea98b46f54012a6c96c361be940094d27eea0801128015c699b8d38a62d1bf0f0d836db71f6196dc34fd280654d27eea0801128166e32edc1054c5a37fcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e32edc1094c5a37f768dd54d464db6154bf79812e05c1fc30f28da445dcd07feef6effe770ffc13cd42f6103e06c2e02fbd75670000003086f00207af5f6bff77b07ff3ed4c1e6b3585441be7b7e94504a693f750400baa059b8cbb704253168dff6a5f3d233550206bc7191721e9fb5358d33c0c70f1fff87049d29aee30c206bc7191721e962361086238c9e26a0f18e8aec3c8c058c6b884b8584004e3cf01c6c0fb8eb3fe43b2ec01f8ac84b204d9697e3b9a4aa013cd42f6103e06c2e02fbd75670000003086f00207af5f6be3e2a927803f09819545842054584400895101f5598597556611055101c54401340f8ef4a606b0bf0bacbf7be3bd32c11c645c2112e23babd454fc10b070df8567be09257033f158e62e91d258238c8a880abb79510273d25ac7317e268274a6b55985516154587c78f0bc7191721d7b7aaa2c3f04241c375ff824f04e7a4b58e62fc17b96a4a202f72d4917c4e18238c8abb7a73d25ac7317e3b8a0beab37eb1cc5d23a4bf046e0c9a6fe0fcf8eedc17d566f91bf823904e7a4b58e62fc77720beab37c8e7c102181034db6483f4abb782ab30b20ae9f8205b815161f8ee16e0beab37c816fe0817608e322a202aede54409cf496b1cc5f8ee1760beab37c8177e08c860c7bf467f8eec860beab37c8c87e08c8a0d274aa200fb8cd40e3a0bf1dd91417d566f91917c7769f82f9ac2912a8819ce393e08db3078f1e178e322e43af6f5f8eedb305f559be46d9f8236d413a535aacc2a8b0aa2c3e3c785e38c8b90ebdbd7e3bb6d417d566f91b6be08db7047191721e9f8eedb705f559be46dbf8236e417d566fd6398ba47497e3bb6e417d566f91b73e08dbb07a2a3e3bb6ec17d566f91b77e08e0a0f15d6abb7a892355dbd481e55dbd48a855dbd4b8655dbd486555dbd4d76aaedea44faaedea5a4aaedea5e07c7770505f559be4705f08802cb8e7975c7be09009af8e9005777e3bc1cfe3ac1cfe23f103efb5f11cf038d3ff15c1947dc6a8810d75d054aa206ba2d996354ab37765a6275de6a4aa881ae8b6658d52a203abbab85566efc43b30401f4003782d6386a50b34bb4bbf6496c361be940094d27eea0801128166e32edc1094c5a37f6c96dd6d5f4a01a5349fba820044a059b8cbb704253168df58a6a8eb10649cbf4a54759093d85fa5291f9587316007d2951d64d83a9129eca7e94aec3771a4bfe57f29bbacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee854d5c36a9934df52f6ad0a69878a9bb7c3fcff4086f282d9dcb67f85f1e3c3816b0f0d01304088ea52d6b0e83772ff8749a929ed4c016f7f1688cc52d6b4341bb97f5f87497ca58ae819aa">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f588aa47e561cc581e71a003fe76496dd6d5f4a01a5349fba820044a01fb8015c6dc53168dfcf6c96c361be940094d27eea080112807ee34e5c69f53168df0f0d83101a0fcedb0f1390fe48f086b34491e00198e395a681fcff52848fd24a8f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1ea6497dd6d5f4a01a5349fba820044a01fb8cb5719694c5a37ffd26c96c361be940094d27eea080112810dc659b80754c5a37f0f0d836c2eb3d1de0f1390fe5920db6d668923c17652b4f0880fe7c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfced30f28da445dcd07feef6effe770ffc13cd42f6103e06c2e02fbd75670000003086f00207af5f6bff77b07ff3ed4c1e6b3585441be7b7e94504a693f750400baa059b8cbb704253168dff6a5f3d233550206bc7191721e9fb5358d33c0c70f1fff87049d29aee30c206bc7191721e962361086238c9e26a0f18e8aec3c8c058c6b884b8584004e3cf01c6c0fb8eb3fe43b2ec01f8ac84b204d9697e3b9a4aa013cd42f6103e06c2e02fbd75670000003086f00207af5f6be3e2a927803f09819545842054584400895101f5598597556611055101c54401340f8ef4a606b0bf0bacbf7be3bd32c11c645c2112e23babd454fc10b070df8567be09257033f158e62e91d258238c8a880abb79510273d25ac7317e268274a6b55985516154587c78f0bc7191721d7b7aaa2c3f04241c375ff824f04e7a4b58e62fc17b96a4a202f72d4917c4e18238c8abb7a73d25ac7317e3b8a0beab37eb1cc5d23a4bf046e0c9a6fe0fcf8eedc17d566f91bf823904e7a4b58e62fc77720beab37c8e7c102181034db6483f4abb782ab30b20ae9f8205b815161f8ee16e0beab37c816fe0817608e322a202aede54409cf496b1cc5f8ee1760beab37c8177e08c860c7bf467f8eec860beab37c8c87e08c8a0d274aa200fb8cd40e3a0bf1dd91417d566f91917c7769f82f9ac2912a8819ce393e08db3078f1e178e322e43af6f5f8eedb305f559be46d9f8236d413a535aacc2a8b0aa2c3e3c785e38c8b90ebdbd7e3bb6d417d566f91b6be08db7047191721e9f8eedb705f559be46dbf8236e417d566fd6398ba47497e3bb6e417d566f91b73e08dbb07a2a3e3bb6ec17d566f91b77e08e0a0f15d6abb7a892355dbd481e55dbd48a855dbd4b8655dbd486555dbd4d76aaedea44faaedea5a4aaedea5e07c7770505f559be4705f08802cb8e7975c7be09009af8e9005777e3bc1cfe3ac1cfe23f103efb5f11cf038d3ff15c1947dc6a8810d75d054aa206ba2d996354ab37765a6275de6a4aa881ae8b6658d52a203abbab85566efc43b30401fcdcccbcaf1c97f0985f1e3c382070f0d023433c8c75f87352398ac4c697f0f1393fe5b03ed870044b3785e6566d96c0dde05dfe77b012a">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88c76c96c361be940094d27eea0801128105c1357197d4c5a37fc4588ca47e561cc58190b4f01969ff6496dc34fd280129a4fdd41002ca8105c64571a0298b46ff0f0d8465a7dc67f2f3e4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca6c96df697e94132a6a225410022502fdc6c371a714c5a37fc7ca6496dd6d5f4a01a5349fba820044a019b8d8ae09d53168df0f0d840b8cb2dff4d9e60f1390fe5a704ecab3442472b4420dd79e07f3">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6ff26496dc34fd281754d27eea0801128166e32edc1054c5a37fdc0f0d83085a07e9589caec3771a4bf4a54759360ea44a7b29fa5291f958731600880fb8007f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96d07abe9403ea65b68504008940b97000b820298b46ff0f138ffe4216c4d01665e5a36e508a4003f9cd0f0d023536588ba47e561cc581d75d7000076496dd6d5f4a01d535112a0801128176e32ddc69a53168df7f0d85f1e3c34e375f901d75d0620d263d4c741f71a0961ab4ffe0ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f66c96c361be940094d27eea0801128166e09bb8d054c5a37fd25f88352398ac74acb37f588ca47e561cc58190b6cb6fb4f76497dd6d5f4a0195349fba8200595001b8dbf71a654c5a37ff0f0d8468216ddf6196dc34fd280654d27eea0801128166e32edc1014c5a37ff4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96c361be940894d444a820044a05bb8d3f700fa98b46ffd7588ca47e561cc58190b6cb6ebee76496c361be940054d27eea0801654035700f5c6c4a62d1bf0f0d8469969f6fc4c1f7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ddeec46496d07abe94032a693f750400b4a043704fdc69a53168dfed6c96dc34fd280654d27eea080112810dc0b7704d298b46ff0f0d8479969b73c3f9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df6c96df3dbf4a002a693f7504008940b371b76e32ea98b46fdcdf6496dd6d5f4a01a5349fba820044a043702cdc6c0a62d1bf0f0d840bcc89afc8eefb0f1390fe5e204122cd12472571c905238d03f9">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"89d2d15a839bd9ab6496d07abe940054ca3a940bef814002e001700053168dffee0f0d01307f2688ea52d6b0e83772ff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf4085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e66c96df697e94640a6a225410022502ddc69ab8d36a62d1bfe3cee66496dc34fd280654d27eea080112817ae32fdc136a62d1bf0f0d8413410bdff3c20f1390fe631942facd12469e18da75f6da07f3">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"8876a686b19272b025c4b884a7f5c2a379fed4a4f2448450c09712e2129aab2d5bb767600bbebbb27fe8d06496dd6d5f4a01a5349fba820044a01eb800dc6c0a62d1bff96c96c361be94138a6a2254100225041b826ee09b53168dff0f0d84105f7dfff6c50f1390fe5e24a37d668849492b6cc71c6d03f9e7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ebead26496dd6d5f4a01a5349fba820044a003704edc65c53168dffb6c96c361be940894d444a820044a05fb8c8ae34253168dff0f0d8413e0033ff8c70f1390fe6365f79959a24650900dbed0de07f3e9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88edecd46496dd6d5f4a01a5349fba820044a041702d5c1094c5a37f54012a6c96df3dbf4a002a693f7504008940b371b72e36253168df0f0d8413ceb42f6196dc34fd280654d27eea0801128166e32edc1054c5a37fcb0f1390fe5f8dd20166892392b8d09a642007f3ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f1588ca47e561cc58190b4dba06dafd96496dc34fd280129a4fdd41002ca8115c03571a754c5a37fc26c96c361be940094d27eea080112810dc6ddb8cbca62d1bf0f0d84134d89cf6196dc34fd280654d27eea0801128166e32edc1094c5a37fcf0f1390fe5920db6d668923c17652b4f0880fe7f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f5f4dc6496dc34fd280654d27eea0801128176e09ab8db4a62d1bfc56c96c361be940094d27eea080112816ae340b8d014c5a37f0f0d8469b038d7c4d10f1390fe6524adb4b34491e68257e518c00fe7f3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e86c96d07abe9413ea6a225410022500cdc0bb719694c5a37f768821e8a0a4498f53df4003703370a7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7fd65890aed8e8313e94a47e561cc581c034f0016196dc34fd280654d27eea0801128166e32edc132a62d1bf0f0d836da6c1d6ec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32edc134a62d1bf5f8b497ca58e83ee3412c3569f0f0d03313733d80f28eaef03cd3ccbc1189c7881132f04a291f7c31bd1ca391b03ed84a169b7a465f71671c65a03ccbed81f6c250b4f32d44cb2e39f6a17cd66b0a88370d3f4a0195b49fbac20044a05ab8076e09a53168dff6a5634cf031f6a487a466aa05cb2ca5224ddcb49468b6c2af5153f5886a8eb10649cbf640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbfdbc7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88768586b19272fff46c96df697e940894cb6d0a08010a8172e00571b7d4c5a37f52848fd24a8fe20f0d03393238f7588ca47e561cc5804eb4179e7dff6496d07abe940b8a6e2d6a0801654106e36fdc038a62d1bf6196dc34fd280654d27eea0801128166e32edc13aa62d1bfe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3f95f86497ca582211fe66c96df697e94640a6a225410022500f5c13971a754c5a37f588ca47e561cc581c13a075d71bf6496df3dbf4a320535112a080169403d704e5c6da53168df6196dc34fd280654d27eea0801128166e32edc13ea62d1bf0f0d8365a0bbe8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c87b8b84842d695b05443c86aa6fc3eb6c96df697e94640a6a225410022500f5c13b702e298b46ff0f0d8313417f588ca47e561cc581c13a075d6c3f6496df3dbf4a320535112a080169403d704e5c680a62d1bfc2ec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc1c6eec00f0d83089e0f588ca47e561cc581c13a075d799f6496df3dbf4a320535112a080169403d704edc0894c5a37fc4ee">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cec3c8f06c96df697e94640a6a225410022500f5c13b704f298b46ff588ca47e561cc581c13a075e0b3f6496df3dbf4a320535112a080169403d704edc684a62d1bfc70f0d023536f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7d16c96e4593e940bca693f7504003ea045702edc0094c5a37f0f0d83089d6f588aa47e561cc581969b70006496e4593e9403aa693f7504008940b371976e09f53168df7b05582d43444eea4088ea52d6b0e83772ff8e49a929ed4c0dfd2948fcc0ebaf7f7f3788cc52d6b4341bb97f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d86c96c361be940894d444a820044a01fb8cb7700fa98b46ffc3eed30f0d03393431cff9408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d9697c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd6c96df697e941094d27eea08010a807ee360b8c894c5a37f4084f2b563938d1f739a4523b0fe105b148ed9bfd45a839bd9ab0f0d830b407fc6588ca47e561cc581965e0b2e81ff6496c361be9413ea693f750400b2a085702fdc0bca62d1bfd87f0a88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e36c96df697e941094d27eea08010a807ee32fdc6da53168dfc3d9c20f0d8365a65cca588ca47e561cc581965e0b4cbad76496c361be9413ea693f750400b2a08571905c132a62d1bfdcc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e66c96df697e941094d27eea08010a807ee321b82714c5a37fcdc6dcc50f0d03333438588ca47e561cc5819640eb8d36df6496df3dbf4a082a693f750400b2a01fb8c86e34d298b46fdfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e9decfc8c76c96df3dbf4a044a65b6850400894086e09cb821298b46ff0f0d8365c71d588ca47e561cc581b65969d682cf6496d07abe940b4a65b6850400b4a0017041b801298b46ffe2c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ece1d2cbca6c96df3dbf4a044a65b6850400894086e09cb82754c5a37f0f0d830befbf588ca47e561cc581b644169b683f6496dc34fd28112996da141002d2810dc1397190298b46ffe5ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826401f05f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f0f1fc39d29aee30c169ad78e3219721d7b7ab05a6b62c2d051a0a8623b69ad8b0bdcc831ea430f81b13ef305a632c8bf447f85a6b83c1eca24f0690bf05a871d05bd414764010f0d033330355888a47e561cc580410f6496dc34fd280654d27eea0801128166e341b800298b46ffe9cee8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f3e8edd16c96df697e94640a6a225410022500f5c13b704153168dff588ca47e561cc581c13a075d7dcf6496df3dbf4a320535112a080169403d704edc136a62d1bfec0f0d03333033d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f6ebf0d46c96df697e94640a6a225410022500f5c13b719754c5a37f0f0d8369d681588ca47e561cc581c13a075e10bf6496df3dbf4a320535112a080169403d704edc6c2a62d1bfefd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f96496dc34fd280654d27eea0801128166e32edc13aa62d1bf54012a5f87497ca589d34d1f0f0d847c220b9ff7d7e0dfdedde5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88fc6c96df697e9403ea6a225410022502edc0b5700fa98b46ffe7c0e30f0d03343436f3d8e1e0dfdee6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88fd6c96e4593e9413ca65b6850400814086e01db8cb8a62d1bff3dc0f0d8379a645e4588ca47e561cc581965e0b2eba1f6496c361be9413ea693f750400b2a0857040b820298b46fff6db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96d07abe9403ea65b68504008940b7700fdc132a62d1bfe1f7e00f0d8310996bfc588ca47e561cc581b65969a038f76496dd6d5f4a059532db4282005a504cdc137702ea98b46ffadf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96df697e94132a6a225410022500edc65eb8cbca62d1bfe4fae30f0d830b8dbb5f87352398ac4c697f588ca47e561cc581c104000b2f7f6496df3dbf4a099535112a080169403b7197ee34ea98b46f6196dc34fd280654d27eea0801128166e32edc13ea62d1bfe4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c67b8b84842d695b05443c86aa6f5f88352398ac74acb37feae96c96dc34fd280654d27eea0801128015c699b8cb2a62d1bf0f0d836da7dc588ca47e561cc581c640cb206dff6496d07abe94032a693f750400b4a00571a7ae09e53168dfc3e9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbc2c6edec6c96dc34fd280654d27eea080112810dc00ae01f53168dff0f0d8369f7da588ca47e561cc581c640e09d643f6496d07abe94032a693f750400b4a043700cdc0014c5a37fc6ec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6ce0f28e3bb8b864bf038d940fbedb62090a00bef91c13d205f6650b6f34ec71cb1c606590899723787189b75f2bf246c8caf36fbecca0fb50be6b3585441c8b27d28012da4fdd60b8a059b8cbb704fa98b46ffb52b1a67818fb5243d23355047191721d7b7afdf6c96e4593e940054d03b141000e2816ee059b8db8a62d1bf52848fd24a8f0f0d0234335896a47e561cc5801f4a547588324e5837152b5e39fa98bf6496dc34fd280654d27eea0801128166e32edc13ea62d1bf4088ea52d6b0e83772ff8e49a929ed4c0107d2948fcc01785f7f3288cc52d6b4341bb97fcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d45f911d75d0620d263d4c795ba0fb8d04b0d5a70f1fc39d29aee30c169ad78e3219721d7b7ab05a6b62c2d051a0a8623b69ad8b0bdcc831ea430f81b13ef305a632c8bf447f85a6b83c1eca24f0690bf05a871d05bd414764010f0d8313827b5888a47e561cc5802e396496dc34fd280654d27eea0801128166e340b816d4c5a37fcff5ce6c96e4593e940854cb6d0a0801128266e059b8c854c5a37fc6f9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8cfcef96c96dc34fd280654d27eea0801128005c106e01953168dff588ca47e561cc581c6402699685f6496d07abe94032a693f750400b4a001704cdc0854c5a37fd30f0d8365c135f9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbd2d1fc6c96dc34fd280654d27eea0801128005c106e09e53168dff0f0d8369c699588ca47e561cc581c6402699103f6496d07abe94032a693f750400b4a0017042b8d3ea62d1bfd67f0988ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfd65f86497ca582211f5a839bd9ab6c96df697e94640a6a225410022500fdc10ae36d298b46ff0f0d837c4eb7588ca47e561cc581c13a1081e7bf6496df3dbf4a320535112a080169403f7042b81754c5a37fdcc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4dbcdc16c96df697e94640a6a225410022500fdc10ae36da98b46ff588ca47e561cc581c13a108597bf6496df3dbf4a320535112a080169403f704cdc03aa62d1bfdf0f0d84085f785fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7dd6c96dc34fd280654d27eea080112810dc13f71b694c5a37f0f0d836d9719588ca47e561cc581c640e34d005f6496d07abe94032a693f750400b4a04371905c6c4a62d1bf6196dc34fd280654d27eea0801128166e32edc640a62d1bfca">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88769086b19272b025c4b85f53fae151bcff7f6c96df3dbf4a042a6a2254100225020b807ae09a53168dff0f138ffe5996559a24646c8071f91c003f9f52848fd24a8f588ca47e561cc58190b6cb80003f6496df3dbf4a09a535112a080165403d7042b82714c5a37f7b8b84842d695b05443c86aa6fce0f0d830804cf5f87352398ac5754dfc5d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96dc34fd280654d27eea0801128005c65ab8db6a62d1bf4084f2b563938d1f739a4523b0fe105b148ed9bfc2d20f0d836dc6595f88352398ac74acb37f588ca47e561cc581c64026c407ff6496d07abe94032a693f750400b4a00171976e32fa98b46fcb408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46c96e4593e9403aa681d8a0801128105c699b8d3aa62d1bfc2c3c75a839bd9ab0f0d83744e3f588ca47e561cc581a644cb6e099f6496df697e940bca681d8a08016941337190dc0894c5a37f6196dc34fd280654d27eea0801128166e32edc13ea62d1bfc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9cb5f86497ca582211fc26c96df697e94640a6a225410022500f5c102e36d298b46ff588ca47e561cc581c13a075b135f6496df3dbf4a320535112a080169403d7042b8db2a62d1bfc20f0d8465a65f6fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96df697e94640a6a225410022500fdc10ae36ea98b46ffd0c60f0d8413420bbf5f911d75d0620d263d4c795ba0fb8d04b0d5a7588ca47e561cc581c13a108597bf6496df3dbf4a320535112a080169403f704cdc03ca62d1bf6196dc34fd280654d27eea0801128166e32edc640a62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d27b8b84842d695b05443c86aa6fd0d1cb6c96e4593e94642a6a225410022502ddc69eb82754c5a37f0f0d8410190b9f588ca47e561cc581c640d85e79ef6496d07abe94032a693f750400b4a01eb8015c0bca62d1bfc2d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc26c96df697e940894cb6d0a08010a816ee36fdc03ea62d1bf52848fd24a8fd10f0d84642c841fc8588ca47e561cc5804eb4179e69df6496d07abe940b8a6e2d6a0801654106e36f5c0baa62d1bfc7408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c76c96df697e940894cb6d0a08010a816ee36fdc0814c5a37fc25a839bd9ab0f0d84642e81efcd588ca47e561cc5804eb4179d7dff6496d07abe940b8a6e2d6a0801654106e36edc642a62d1bf6196dc34fd280654d27eea0801128166e32edc644a62d1bfc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8ccd0c16c96df3dbf4a044a65b6850400894082e005702fa98b46ff588ca47e561cc581b65969d13e1f6496d07abe940b4a65b6850400b4a001702fdc036a62d1bf6196dc34fd280654d27eea0801128166e32edc65a53168df0f0d03333538c74084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd1cccbc60f0d836dd7da5f86497ca582211f588ca47e561cc5804eb4179e6c1f6496d07abe940b8a6e2d6a0801654106e36f5c134a62d1bfc2cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d07b8b84842d695b05443c86aa6f5f911d75d0620d263d4c795ba0fb8d04b0d5a7cb6c96df3dbf4a044a65b6850400894082e005704053168dff588ca47e561cc581b6597da65b736496d07abe940b4a65b6850400b4a059b8266e32153168df6196dc34fd280654d27eea0801128166e32edc65b53168df0f0d8365d6dfd1c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f6c96df3dbf4a09c521aec504008940b7704cdc0bea62d1bf0f1390fe5a6d98d66a32bee3e16a41ba407f3f52848fd24a8f588ca47e561cc58190b6cb80003f6496df697e940baa6e2d6a0801654086e362b80754c5a37fc85a839bd9ab0f0d8365a0335f901d75d0620d263d4c741f71a0961ab4ffc5408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffcccbc16c96df3dbf4a044a65b6850400894082e005704d298b46ff588ca47e561cc581b65a79d75c6f6496df697e940b6a65b6850400b4a05bb8205c1014c5a37fca0f0d83719785c2d3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96df697e94640a6a225410022500fdc10ae36da98b46ffd0c50f0d830b206bcf588ca47e561cc581c13a1085917f6496df3dbf4a320535112a080169403f704cdc03ea62d1bf6196dc34fd280654d27eea0801128166e32edc65d53168dfc64084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfc60f139afe597c523451c636a492324aec71b407996c5195a71b205ffe7f5891a47e561cc5802e89e0001f4a5761bb8d254089f2b511ad51c8324e5f834d96975f8b497ca58e83ee3412c3569f0f0d033238364088ea52d6b0e83772ff8749a929ed4c0d377f0c88cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb7b8b84842d695b05443c86aa6f5f911d75d0620d263d4c795ba0fb8d04b0d5a7d06c96df697e94640a6a225410022500fdc10ae36d298b46ff588ca47e561cc581c13a1081f7ff6496df3dbf4a320535112a080169403f7042b8cb8a62d1bfc90f0d836dd79ed1c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fc20f0d831341075a839bd9ab6196dc34fd280654d27eea0801128166e32edc65e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bed36495dc34fd2800a994752820000a0017000b800298b46f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf4003703370caacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f0d0234337f0b842507417f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbc55f88352398ac74acb37f6c96df3dbf4a05f521aec504008940b97196ae05f53168df6196c361be940094d27eea0801128266e01cb8db6a62d1bf6496dc34fd280654d27eea0801128266e01cb8db6a62d1bf4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d837de65c408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f55846c42699f5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32edc65d53168df768586b19272ff0f139afe597c523451c636a492324aec71b407996c5195a71b205ffe7f588eaec3771a4bf4a523f2b0e62c0c834089f2b511ad51c8324e5f834d96975f8b497ca58e83ee3412c3569f0f0d0234374088ea52d6b0e83772ff8749a929ed4c0d377f0f88cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d033332375a839bd9ab6196dc34fd280654d27eea0801128166e32edc65e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96d07abe9403ea65b68504008940b7700fdc1094c5a37f7b8b84842d695b05443c86aa6fc10f0d03393730d4588ca47e561cc581b13ee3ce3edf6496e4593e9403ea65b6850400b4a05bb807ee05953168dfc27f0788ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc25f87352398ac5754dfbfc66c96d07abe9403ea65b68504008940b7700fdc1054c5a37f0f0d82089c588ca47e561cc581b13ee3ce85cf6496e4593e9403ea65b6850400b4a05bb807ee32d298b46fc8c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1c65f87352398ac4c697fca6c96df697e94640a6a225410022500f5c13b702e298b46ff588ca47e561cc581c13a075d79af6496df3dbf4a320535112a080169403d704edc1094c5a37fcc0f0d8365b7dbc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffcbc6ce6c96df697e94640a6a225410022500f5c13971a7d4c5a37f0f0d830bcdbf588ca47e561cc581c13a075d6ddf6496df3dbf4a320535112a080169403d704e5c6db53168dfd0cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826401c25f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f0f1fcf9d29aee30c169ad78e3219721d7b7ab05a6b62c2d051a0a863c1eca24f0690ac585ee6418f521875a7dc03313ad3e271f89d69f69a6a27182d319645fa23fca4b218682a60e87b6ca8741914ad593f0f0d033331375888a47e561cc5802e036496dc34fd280654d27eea0801128166e340b81794c5a37f6196dc34fd280654d27eea0801128166e32edc65e53168dfd0d36c96e4593e940854cb6d0a0801128266e059b8c854c5a37f52848fd24a8f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96df697e94640a6a225410022500fdc10ae36d298b46ff5f911d75d0620d263d4c795ba0fb8d04b0d5a74084f2b563938d1f739a4523b0fe105b148ed9bf7b8b84842d695b05443c86aa6fc20f0d830802d7588ca47e561cc581c13a1081e17f6496df3dbf4a320535112a080169403f7042b820298b46ffc7408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0c30f1fcf9d29aee30c169ad78e3219721d7b7ab05a6b62c2d051a0a863c1eca24f0690ac585ee6418f521875a7dc03313ad3e271f89d69f69a6a27182d319645fa23fca4b218682a60e87b6ca8741914ad593f0f0d83700f835888a47e561cc5802e3b6496dc34fd280654d27eea0801128166e340b82714c5a37f6196dc34fd280654d27eea0801128166e32edc65f53168dfc1c46c96df697e940bca6e2d6a0801128115c6dcb826d4c5a37fcac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f6c96df3dbf4a042a6a2254100225020b807ae09a53168dff0f138ffe47246b3448c8d900e3f238007f3fcc588ca47e561cc58190b6cb80003f6496df3dbf4a09a535112a080165403d7041b8d094c5a37fc9cd0f0d8313aebf5f87352398ac5754dfd1c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb59871a52324f496a4f5a839bd9ab6196dc34fd280654d27eea0801128166e32edc680a62d1bf768320e52f5885aec3771a4b0f0d830b6d37408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d83136073c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96df697e940b6a612c6a08010a8172e32fdc13aa62d1bf0f1390fe5c682d2cd3e46da2148d352101fcff52848fd24a8fcd6496df697e940baa6e2d6a0801654086e34fdc0b2a62d1bf7b8b84842d695b05443c86aa6fc80f0d8375c0bf5f901d75d0620d263d4c741f71a0961ab4ff6196dc34fd280654d27eea0801128166e32edc65f53168df408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1cb5f88352398ac74acb37f6c96c361be940894d444a820044a08171a15c6dc53168dff6196c361be940094d27eea080112816ee01bb8db4a62d1bf6496dc34fd280654d27eea080112816ee01bb8db4a62d1bfd1768344b2970f0d8465d642efcc55847821039f5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcc0f0d03333237d2d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc95f87352398ac5754dfd46c96d07abe9403ea65b68504008940b7700fdc1094c5a37f588ca47e561cc581b13ee3ce881f6496e4593e9403ea65b6850400b4a05bb807ee32f298b46f6196dc34fd280654d27eea0801128166e32edc65e53168df0f0d8465c79907cb4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff36196dc34fd280654d27eea0801128166e32edc680a62d1bf4085aec1cd48ff86a8eb10649cbf6496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25f5f911d75d0620d263d4c795ba0fb8d04b0d5a74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb7689bf7b3e65a193777b3f0f0d03333539408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0c20f0d03353330bec6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6c96df697e94640a6a225410022500f5c13971a714c5a37f7b8b84842d695b05443c86aa6fc00f0d8369d13fcf588ca47e561cc581c13a075d6daf6496df3dbf4a320535112a080169403d704e5c6da53168dfca408721eaa8a4498f5788ea52d6b0e83772ffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc25f87352398ac5754dfcfc56c96df697e94640a6a225410022500f5c13b719654c5a37f0f0d820b20588ca47e561cc581c13a075e03bf6496df3dbf4a320535112a080169403d704edc69d53168dfd0c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26497d07abe94032a693f750400b4a059b8cbb719794c5a37ff54012a5f88352398ac74acb37f0f0d84782fbe0f6196dc34fd280654d27eea0801128166e32edc65e53168dfc7408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d96977b05582d43444e6c96e4593e94138a6e2d6a080112807ee32ddc682a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264027688aa6355e580ae25c16196dc34fd280654d27eea0801128166e32edc69953168df0f0d01307f11842507417f0f1fffd8019d29aee30c0e458b4946bc87b63a0a4a0c4eabd454b0393a31a44dbc15c22138db8b884169d0099704e082c5d71a109a7c2bbdf68f700440f2c83ec94189d4104e94d771860722f21ed8e82928313aaf5152c128313aaacdd9d566ff77986641098658030a886c76559ba271a71d7c026d566e81602acdd0aacdd69f038e36e36ab375a7560880c320559bad3ad0990800c34eb4cbce36cb01559baab37557701faf7559beab375141d2ab37eb1d89a8b6451da949ea0aacdd47b559be1103cb20559ba8291352acdfa8be10ab37489f5595566f90f524b525566ed45f08559be3a4b61883559bb61652d9616c559beab37643d23354ab37fc78f0bc7191721d7b7aaacddb0b296cb0b64521e919aa559bfe3c785e38c8b90ebdbd5566ed8832acdf559bb39472506a8aab37ec3d3517d5761e9320a8b50a89b13b614741271d532acdd55dc084110ab37d5665fb3d9240f32dbce07fcf">>, +[ +{<<":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?">>} +] +}, +{ +undefined, +<<"88c0bf5f87352398ac4c697f0f0d023433bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d033438335a839bd9ab6196dc34fd280654d27eea0801128166e32edc69a53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887b8b84842d695b05443c86aa6fc0cf6c96df697e940b6a681fa5040089410ae01ab8dbea62d1bf6196c361be940094d27eea0801128172e00171b1298b46ff6496dc34fd280654d27eea0801128172e00171b1298b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d83682d39408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f558475d7822f5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f6c96c361be940854d03b14100215042b816ee32d298b46ff6196c361be940094d27eea080112817ee361b8cb8a62d1bf6496dc34fd280654d27eea080112817ee361b8cb8a62d1bfc6c50f0d8365e65ac455847197dc7bc3cbcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfce0f0d03333236cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfce0f0d821045cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28e1b1288a1861860d19edbaf39b11f9d711aff0f0e6787c3992bc3bb6d1a7878bbbdaa30d78b6209c3f45838831eb7bed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b371976e34d298b46ffb5358d33c0c7f4088f2b5761c8b48348f89ae46568e61a00e2cff4003703370e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e32edc69a53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be5f8b497ca58e83ee3412c3569f0f0d03313733408721eaa8a4498f5788ea52d6b0e83772ff0f28eaef00642b8db4f15a182464ad363748fbe18de8e51c8d81f6c250b4dbd232fb8b38e32d01e65f6c0fb61289e7996a265971cfb50be6b3585441b869fa500cada4fdd610022502d5c03b71a694c5a37fda958d33c0c7da921e919aa8172cb294893772d251a2db0abd454fc7640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbfca7f0ea7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e32edc6c0a62d1bf768dd06258741e54ad9326e61c5c1f7f02c3d6ceb51652b3d0627ab0b2c1fcce94d771863c78f0b8e496d418f52e43d2c78648c0e496d418f52fe69a3f9fa52f6b83f9d3ab4a97f76b52f6adaa5ee1b46a6fc90ff34089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277fd10f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983fd264022d315f92497ca589d34d1f6a1271d882a60b532acf7f0f0d03313838">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff52848fd24a8f5f88352398ac74acb37f5585134db6f07f6196dc34fd280654d27eea0801128166e32edc69b53168df6c96d07abe940b4a693f7504008540bd71915c0b8a62d1bf0f0d8369a685d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9c8c7c64085aec1cd48ff86a8eb10649cbf0f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983f5886a8eb10649cbfc7c60f0d8369a69f0f28cf21a481c9401034f36b4ad81d59a1b45586d3cdad296375c0bf24600b3f6a487a466aa05c724b6a0c7a9721e9fb50be6b3585441c8b27d2800ad94752c20080a01cb8005c0014c5a37fda958d33c0c7">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88c5c45f87352398ac4c697f55847596c2ffc36c96c361be94101486bb1410022502ddc6c171b754c5a37f0f0d830ba07f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c8c755850ba275e6ffc66c96e4593e94109486d99410022502edc6deb8d3ca62d1bf0f0d83680cb9c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbcac955840880fbc0c86c96c361be940094be522820042a08371b0dc6df53168dff0f0d8369f0bfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd7b8b84842d695b05443c86aa6fc65a839bd9ab6c96d07abe9403ea65b68504008940b7700fdc1094c5a37f588ca47e561cc581b13ee3ce85af6496e4593e9403ea65b6850400b4a05bb807ee32f298b46f6196dc34fd280654d27eea0801128166e32edc69a53168df0f0d830844f7c84084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"895f911d75d0620d263d4c795ba0fb8d04b0d5a7c5c46496d07abe940054ca3a940bef814002e001700053168dffc10f0d0130cb58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc86c96df697e940894cb6d0a08010a816ee36fdc0894c5a37f52848fd24a8fc90f0d82101d5f87352398ac5754df588ca47e561cc5804eb4179f13ff6496d07abe940b8a6e2d6a0801654106e36fdc6d953168dfc8d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96c361be94138a6a225410022502fdc6ddb82694c5a37fcecd0f0d841380107f5f88352398ac74acb37f588ca47e561cc581c134065c13ff6496dd6d5f4a09c535112a08016940bf71b7ae05a53168df6196dc34fd280654d27eea0801128166e32edc69b53168df408721eaa8a4498f5788ea52d6b0e83772ffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f7b8b84842d695b05443c86aa6f5898a47e561cc5819003e94aed8e8313e9442d48fc8e62c011035f901d75d0620d263d4c741f71a0961ab4ff5a839bd9ab6196dc34fd280654d27eea0801128166e32edc13ca62d1bf4088ea52d6b0e83772ff8d49a929ed4c0dfd2948fcc0f3626496dc34fd280654d27eea0801128166e342b82794c5a37fcf0f1390fe5e6db02cd11d91e91d7e379c203f9f6c96e4593e94109486d994100225021b816ae042a62d1bff0f0d840882f07f7f0888cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96e4593e94109486d994100225021b816ae05953168dff0f1390fe5908df59a23b23d23b18c11b40fe7fd2c66496dc34fd280654d27eea0801128166e32f5c65953168dfc8c50f0d83132e355f86497ca582211f6196dc34fd280654d27eea0801128166e32edc69c53168dfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff5f961d75d0620d263d4c7441eafb24e3b1054c1c37e159ef54012a409419085421621ea4d87a161d141fc2d495339e447f95d7ab76ffa53160dff4a6be1bfe94d5af7e4d5a777f409419085421621ea4d87a161d141fc2d3947216c47f99bc7a925a92b6ff5597e94fc5b697b5a5424b22dc8c99fe94f90f0d82085d5887a47e561cc5801f6196dc34fd280654d27eea0801128166e32edc69d53168df7f0a88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f6c96e4593e94109486d994100225021b816ae01e53168dff0f138ffe4411156688ec8f48eb92100007f352848fd24a8f588ca47e561cc58190b6cb80003f6496df697e940baa6e2d6a0801654086e360b8cbea62d1bf7b8b84842d695b05443c86aa6f5a839bd9ab0f0d8379a7da5f87352398ac5754dfc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32edc6dd53168dfce6495dc34fd2800a994752820000a0017000b800298b46f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf4003703370caacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f0d0234337f0c842507417f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc8c6c76c96d07abe9403ea65b68504008940b7700fdc132a62d1bf588ca47e561cc581b13ee3ce3adf6496e4593e9403ea65b6850400b4a05bb807ee044a62d1bfc80f0d82089cd14084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03353735cd6196dc34fd280654d27eea0801128166e32edc6de53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402768c86b19272ad78fe8e92b015c30f1ffff3019d29aee30c535ae3ae92c72ae43d2c0e4625a580b2000567997197d6109d71b583fe535a6079b640ebff14d7dc904e94d771860722f21ed8e82928313aaf5152c128313aaacdd9d566ff77986641098658030a886c77559ba271a71a03adb2ab3740b01566e81566ebacb8dbed81c559bacb4db4b3a27987c0ab375a75b13416db61a75b65f71d6580aacdd559baabb80fd7baacdf559ba8a0e9559bf4147216c8ce3b24559ba8f6ab37dd13de5f02a2bcfba0f2e38a8af3ee83cbe054579f741e44d81566ea0a44d4ab37ea2f842acdd227d565559be43d492d49559bb517c21566ff83d9448ab376c2ca5b2c2d8ab37ea2f84783d94496a083a8720c40081a7c4faacdd90f48cd52acdff1e3c2f1c645c875edeaab376c2ca5b2c2d91487a466a9566ff8f1e178e322e43af6f5559bb620cab37d566ece51c941aa2aacdf8cf4c7d4d4508ac7d4c848ea3567a0c9310c3a9566eaaee042088559beab32fc4e742601d09947652bd2590c3ae82f95c87a7f0f0d0130c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0c76c96e4593e940054d03b141000e2816ee059b8db8a62d1bf52848fd24a8f0f0d0234335896a47e561cc5801f4a547588324e5837152b5e39fa98bf6496dc34fd280654d27eea0801128166e32edc6de53168df4088ea52d6b0e83772ff8e49a929ed4c0107d2948fcc0175cf7f0f88cc52d6b4341bb97fce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c70f0d033334315a839bd9abc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f12fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb59871a52324f496a4fc26196dc34fd280654d27eea0801128166e32edc6df53168df768320e52f5885aec3771a4b0f0d830b2f3b408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96dc34fd280654d27eea0801128072e360b8d3aa62d1bf7b8b84842d695b05443c86aa6fc90f0d8369d0375f88352398ac74acb37f588ca47e561cc581c640d3ae081f6496d07abe94032a693f750400b4a01cb8d86e32f298b46f6196dc34fd280654d27eea0801128166e32edc6de53168df7f0f88ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402cbc77f10bcacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa64d37d4e1a72297b568534c3c7f9f0f28c7dd04c16bb9d6682cac165b0bed3ef3af85a6d6f43fb5243d2335502e3ae92c72ae43d3f6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32edc6df53168dff0f1ffffa019d29aee30c0e84ca3b295e92c861d7417cae43d2c0e4625a580b2000567997197d6109d71b583fe535a6079b640ebff14d7dc904e94d771860722f21ed8e82928313aaf5152c128313aaacdd9d566ff77986641098658030a886c77559ba271a71a03adb2ab3740b01566e81566ebacb8dbed81c559bacb4db4b3a27987c0ab375a75b13416db61a75b65f71d6580aacdd559baabb80fd7baacdf559ba8a0e9559bf4147216c8ce3b24559ba8f6ab37dd13de5f02a2bcfba0f2e38a8af3ee83cbe054579f741e44d81566ea0a44d4ab37ea2f842acdd227d565559be43d492d49559bb517c21566ff83d9448ab376c2ca5b2c2d8ab37ea2f84783d94496a083a8720c40081a7c4faacdd90f48cd52acdff1e3c2f1c645c875edeaab376c2ca5b2c2d91487a466a9566ff8f1e178e322e43af6f5559bb620cab37d566ece51c941aa2aacdf8cf4c7d4d4508ac7d4c848ea3567a0c9310c3a9566eaaee042088559beab32fc547889d222401f8b6b41a481b69b69e6c0e89a6430f0d8274214088ea52d6b0e83772ff8749a929ed4c0dff7f0388cc52d6b4341bb97f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"c2768c86b19272ad78fe8e92b015c35886a8eb2127b0bf4085aec1cd48ff86a8eb10649cbf640130c50f28c0a4fd0ecc0164000dc109d71bfb50be6b3585441badabe9412da4fdd61002d28172e09eb810298b46ffb52b1a67818fb5243d2335502f496430eba0be5721e9fb0f1fffa8029d29aee30c1a9997a4b21875d05f2b90f4b043d492d49600c0590002c3a27bcbe0880f81b08a2d1c77c5b923aa41d922f3a69a3fca6b27580742651d94af496430eba0be5721e954584722a2c24eaa8b08590002b3ccb8cbeb084eb8dac1559c34d69559bef36c81d7fe29ad303cdb2075ff8a6bee48274a6bb8c30391790f6c741494189d57a8a96094189d5566eceab37fbbcc332084c32c018544363baacdd138d38d01d6d9559ba0580ab3740ab375d65c6df6c0e2acdd65a6da59d13cc3e0559bad3ad89a0b6db0d3adb2fb8eb2c05566eaacdd55dc07ebdd566faacdd45074aacdfa0a390b64671d922acdd47b559bee89ef2f81515e7dd07971c54579f741e5f02a2bcfba0f226c0ab37505226a559bf517c21566e913eab2aacdf21ea496a4aacdda8be10ab37fc1eca24559bb61652d9616c559bf517c23c1eca24b5041d4390620040d3e27d566ec87a466a9566ff8f1e178e322e43af6f5559bb61652d9616c8a43d23354ab37fc78f0bc7191721d7b7aaacddb106559beab376728e4a0d515566fc67a63ea6a284563ea6424751ab3d06498861d4ab3755770210442acdf55997f0f0d0130c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3cf6c96df697e9403ea6a225410022502cdc65ab8d814c5a37f0f1394fe46dca2009665b75668918c0e39295d13c0fe7f52848fd24a8f0f0d83089e6fc6c55f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d8313617b5a839bd9ab6196dc34fd280654d27eea0801128166e32edc6df53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c00f0d03333339bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff7b8b84842d695b05443c86aa6f5f87352398ac4c697fc26c96dc34fd280654d27eea080112810dc139700fa98b46ff588ca47e561cc581c640e34271ff6496d07abe94032a693f750400b4a043704fdc03aa62d1bf6196dc34fd280654d27eea0801128166e32edc6de53168df0f0d840bcd09ff7f1288ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac90f0d03333332c8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3c8d06496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25fcc4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbce0f0d03333332408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfce0f0d03333339cdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6496dc34fd280654d27eea0801128166e32edc6db53168df54012a5f87497ca589d34d1f0f0d8479a109cf6196dc34fd280654d27eea0801128166e32edc6db53168dfc8408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d96977b05582d43444e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c34085aec1cd48ff86a8eb10649cbf58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f6495dc34a9a4fdd4032a059b8cbb71b7d4e1bef28200455a839bd9ab7f11afbdae0fe74eac8a5ee1b46a437f40d4bf8388d4df0e41a9ab86d52ef0dca64d37d4e1a72297b568534c3c54c9a77ff35f91497ca589d34d1f649c7620a98386fc2b3d0f0d83089d676196dc34fd280654d27eea0801128166e32edc6df53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d821045c3c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e32f5c036a62d1bf768dd06258741e54ad9326e61c5c1f7f06c3d6ceb51652b3d0627ab0b2c1fcce94d771863c78f0b8e496d418f52e43d2c78648c0e496d418f52fe69a3f9fa52f6b83f9d3ab4a97f76b52f6adaa5ee1b46a6fc90ff34089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277fcc0f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983f5886a8eb10649cbf64022d315f92497ca589d34d1f6a1271d882a60b532acf7f0f0d033138380f28cf21a481c9401034f36b4ad81d59a1b45586d3cdad296375c0bf24600b3f6a487a466aa05c724b6a0c7a9721e9fb50be6b3585441c8b27d2800ad94752c20080a01cb8005c0014c5a37fda958d33c0c7">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"880f28fab1288a1861860d19edbaf39b11f9d711aff0f0e6787c3992bc3bb6d1a7878bbbdaa34d78760367099ad52e126cd81e3f937e5187171af25741b2385bad17379bbd3f6e85f1fbe707da97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e32f5c0014c5a37fda9ac699e0634088f2b5761c8b48348f89ae46568e61a001583f7f05e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349c34085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6fd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3c458b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f6495dc34a9a4fdd4032a059b8cbb71b7d4e1bef2820045c27f09afbdae0fe74eac8a5ee1b46a437f40d4bf8388d4df0e41a9ab86d52ef0dca64d37d4e1a72297b568534c3c54c9a77ff35f87497ca589d34d1f0f0d8375975b6196dc34fd280654d27eea0801128166e32edc6df53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32f5c036a62d1bf768dd06258741e54ad9326e61c5c1f7f03c3d6ceb51652b3d0627ab0b2c1fcce94d771863c78f0b8e496d418f52e43d2c78648c0e496d418f52fe69a3f9fa52f6b83f9d3ab4a97f76b52f6adaa5ee1b46a6fc90ff34089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277fce0f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983f5886a8eb10649cbf64022d315f92497ca589d34d1f6a1271d882a60b532acf7f0f0d8369a69f0f28cf21a481c9401034f36b4ad81d59a1b45586d3cdad296375c0bf24600b3f6a487a466aa05c724b6a0c7a9721e9fb50be6b3585441c8b27d2800ad94752c20080a01cb8005c0014c5a37fda958d33c0c7">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d846dc7822f408721eaa8a4498f5788ea52d6b0e83772ff6196dc34fd280654d27eea0801128115c69bb80654c5a37f769186b19272b025c4bb2a7f578b52756efeff6c96dc34fd28179486d99410022500e5c0357196d4c5a37f0f1395fe5b90038c6d2d248522cd11d79a04807082203f9f52848fd24a8f5889a47e561cc58197000f6496dc34fd280654d27eea0801128166e34ddc032a62d1bf4097f2b565b29325259162587421690f48cd52d59e8310c54703616c6c5583642ebb4089f2b0e9f6b12558d27fadd3dbbd0ecf24e1fdc97d6457d3433a37748aca7be5b35474245db9cefeccc3d6d43c3b2d95d7d6e17479a6820f7caf0ae05257dd081d75e91979e940e34dca58d96e370a469e9190b8b9283db24b61ea4af5152a7f57a83db261b0f527fb4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32f5c0014c5a37f5f8b497ca58e83ee3412c3569f0f0d03313733cb0f28eaef03618e52471b6c81b78251caf3457df0c6f4728e46c0fb61285a6de9197dc59c719680f32fb607db095979e65a89965c73ed42f9acd615106e1a7e94032b693f7584008940b5700f5c0014c5a37fda958d33c0c7da921e919aa8172cb294893772d251a2db0abd454fcf640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbf4085aec1cd48ff86a8eb10649cbf4003703370a7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"895f911d75d0620d263d4c795ba0fb8d04b0d5a77b8b84842d695b05443c86aa6f5a839bd9ab6496d07abe940054ca3a940bef814002e001700053168dff6196dc34fd280654d27eea0801128166e32edc6df53168df0f0d0130408721eaa8a4498f5788ea52d6b0e83772ff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff5f961d75d0620d263d4c7441eafb24e3b1054c1c37e159ef54012a409419085421621ea4d87a161d141fc2d495339e447f95d7ab76ffa53160dff4a6be1bfe94d5af7e4d5a777f409419085421621ea4d87a161d141fc2d3947216c47f99bc7a925a92b6ff5597e94fc5b697b5a5424b22dc8c99fe94f90f0d8208435888a47e561cc58190ffd2c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c95f86497ca582211fc96c96df697e94640a6a225410022500f5c13b702fa98b46ff588ca47e561cc581c13a075d71af6496df3dbf4a320535112a080169403d704edc640a62d1bf6196dc34fd280654d27eea0801128166e32f5c038a62d1bf0f0d03323937ca4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfc96c96e4593e940054d03b141000e2816ee059b8db8a62d1bf52848fd24a8f0f0d0234335896a47e561cc5801f4a547588324e5837152b5e39fa98bf6496dc34fd280654d27eea0801128166e32f5c038a62d1bf4088ea52d6b0e83772ff8e49a929ed4c0107d2948fcc01705f7f1188cc52d6b4341bb97f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d07b8b84842d695b05443c86aa6f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9ab6c96df3dbf4a044a65b6850400894082e005702fa98b46ff588ca47e561cc581b65a79d759776496df697e940b6a65b6850400b4a05bb8205c134a62d1bf6196dc34fd280654d27eea0801128166e32f5c03aa62d1bf0f0d8375f71f7f0788ea52d6b0e83772ffcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96c361be940094d27eea0801128172e085719754c5a37fc7c50f0d8369e6c55f88352398ac74acb37f588ca47e561cc581c13efb6eb8e76496dd6d5f4a004a693f750400b4a05cb8276e32ca98b46fc4c3d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2cac0d2c86c96c361be940094d27eea0801128266e059b806d4c5a37f0f0d8371b69e588ca47e561cc581c6402032d33f6496dd6d5f4a004a693f750400b4a099b8176e040a62d1bfc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5cdc3cb6c96df3dbf4a002a693f75040089403d700d5c0bea62d1bf588ca47e561cc581c13cf01965ff6496dc34fd2800a9a4fdd41002d2807ae099b8d38a62d1bfca0f0d83682d35c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d0c6ce6c96df3dbf4a002a693f7504008940b57000b8d894c5a37f0f0d8365d703588ca47e561cc581c13e00804dff6496dc34fd2800a9a4fdd41002d2816ae01eb8c894c5a37fcdcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbc96c96df3dbf4a002a693f7504008940bd7042b806d4c5a37f0f0d8371c003588ca47e561cc581c13e171e103f6496dc34fd2800a9a4fdd41002d2817ae321b8d3aa62d1bfd0cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d033435345a839bd9ab6196dc34fd280654d27eea0801128166e32f5c03aa62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d27b8b84842d695b05443c86aa6fd14084f2b563938d1f739a4523b0fe105b148ed9bfc16c96c361be940094d27eea080112816ae32fdc138a62d1bf0f0d8371e6c3588ca47e561cc581c13ef3ec883f6496dd6d5f4a004a693f750400b4a05ab8d02e01e53168dfc3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc45f88352398ac74acb37fc76c96df3dbf4a09b535112a080112810dc13b71b714c5a37f0f0d836da087588ca47e561cc581c132203af0bf6496dc34fd2826d4d444a82005a5040b8dbb71a7d4c5a37fc9c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402768c86b19272ad78fe8e92b015c30f1fffbf029d29aee30c1a9997a4b21875d05f2b90f4b043d492d49600c05e7c2e319f7c5f9a33c5b4692ef1c74162dc4b0f4506aa6c651c941aa2c5aedb2ba0b0d961fc222da521ec9339fc222744f797c1101b004225fa23fca6b27580742651d94af496430eba0be5721e954584722a2c24eaa8b085e7c2e2c165969d12cc89e71c59e559c34d69559bef38275c77e29ad303ce09d71df8a6bee48274a6bb8c30391790f6c741494189d57a8a96094189d5566eceab37fbbcc332084c32c018544360eab3744e34d3416dd79566e81602acdd02acdd0be17dc784e2acdd65a6da59d13cc3e0559bad3ef8196de0b0d3ef3edb427d80aacdd559baabb80fd7baacdf559ba8a0e9559bf4147216c8ce3b24559ba8f6ab37dd13de5f02a2bcfba0f2e38a8af3ee83cbe054579f741e44d81566ea0a44d4ab37ea2f842acdd227d565559be6aa42f9559bb517c21566ff83d9448ab376c2ca5b2c2d8ab37ea2f84783d9448341862005f032cbaab37643d23354ab37fc78f0bc7191721d7b7aaacddb0b296cb0b64521e919aa559bfe3c785e38c8b90ebdbd5566ed8832acdfca079d78310401644ab376c419566fe503cebc18820704f2acdd55dc084110ab37d5665f0f0d0130cb5886a8eb2127b0bf4085aec1cd48ff86a8eb10649cbf6401304003703370bcacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa64d37d4e1a72297b568534c3c7f9f0f28c9a4fd0ecc0179f0b971913ce38c0590003704275c6fed42f9acd615106eb6afa504b693f758400b4a05cb8db3700fa98b46ffb52b1a67818fb5243d2335502f496430eba0be5721e9fb">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"88cfc86495dc34fd2800a994752820000a0017000b800298b46fc15886a8eb10649cbf7f01caacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f0d0234337f0d842507417f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32f5c03aa62d1bfce6c96df697e940054d03f4a080112817ee05bb8d014c5a37f0f1394fe4410be40ac16c4e2cd46594ae36eb6d4a007f352848fd24a8f0f0d8371f7814088ea52d6b0e83772ff8749a929ed4c0dff7f0488cc52d6b4341bb97f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d36496dc34fd280654d27eea0801128166e32f5c036a62d1bf54012a5f87497ca589d34d1f0f0d847c0e38e76196dc34fd280654d27eea0801128166e32f5c036a62d1bf7f0488ea52d6b0e83772ff408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d96977b05582d43444e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96e4593e940bea6a225410021500edc13d7197d4c5a37f4084f2b563938d1f739a4523b0fe105b148ed9bf7b8b84842d695b05443c86aa6f5a839bd9ab0f0d840bccb6ff5f88352398ac74acb37f588ca47e561cc581b132d3ecb2f76496e4593e940094cb6d0a0801694086e01db806d4c5a37f6196dc34fd280654d27eea0801128166e32f5c03aa62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c3c1c26c96c361be940094d27eea080112817ae05fb82694c5a37f588ca47e561cc581c6400136cb5f6496dd6d5f4a004a693f750400b4a05eb8205c1054c5a37fc10f0d836dd7c3cfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96dc34fd280654d27eea080112807ee320b8d3aa62d1bfc7c60f0d836c0cb7c5588ca47e561cc581c640dbac801f6496d07abe94032a693f750400b4a01fb8cb3700ea98b46fc4d2ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccc9c7c86c96c361be940094d27eea0801128072e36ddc684a62d1bf588ca47e561cc581c13ee05b743f6497dd6d5f4a004a693f750400b4a01cb8dbb719794c5a37ffc70f0d83704e39408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cb6c96e4593e94642a6a225410022502ddc6d9b8cbaa62d1bf0f0d8369d6dd588ca47e561cc581c13c203ef39f6496c361be94642a6a22541002d2816ee36d5c65953168dfcbc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffd1cfd06c96df3dbf4a002a693f75040089403f7001b8d094c5a37f588ca47e561cc581c13cf09d083f6496dc34fd2800a9a4fdd41002d2807ee019b81754c5a37fcf0f0d836d97dcc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c17b8b84842d695b05443c86aa6f5f88352398ac74acb37f4084f2b563938d1f739a4523b0fe105b148ed9bf5a839bd9ab6c96c361be940094d27eea080112807ae01fb8c814c5a37f0f0d8369d6df588ca47e561cc581c13ee36fb2d76496dd6d5f4a004a693f750400b4a01eb8105c1054c5a37f6196dc34fd280654d27eea0801128166e32f5c03aa62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c5c4c26c96c361be940094d27eea0801128166e09ab81754c5a37f0f0d83644017588ca47e561cc581c13ef3ee01df6497dd6d5f4a004a693f750400b4a05ab8d3571b694c5a37ffc1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96c361be940094d27eea0801128166e003704da98b46ffc7c9c60f0d83680217c8588ca47e561cc581c13ef32e09df6496dd6d5f4a004a693f750400b4a059b806ee05b53168df6196dc34fd280654d27eea0801128166e32f5c03ca62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1cdccca6c96c361be940094d27eea080112807ae36d5c6db53168df588ca47e561cc581c13ee802f03f6496dd6d5f4a004a693f750400b4a01fb820dc03ca62d1bfc20f0d8369e6d9c1ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96df3dbf4a002a693f7504008940b371a6ae01a53168dfd2cf0f0d83644f3f5f87352398ac4c697f588ca47e561cc581c13e00ba017f6496dc34fd2800a9a4fdd41002d2816ae05fb8d814c5a37fc7c64084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c37b8b84842d695b05443c86aa6f5f88352398ac74acb37fc05a839bd9ab6c96df3dbf4a002a693f7504008940b971b6ee002a62d1bf0f0d8374206f588ca47e561cc581c13e1081f67f6496dc34fd2800a9a4fdd41002d28172e36e5c1014c5a37f6196dc34fd280654d27eea0801128166e32f5c03aa62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac4c3c26c96c361be940b4a6e2d6a0801128076e36edc65c53168df588ca47e561cc581b79d644cb6ef6496dd6d5f4a05a53716b50400b4a01eb8105c69b53168dfd20f0d8365f701d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc66c96df697e94105486d99410022500edc65cb8cbaa62d1bf0f0d8365f69e588ca47e561cc581b71c6dc7441f6496df3dbf4a082a436cca080169403b71972e34fa98b46f6196dc34fd280654d27eea0801128166e32f5c03ca62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d26c96df3dbf4a01f5340ec5040038a08371915c642a62d1bf0f1392fe5f95a048b32359a015f71f90426df203f952848fd24a8f5f911d75d0620d263d4c795ba0fb8d04b0d5a7cfcdc20f0d023633c1">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588768586b19272ff6c96d07abe94036a681d8a0801128115c0b7704ca98b46ffd0d2d1cf0f0d846df7db7b588ca47e561cc581a101d0bce3ff6496e4593e94036a681d8a080169408ae05bb8db8a62d1bfcdc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15f8b497ca58e83ee3412c3569f4085aec1cd48ff000f0d033437395888a47e561cc581907fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fc60f0d83134fb3d56196dc34fd280654d27eea0801128166e32f5c03ea62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfc70f0d826441d6be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3bf7f0386a8eb10649cbf6496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25fcb4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbc40f0d03333633408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275fdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5cd0f0d821045dcc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e32f5c0b4a62d1bf768dd06258741e54ad9326e61c5c1f7f07c3d6ceb51652b3d0627ab0b2c1fcce94d771863c78f0b8e496d418f52e43d2c78648c0e496d418f52fe69a3f9fa52f6b83f9d3ab4a97f76b52f6adaa5ee1b46a6fc90ff34089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277fc80f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983f5886a8eb10649cbf64022d315f92497ca589d34d1f6a1271d882a60b532acf7f0f0d033138380f28cf21a481c9401034f36b4ad81d59a1b45586d3cdad296375c0bf24600b3f6a487a466aa05c724b6a0c7a9721e9fb50be6b3585441c8b27d2800ad94752c20080a01cb8005c0014c5a37fda958d33c0c7">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88c5c4c3c2c1cb0f1faf9d29aee30c78f1e171c92da831ea5c87a58864dc5b3b96c6242ca3b684ae3457e7fc2c06f8a0d2401038d07e08983fc0bfbe0f0d8369a69f0f28cf21a481c9401034f36b4ad81d59a1b45586d3cdad296375c0bf24600b3f6a487a466aa05c724b6a0c7a9721e9fb50be6b3585441c8b27d2800ad94752c20080a01cb8005c0014c5a37fda958d33c0c7">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"88cc5f96497ca58e83ee3412c3569fb50938ec4153070df8567bc959871a52324f496a4f5a839bd9abd0768320e52f5885aec3771a4b0f0d830b2fb9cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28fbb1288a1861860d19edbb336ffe78a18c1835070f0db7616490d1353523fdfef44f0aba7fbd50ddb077f4bd1defdf77e9e93e5c53c79a1f38395d269cfeb5f2e0f51ac7bbdef2b2007da97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e32f5c03ea62d1bfed4d634cf031f4088f2b5761c8b48348f89ae46568e61a00d2c1f7f0ae9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349c8d36496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27fc67b8b84842d695b05443c86aa6fd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9dd0f0d03313733e50f28eaef0481148db3295a8e465f03efc6191f7c31bd1ca391b03ed84a169b7a465f71671c65a03ccbed81f6c25682f32d44cb2e39f6a17cd66b0a88370d3f4a0195b49fbac20044a05ab807ae01f53168dff6a5634cf031f6a487a466aa05cb2ca5224ddcb49468b6c2af5153cc640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbfdb7f08a7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88e6c35f87352398ac4c697fcd6c96d07abe9403ea65b68504008940b7700fdc1054c5a37f588ca47e561cc581b13ee3ce3ccf6496e4593e9403ea65b6850400b4a05bb807ee32253168dfe20f0d84085f65df408721eaa8a4498f5788ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"895f911d75d0620d263d4c795ba0fb8d04b0d5a7cad36496d07abe940054ca3a940bef814002e001700053168dffe60f0d0130c158b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96df697e94640a6a225410022500f5c13971a654c5a37f5f87352398ac5754dfc4cfd80f0d830b6fb5588ca47e561cc581c13a075c7dff6496df3dbf4a320535112a080169403d704e5c13ca62d1bf6196dc34fd280654d27eea0801128166e32f5c03ea62d1bfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96d07abe940b8a65b6850400894102e36d5c0b4a62d1bf0f1395fe5c91c209959e0b8459a2352bc3095c69f781fcff52848fd24a8f0f0d846590b22f5f88352398ac74acb37f6196dc34fd280654d27eea0801128166e32f5c03ca62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32f5c1094c5a37fc86495dc34fd2800a994752820000a0017000b800298b46f4085aec1cd48ff86a8eb10649cbfe77f15caacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f0d0234337f11842507417fd5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fd00f0d03333137e56196dc34fd280654d27eea0801128166e32f5c132a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bfd10f0d8308842fe6be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0be768dd06258741e54ad9326e61c5c1f7f03a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f54012a4089f2b567f05b0b22d1fa868776b5f4e0df5f87497ca589d34d1f0f0d8369c6430f28c7d7b6b241ff31d9cfbe3bf883703ff3febee43d2335500e442f59cd526c3d142e43d3f6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32f5c132a62d1bfeff">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"88d36c96c361be940094d27eea0801128115c659b820a98b46ffccd8e35a839bd9ab0f0d840baf32ff588ca47e561cc581c13ef3af361f6496dd6d5f4a004a693f750400b4a05ab816ee36ca98b46fcddc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d7e6cfc06c96c361be940094d27eea0801128015c6c371b694c5a37f588ca47e561cc581c13ed38f899f6496dd6d5f4a004a693f750400b4a00571b66e34da98b46fd00f0d8369e13bdfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96c361be940094d27eea080112816ee34f5c682a62d1bf7b8b84842d695b05443c86aa6fc50f0d836de7c3d4588ca47e561cc581c13efb2d3c0f6496dd6d5f4a004a693f750400b4a05bb8d3f71a1298b46fd4e3e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dec0d6e2c76c96c361be940094d27eea0801128105c69ab80694c5a37f0f0d8365c71a588ca47e561cc581c13eeb6c85df6496dd6d5f4a004a693f750400b4a04171a72e36fa98b46fd7e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e16c96e4593e94642a6a225410022502cdc03d7190a98b46ffe6c4cb0f0d836db79fda588ca47e561cc581c13c165a79df6496c361be94642a6a22541002d28166e34fdc69f53168dfda7f1788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5c7dd4084f2b563938d1f739a4523b0fe105b148ed9bfcf6c96e4593e94642a6a2254100225021b8d3b704e298b46ff0f0d8371d79d588ca47e561cc581c13c07196dbf6496c361be94642a6a22541002d2810dc6c171b754c5a37fdfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9768586b19272ff6c96e4593e940054d03b141000e2816ee059b8db8a62d1bfe40f0d0234335896a47e561cc5801f4a547588324e5837152b5e39fa98bf6496dc34fd280654d27eea0801128166e32f5c132a62d1bf4088ea52d6b0e83772ff8e49a929ed4c0107d2948fcc016c1f7f0888cc52d6b4341bb97f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e6c4588eaec3771a4bf4a523f2b0e62c0c834089f2b511ad51c8324e5f834d96975f8b497ca58e83ee3412c3569f0f0d0234377f048749a929ed4c0d37c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e55f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d83089917dee5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7e5e4e3e2e1e00f0d8369c6dd0f28d0d7b6b241ff31d9cfc63bf881703ff31d9cfbe3bf883703ff3febee43d2335500e442f59cd526c3d142e43d3f6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32f5c132a62d1bfef">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"88c96c96df3dbf4a09b535112a0801128115c6dab8cb4a62d1bf5f88352398ac74acb37fcfd9e00f0d83704f3f588ca47e561cc581c109f0bce07f6496dc34fd2826d4d444a82005a5022b8db9700d298b46ff6196dc34fd280654d27eea0801128166e32f5c132a62d1bfd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cedcc1e36c96df3dbf4a002a693f75040089403771b7ee36053168df588ca47e561cc581c13ce85f71cf6496dc34fd2800a9a4fdd41002d28072e01ab827d4c5a37fc10f0d83680e87d6d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16c96df3dbf4a002a693f75040089403f7197ee32fa98b46fe0e70f0d8371e705c5588ca47e561cc581c13cf36069bf6496dc34fd2800a9a4fdd41002d2807ee342b82794c5a37fc4d9d8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d46c96d07abe94134a6e2d6a0801128115c69bb8d38a62d1bfd9e35a839bd9ab0f0d8368016bc9588ca47e561cc581b7dc089e69bf6496e4593e94134a6e2d6a080169408ae34ddc69e53168dfc8dd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fce0f0d03333630c1c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9e7ccddc16c96c361be940094d27eea080112806ee0457196d4c5a37f0f0d8371d745588ca47e561cc581c13edb6f36ef6496dd6d5f4a004a693f750400b4a01bb8215c680a62d1bfcce1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3cd4085aec1cd48ff86a8eb10649cbf6496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25fd54090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbc60f0d03353438408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7d70f0d03353435ca6196dc34fd280654d27eea0801128166e32f5c134a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8d80f0d03353435cbbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887b8b84842d695b05443c86aa6fccd76c96df697e940054c258d410021502e5c69bb81754c5a37f6196c361be940094d27eea080112817ee34fdc1054c5a37f6496dc34fd280654d27eea080112817ee34fdc1054c5a37fc4768344b2970f0d8369a69dc4558471a0b4cf5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e46c96df697e94136a6e2d6a0801128205c65db810a98b46ff6196c361be940094d27eea0801128205c0b571b694c5a37f6496dc34fd280654d27eea0801128205c0b571b694c5a37fcac30f0d8313efb3c95584704e041fc2c8d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6496dc34fd280654d27eea0801128166e32f5c1054c5a37f54012a5f87497ca589d34d1f0f0d85081979c07f6196dc34fd280654d27eea0801128166e32f5c1054c5a37f408721eaa8a4498f5788ea52d6b0e83772ff408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d96977b05582d43444e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3e15f87352398ac5754df6c96d07abe941094d444a820044a05eb8db371a1298b46ff6196c361be940094d27eea080112820dc6dfb8c894c5a37f6496dc34fd280654d27eea080112820dc6dfb8c894c5a37fdad30f0d836dc0bfd955846dc65917d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26c96d07abe941094d444a820044a05eb8db5719794c5a37f6196c361be940094d27eea080112820dc6dfb8cb2a62d1bf6496dc34fd280654d27eea080112820dc6dfb8cb2a62d1bfded70f0d836d975fdd55846dc6590fd6dc5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264027686c58703025c1f5f92497ca589d34d1f6a1271d882a60e1bf0acf70f0d0130c1e10f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f5886a8eb10649cbfe7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"c1e8e2e7e6bebfe4c00f0d0130e3c20f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1c25f87352398ac4c697f6c96c361be94036a693f7504008140bd7021b8cb4a62d1bf6196dc34fd280654d27eea080112807ae05ab806d4c5a37f6496dd6d5f4a01a5349fba820044a01eb816ae01b53168dfe8e10f0d023433e755840bed36ffe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768dd06258741e54ad9326e61c5c1f4003703370a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3fdb4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f5f87497ca58ae819aa0f0d8365b13d5891aec3771a4bf4a523f2b0e62c0d81c71f6b6196dc34fd280654d27eea0801128166e32f5c132a62d1bfdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f04fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb59871a52324f496a4fd26196dc34fd280654d27eea0801128166e32f5c134a62d1bf768320e52f5885aec3771a4b0f0d03383832408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff7b8b84842d695b05443c86aa6f5f88352398ac74acb37fd96c96c361be940094d27eea0801128076e322b81714c5a37f588ca47e561cc581c13ee32eb20f6497dd6d5f4a004a693f750400b4a01db8cb371b654c5a37ffcc0f0d83702117408721eaa8a4498f5788ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96c361be940094d27eea0801128015c6d9b800298b46ffc5df0f0d8371f035c4588ca47e561cc581c13ed3a06dff6496dd6d5f4a004a693f750400b4a00571b72e004a62d1bfd1c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c7c6c1e16c96d07abe9413ea6a225410022504cdc6dab8cbca62d1bf0f0d8371a71d588ca47e561cc581c138ebacb8ff6496df3dbf4a320535112a0801694002e003702253168dffd4c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbcac9c4e46c96c361be940094d27eea080112800dc6dcb8d34a62d1bf0f0d836dd7c1588ca47e561cc581c13ed32fb2ef6496dd6d5f4a004a693f750400b4a005700d5c0014c5a37fd7c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cecc6c96df3dbf4a05b52f948a08010a810dc68571b7d4c5a37f0f0d840b2171cf588ca47e561cc581c0321136eb3f6496df3dbf4a004a6a22541002d2816ee01db8db8a62d1bfdacb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1d0cf5a839bd9ab6c96c361be940094d27eea080112817ee34edc0054c5a37f0f0d8371d0b7588ca47e561cc581c640075d7daf6496dd6d5f4a004a693f750400b4a05fb8d3d702ea98b46fdecf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85f4085aec1cd48ff86a8eb10649cbf0f0d0234325f87352398ac4c697f6496dd6d5f4a01b5b2db52c2001b5042b8005c0014c5a37f0f28d6b450008191b75d12ce8dd6d669f0b2b3e565a59f0c61291970ae3ae33b3b82307da85f359ac2a20c361be940056c258d61002ca807ee32f5c134a62d1bfed490f48cd540ba0b67735532c8f485c87a7ed4ac699e063f54012ae77f2396bdae0fe74eac8a5fc1c46a6ae1b54bbc3729c34e4fe7df7f16842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d83132e83cae20f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f5886a8eb10649cbfc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df6496d07abe94032a693f750400b4a059b8cbd704d298b46fc4de0f0d840bafb80fe47f0388cc52d6b4341bb97f408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130588ca47e561cc581c640e880007f4089f2b511ad51c8324e5f834d96977b05582d43444e6c96d07abe9403ca693f7504008140b571b66e36e298b46f4088ea52d6b0e83772ff8d49a929ed4c0dfd2948fcc0e859">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7d4ce6c96df3dbf4a09a5340fd2820044a08171b15c038a62d1bf6196c361be940094d27eea0801128205c69bb8c814c5a37f6496dc34fd280654d27eea0801128205c69bb8c814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d840bccbaef408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5584700ebad75890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28fbb1288a1861860d19edbb336ffe78a18c1835070f0db7616490d1353523fdfecfe66c3fa2fc904f56d697bfdf6199fed8ffdf7fcc09cbd7439a5987de6bdb505ba7a70faf6e318c14fda97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e32f5c134a62d1bfed4d634cf031f4088f2b5761c8b48348f89ae46568e61a00fac1f7f15e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349d2da6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27fe27b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e32f5c134a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32f5c132a62d1bf768586b19272ff6c96d07abe9403ca693f7504008140b571b66e34f298b46f0f0d840bae041fd56496d07abe94032a693f750400b4a059b8cbd704ca98b46fd4e07f138e49a929ed4c0dfd2948fcc0ebecffda5f88352398ac74acb37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4768dd54d464db6154bf79812e05c1fe30f28da445dcd07feef6effe770ffc13cd42f6103e06c2e02fbd75670000003086f00207af5f6bff77b07ff3ed4c1e6b3585441be7b7e94504a693f750400baa059b8cbd704d298b46ffb52f9e919aa81035e38c8b90f4fda9ac699e0634003782d6386a50b34bb4bbf6496c361be940094d27eea0801128166e32f5c134a62d1bf6c96dd6d5f4a01a5349fba820044a059b8cbd704d298b46f58a6a8eb10649cbf4a54759093d85fa5291f9587316007d2951d64d83a9129eca7e94aec3771a4bf4085aec1cd48ff86a8eb10649cbf0f1393fe5b03ed8703605830bcd2ce38fe06dcbb7bf97b012a7f12bbacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee854d5c36a9934df52f6ad0a69878a9bb7c3fcff4086f282d9dcb67f85f1e3c38e370f0d0234337f098749a929ed4c016fe55f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd0c95a839bd9ab6c96c361be940094d27eea0801128005c03d700e298b46ff588ca47e561cc581c13ecbacbeff6496dd6d5f4a004a693f750400b4a001702ddc032a62d1bfd30f0d83742f03408721eaa8a4498f5788ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d36c96e4593e94642a6a225410022502ddc6dab8d054c5a37fd7c40f0d8369f00bd0588ca47e561cc581c13cd3c275ef6496c361be94642a6a22541002d28266e09fb8d094c5a37fd8c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d9d2c1c66c96df3dbf4a002a693f75040089413371966e36153168df0f0d8365f641588ca47e561cc581c13ecb6269bf6496dc34fd2800a9a4fdd41002d28266e32fdc03ea62d1bfdbc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88db5f8b497ca58e83ee3412c3569f0f0d03313733c60f28eaef03a27c212cb215a74b23b24afbed3ef8637a394723607db0942d36f48cbee2ce38cb407997db03ed84ad81e65a89965c73ed42f9acd615106e1a7e94032b693f7584008940b5700f5c134a62d1bfed4ac699e063ed490f48cd540b96594a449bb96928d16d855ea2a75886a8eb10649cbf640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbfd57f14a7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88e0dc6c96e4593e94642a6a225410022504cdc00ae36ca98b46ff0f0d8365b79f588ca47e561cc581c13cd38fbacf6496c361be94642a6a22541002d28266e01db8dbaa62d1bfe5cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768dd06258741e54ad9326e61c5c1f7f03a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f54012a4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f5f87497ca58ae819aa0f0d840b6dbce75891aec3771a4bf4a523f2b0e62c0d81c71d6f6196dc34fd280654d27eea0801128166e32f5c132a62d1bfd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d841002d87fdc6c96df3dbf4a09b535112a0801128176e059b8d34a62d1bf52848fd24a8f0f1390fe40db4d3417246a311240dc8db73f9fc7c6c4c0d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de7b8b84842d695b05443c86aa6fde6496d07abe940054ca3a940bef814002e001700053168dff6196dc34fd280654d27eea0801128166e32f5c134a62d1bf0f0d023433dc58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfe7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc25f88352398ac74acb37fe36c96d07abe94036a681d8a0801128115c102e32ea98b46ff588ca47e561cc581a101d10596ff6496e4593e94036a681d8a080169408ae081719754c5a37f6196dc34fd280654d27eea0801128166e32f5c1094c5a37f0f0d846df7db7be3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c75f87352398ac5754dfe86c96df697e94640a6a225410022500f5c13971a794c5a37f588ca47e561cc581c13a075d083f6496df3dbf4a320535112a080169403d704e5c6da53168dfc90f0d03313839e7e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96c361be94138a6a225410022502ddc0bd71a0a98b46ffcc5a839bd9ab0f0d836da743c8588ca47e561cc581c132f3a0645f6496dd6d5f4a09c535112a08016940b77042b81714c5a37fcd408721eaa8a4498f5788ea52d6b0e83772ff4084f2b563938d1f739a4523b0fe105b148ed9bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd1ccbec26c96df697e940b6a693f75040085403f71a7ee32ca98b46f0f0d8365c69b588ca47e561cc581b7c4eb6d89bf6496dc34fd282029b8b5a82005a502ddc03371a7d4c5a37fd2c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06c96c361be940094d27eea080112800dc641704fa98b46ffc2d5c60f0d836df65dd0588ca47e561cc581c13ed08400ff6496dd6d5f4a004a693f750400b4a0037196ee01a53168dfdac5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3d7d2c86c96c361be940094d27eea0801128176e342b81694c5a37f588ca47e561cc581c6400009f77f6496dd6d5f4a004a693f750400b4a05db8d33704053168dfdd0f0d8371e03bc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6dad5c7cb6c96e4593e94642a6a225410022504cdc03371a0298b46ff0f0d83699785588ca47e561cc581c13cd38fb4e76496c361be94642a6a22541002d28266e01db8c814c5a37fdbcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9ddd8ce6c96df697e94640a6a225410022504cdc69fb8dbea62d1bf0f0d836c4fbf588ca47e561cc581c13ae3c271cf6496c361be94642a6a22541002d2800dc0b9702053168dffdece">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f0f842507417f6196dc34fd280654d27eea0801128166e32f5c138a62d1bf768dd06258741e54ad9326e61c5c1f4003703370a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c4c3c2c1c00f0d0131bfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d8413efb8df5f87352398ac4c697f6c96df3dbf4a09b535112a0801128176e045719694c5a37f52848fd24a8f0f1390fe40291e8ca49198c449037236dcfe7fc6c5c46196dc34fd280654d27eea0801128166e32f5c132a62d1bfda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96196dc34fd280654d27eea0801128166e32f5c642a62d1bfc8c7c6c50f0d0131c4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be768586b19272ff6495dc34fd2800a994752820000a0017000b800298b46f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf7f0ccaacf4189eac2cb07f33a535dc618f1e3c2f5164424695c87a58f0c918ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d534e4bea6bdd0a90dfd0a6ae1b54c9a6fa9a61e2a5ed5a3f90f0d023433cfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c26c96e4593e940054d03b141000e2816ee059b8db8a62d1bfc60f0d0234335896a47e561cc5801f4a547588324e5837152b5e39fa98bf6496dc34fd280654d27eea0801128166e32f5c642a62d1bf4088ea52d6b0e83772ff8d49a929ed4c0107d2948fcc0f877f1488cc52d6b4341bb97fcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d8264225a839bd9ab6196dc34fd280654d27eea0801128166e32f5c644a62d1bf0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fc8c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c00f0d830882e7bfbe0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fc8c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8bed6d554012ad55f87497ca589d34d1f0f0d8369c6430f28d0d7b6b241ff31d9cfc63bf881703ff31d9cfbe3bf883705ff3febee43d2335500e442f59cd526c3d142e43d3f6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32f5c644a62d1bfef">>, +[ +{<<":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;">>} +] +}, +{ +undefined, +<<"88c3c20f0d826442c16196dc34fd280654d27eea0801128166e32f5c65953168df0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fcbcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce7b8b84842d695b05443c86aa6f5f88352398ac74acb37fc46c96c361be941014cb6d0a080112810dc6c1704e298b46ff588ca47e561cc581b65f03a1781f6496dd6d5f4a080a65b6850400b4a04371b0dc644a62d1bfc60f0d83105a7f7f0b88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f11fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb59871a52324f496a4fccc8768320e52fe00f0d830b8e03408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cf0f0d03363039ceca0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fd7d8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bfcccf640130cb4086f2b5281c86938713e164017c2d7fd07f08842507417f0f0d8313cf0b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e7cfe4798624f6d5d4b27fca7f198749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fe0df7f0cd2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d9d80f0d826440d7d30f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fe0e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d80f0d02353056034745546496df697e94038a693f750400894082e099b8d3ca62d1bfd5cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264027689aa6355e5802ef2edb56196dc34fd280654d27eea0801128166e32f5c138a62d1bf5f8b1d75d0620d263d4c79a68fd3db0f28bbacde4b4452b6271c71c03d007ed4be7a466aa05e43525424f615721e9fb53079acd615106eb6afa500cada4fdd61002ca8166e32f5c138a62d1bff0f1f9b9d29aee30c10f524b525790d495093d855c87a58acde4b42f31a5f0f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6496dc34fd280654d27eea0801128166e32f5c640a62d1bfdddc0f0d847c2e841f6196dc34fd280654d27eea0801128166e32f5c640a62d1bfd6408af2b10649cab0c8931eaf044d4953534088f2b10649cab0e62f0130589aaec3771a4bf4a523f2b0e62c00fa529b5095ac2f71d0690692ff4089f2b511ad51c8324e5f834d96977b05582d43444e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7e60f0d03353338e5e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7e60f0d03333536e5e10f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e9e80f0d03353339e7e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dce3be6496c361be940054ca3a940bef814002e001700053168dffc0e9db7689bf7b3e65a193777b3f0f0d03353435d9e90f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d56196dc34fd280654d27eea0801128166e32f5c65a53168df768dd06258741e54ad9326e61c5c1f7f13a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"d47686c58703025c1f5f92497ca589d34d1f6a1271d882a60e1bf0acf70f0d01305a839bd9ab6196dc34fd280654d27eea0801128166e32f5c65953168df0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c95f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d826441c0c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"d97f08fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3c0cdcccec2e9c30f0d0130e6c10f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d840bce001fdd6496dd6d5f4a01a5349fba820044a01db8066e002a62d1bfcc7f2588ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fd10f0d0234325f87352398ac4c697f6496dd6d5f4a01b5b2db52c2001b5042b8005c0014c5a37f0f28d6b450008191b75d12ce8dd6d669f0b2b3e565a59f0c61291970ae3ae33b3b8239bed42f9acd6151061b0df4a002b612c6b080165403f7197ae32d298b46ffb5243d2335502e82d9dcd54cb23d21721e9fb52b1a67818f54012ace7f0696bdae0fe74eac8a5fc1c46a6ae1b54bbc3729c34e4fe7c87f04842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4c80f0d03323435cad30f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fd7d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689aa6355e5802ee2ecb7c30f0d0234396c96c361be94036a436cca08010a817ae34ddc644a62d1bfc252848fd24a8fd6c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c57b8b84842d695b05443c86aa6fce6496d07abe940054ca3a940bef814002e001700053168dff6196dc34fd280654d27eea0801128166e32f5c65b53168df0f0d023433ca58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e66c96e4593e940bea6e2d6a0801128266e320b8cbea62d1bf0f1394fe632c816e35a4001668830b8e352bee36407f3fc30f0d8365913d7f08b5acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3d1c1cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e76196dc34fd280654d27eea0801128166e32f5c65d53168dfd3c90f289fbba3f22675de803f6a5634cf031f6a487a466aa05fb9cc42ca6ee55c87a7ef7f01c4acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ed5b54d392fa97b86d52fe0e2a6f87229af742a64e30a9ab86d5376f854e1a7229a61e2a64d3bff958a1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd294da84ad617b8e83483497e364022d317b93e082d8b43316a4fd424216b4ad82a21e435537d90f0d83784d03">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ffc55f8b497ca58e83ee3412c3569f6496dc34fd280654d27eea0801128166e32f5c65d53168df5895a47e561cc5801f4a547588324e5fa52a3ac849ec2f4085aec1cd48ff86a8eb10649cbfc70f0d03333932d80f28bdbda2fdf821872722ecc1f3f721e919aa808340e82d2590c35c87a7eeb1a67818fb2f9acd615106eb6afa500d29a4fdd410022502cdc65eb8cbaa62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f28ff09b1288a1861860d19edbb336ffe78a18c1835070f0db7616490d1353523fdc70f9ca8f5bf38a7f0c72bef54f8bf793191acbe098ddc0d43a7f30decd37e51e51d387be62c2ec92e8f3a441a78654ffb6ff7ccfe2083ed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b37197ae32ea98b46ffb5358d33c0c7f4088f2b5761c8b48348f89ae46568e61a002583f7f08e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbfc26496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27f5a839bd9abd6cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf768dd54d464db6154bf79812e05c1fdd0f28da445dcd07feef6effe770ffc13cd42f6103e06c2e02fbd75670000003086f00207af5f6bff77b07ff3ed4c1e6b3585441be7b7e94504a693f750400baa059b8cbd719754c5a37fda97cf48cd54081af1c645c87a7ed4d634cf0314003782d6386a50b34bb4bbf6496c361be940094d27eea0801128166e32f5c65d53168df6c97dd6d5f4a01a5349fba820044a059b8cbd719754c5a37ff58a6a8eb10649cbf4a54759093d85fa5291f9587316007d2951d64d83a9129eca7e94aec3771a4bfcb0f1393fe5b03ed870377d6109e79615f770e17db73f97b012a7f0bbbacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee854d5c36a9934df52f6ad0a69878a9bb7c3fcff4086f282d9dcb67f85f1e3c32f070f0d0234334088ea52d6b0e83772ff8749a929ed4c016f7f2488cc52d6b4341bb97f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dad40f0d033137337f0088ea52d6b0e83772ff0f28eaef046f8238c0d09e6db95f009b71b23ef8637a394723607db0942d36f48cbee2ce38cb407997db03ed84adc8f32d44cb2e39f6a17cd66b0a88370d3f4a0195b49fbac20044a05ab807ae32ea98b46ffb52b1a67818fb5243d2335502e596529126ee5a4a345b6157a8a9ce640130768821e8a0a4498f5041408b20c9395690d614893772ff86a8eb10649cbf408caec1cd48d690d614893772ff86a8eb10649cbfd67f08a7acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725ffe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"89c47b8b84842d695b05443c86aa6fd06496d07abe940054ca3a940bef814002e001700053168dffe20f0d0130c5e6d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88769086b19272b025c4b85f53fae151bcff7f5f961d75d0620d263d4c7441eafb24e3b1054c1c37e159ef54012a409419085421621ea4d87a161d141fc2d495339e447f95d7ab76ffa53160dff4a6be1bfe94d5af7e4d5a777f409419085421621ea4d87a161d141fc2d3947216c47f99bc7a925a92b6ff5597e94fc5b697b5a5424b22dc8c99fe94f90f0d8208455888a47e561cc5802eff6196dc34fd280654d27eea0801128166e32f5c65d53168dfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e46c96c361be94134a65b6a5040036a08571b0dc65953168df0f1393fe652902f9160c6b3328db08da8de23ad03f9f52848fd24a8f7f0ab5acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f35f92497ca589d34d1f6a1271d882a60e1bf0acf7cadc0f0d023338c2d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96d07abe941094d444a820044a05bb8db7719714c5a37f0f1392fe5a005c956786b34420dd289b180a007f3fc2c1c0ccde0f0d033133356196dc34fd280654d27eea0801128166e32f5c65e53168dfd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03323733e1c00f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c082ebe17da602b07c85798d2fe54085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e32f5c65e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f18842507417f6196dc34fd280654d27eea0801128166e32f5c682a62d1bf768dd06258741e54ad9326e61c5c1f7f0aa1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":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">>} +] +} +]}. +{story_24, [ +{ +undefined, +<<"488264025f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f408721eaa8a4498f57842507417f0f1f9b9d29aee30c78f1e17258334c8a0c84ae7b2660719ed4b08324a863798624f6d5d4b27f6196dc34fd280654d27eea0801128166e32d5c0b8a62d1bf768586b19272ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c15890aed8e8313e94a47e561cc5802d34007f6c96dc34fd280654d27eea0801128105c03371a6d4c5a37f6196dc34fd280654d27eea0801128105c03371a6d4c5a37f5a839bd9ab7b8b84842d695b05443c86aa6f0f0d84081969afc7408bf2b4b60e92ac7ad263d48f9d868a0fe16c361e95274a6b45c61894f65b4a17258334c8a0c84ae7b26fc46496d07abe94032a5f2914100225020b8066e34da98b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c85891a47e561cc5804dbe20001f4a576c74189f6c96df697e940b8a6a2254100225042b8066e000a62d1bff6196df697e940b8a6a2254100225042b8066e000a62d1bffc4c30f0d83081f7f5f94497ca582211f6a1271d882a60320eb3cf36fac1fc3c96496df3dbf4a05b5349fba820044a085700cdc0014c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd588ea47e561cc5802dfd295db1d0627f6c96dc34fd280654d27eea0801128166e32cdc6df53168df6196dc34fd280654d27eea0801128166e32cdc6df53168dfc9c80f0d8371969a5f99497ca58e83ee3412c3569fb50938ec41530190759e79b7d60fc8ce6496dc34fd280654d27eea0801128166e32d5c0b4a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c76c96df697e9403ea6a225410022500e5c0b3704f298b46ff6196df697e9403ea6a225410022500e5c0b3704f298b46ffcdcc0f0d8413c00bbfc1cbd16496df3dbf4a01e5349fba820044a01cb8166e09e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d56c96d07abe94132a65b6a504003ca099b8072e042a62d1bf5892aed8e8313e94a47e561cc58190b6cb80000152848fd24a8f6196df697e9403ea6a225410022500ddc659b800298b46ffd10f0d83085b075f87497ca58ae819aad76496c361be9403aa6a225410042500ddc659b800298b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88db588fa47e561cc58197000fa52bb63a0c4f6c96dc34fd280654d27eea0801128115c65cb8db4a62d1bf0f28bf25114859629eb81139c7423ed490f48cd540b92c19a6450642573d937da958d33c0c7da85f359ac2a20dd6d5f4a0195b49fbac165408ae32e5c6da53168dff6196dc34fd280654d27eea0801128115c65cb8db4a62d1bfd7d60f0d83704d37dfd5db6496dc34fd280654d27eea0801128166e32e5c6da53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfd46c96df3dbf4a002a693f750400894102e36cdc65d53168df6196df3dbf4a002a693f750400894102e36cdc65d53168dfdad90f0d83700d3bd3d8de6496dc34fd2800a97ca450400894102e36cdc65d53168dff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e2d76c96df3dbf4a002a693f750400894102e36cdc0baa62d1bf6196df3dbf4a002a693f750400894102e36cdc0baa62d1bfdddc0f0d8371969ad1dbe16496dc34fd2800a97ca450400894102e36cdc0baa62d1bff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5da6c96df697e9403ea6a225410022500e5c006e36153168dff6196df697e9403ea6a225410022500e5c006e36153168dffe0df0f0d03343733d4dee46496df3dbf4a01e5349fba820044a01cb800dc6c2a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e8dd6c96df697e9403ea6a225410022500e5c006e36da98b46ff6196df697e9403ea6a225410022500e5c006e36da98b46ffe3e20f0d8413c00bbfd7e1e76496df3dbf4a01e5349fba820044a01cb800dc6db53168df">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88408721eaa8a4498f57842507417f6c96d07abe94132a65b6a504003ca099b8072e042a62d1bf5892aed8e8313e94a47e561cc58190b6cb80000152848fd24a8f6196df697e9403ea6a225410022500ddc659b800298b46ff7b8b84842d695b05443c86aa6f0f0d83085b075f87497ca58ae819aa768586b19272ff6496c361be9403aa6a225410042500ddc659b800298b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6588eaed8e8313e94a47e561cc581c0036c96dc34fd280654d27eea0801128166e32d5c1054c5a37f6196dc34fd280654d27eea0801128166e32d5c1054c5a37f5a839bd9abc50f0d837dc7015f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f408bf2b4b60e92ac7ad263d48f9d868a0fe16c361e95274a6b45c61894f65b4a17258334c8a0c84ae7b26fc56496dc34fd280654d27eea0801128166e34fdc1054c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd5891a47e561cc5804dbe20001f4a576c74189f6c96df697e9403ea6a225410022500e5c106e32f298b46ff6196df697e9403ea6a225410022500e5c106e32f298b46ffc4cb0f0d82109b5f99497ca58e83ee3412c3569fb50938ec41530190759e79b7d60fc3ca6496df3dbf4a01e5349fba820044a01cb820dc65e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c26c96df697e9403ea6a225410022500edc102e05e53168dff6196df697e9403ea6a225410022500edc102e05e53168dffc8cf0f0d8313cdbbc1c6cd6496df3dbf4a01e5349fba820044a01db8205c0bca62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88408721eaa8a4498f57842507417fc66c96df697e94640a6a2254100225041b8d82e36053168dff6196df697e94640a6a2254100225041b8d82e36053168dffcc7b8b84842d695b05443c86aa6f0f0d830b2fbdc6cb768586b19272ff6496df3dbf4a09f5349fba820044a08371b05c6c0a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3cb6c96df3dbf4a002a693f750400894106e09cb8d3ca62d1bf6196df3dbf4a002a693f750400894106e09cb8d3ca62d1bfd1c20f0d84680cb6cfcacfc16496dc34fd2800a97ca450400894106e09cb8d3ca62d1bff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6ce6c96c361be940094d27eea080112820dc69cb82754c5a37f6196c361be940094d27eea080112820dc69cb82754c5a37f5a839bd9abc60f0d83134dbd5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f408bf2b4b60e92ac7ad263d48f9d868a0fe16c361e95274a6b45c61894f65b4a17258334c8a0c84ae7b26fc76496dd6d5f4a004a5f2914100225041b8d39704ea98b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc5891a47e561cc5804dbe20001f4a576c74189f6c96d07abe940b6a6a2254100225042b8076e05d53168dff6196d07abe940b6a6a2254100225042b8076e05d53168dffc4cc0f0d033732375f99497ca58e83ee3412c3569fb50938ec41530190759e79b7d60fc3cc6496e4593e940b4a693f75040089410ae01db81754c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f408721eaa8a4498f57842507417f5891aed8e8313e94a47e561cc5804dbe20001f798624f6d5d4b27f6196c361be940094d27eea080112820dc69cb82794c5a37f768586b19272ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c2c1c0cdbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3c2c1c0bfbe">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588c3c2c1c0cdbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2588eaed8e8313e94a47e561cc581c0036c96dc34fd280654d27eea0801128166e32d5c0bca62d1bf6196dc34fd280654d27eea0801128166e32d5c0baa62d1bfcf7b8b84842d695b05443c86aa6f0f0d84081d781fcfcec26496dc34fd280654d27eea0801128166e34fdc0bca62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7cd6c96dc34fd280654d27eea0801128166e05db8d814c5a37f6196dc34fd280654d27eea0801128166e05db8d814c5a37fd3c10f0d83109a6fd2d1c56496d07abe94032a5f291410022502cdc0bb71b0298b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbcac9c86195d07abe941094d444a820044a0857000b810a98b46fc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cccbcac96196dc34fd282754d444a820044a045700fdc036a62d1bffc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdcccbca6196dc34fd282754d444a820044a01db8cb9702253168dffc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cecdcccb6195d07abe941094d444a820044a0857000b811298b46fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce5890aed8e8313e94a47e561cc5802d34007f6c96dc34fd280654d27eea0801128115c6d9b82654c5a37f6196dc34fd280654d27eea0801128115c6d9b82654c5a37fdbc90f0d836dd6595f92497ca589d34d1f6a1271d882a60b532acf7fdace6496d07abe94032a5f2914100225022b8db3704ca98b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3c26c96dc34fd280654d27eea0801128105c6deb8db6a62d1bf6196dc34fd280654d27eea0801128105c6deb8db6a62d1bfdfcd0f0d830b4f03c1ddd16496d07abe94032a5f2914100225020b8dbd71b6d4c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6c56c96dc34fd280654d27eea080112807ee36cdc65e53168df6196dc34fd280654d27eea080112807ee36cdc65e53168dfe2d00f0d84081a003fe1e0d46496d07abe94032a5f291410022500fdc6d9b8cbca62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9df6c96df697e9403ea6a225410022500e5c006e34ea98b46ff6196df697e9403ea6a225410022500e5c006e34ea98b46ffe5d30f0d8369e7035f94497ca582211f6a1271d882a60320eb3cf36fac1fe4d86496df3dbf4a01e5349fba820044a01cb800dc69d53168df">>, +[ +{<<":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">>} +] +} +]}. +{story_25, [ +{ +undefined, +<<"48826401768c86b19272ad78fe8e92b015c3a26c95dc34fd28ca9a4fdd410022502cdc0bd704da98b46f0f1f8f9d29aee30c78f1e172c63f4b90f4ff4085b283cc693fa9ada96d9957012f72cfd95700ab379566fa2954576bb5b73e46cbaab386302ae0160b23238ebcf01e6f0f0d01306196dc34fd280654d27eea0801128166e321b8db8a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c10f28ff1ba8f520a8418f5417a6870e886ecfba4a2ee9d3be16f4efc3d398b65ba2f35e73f4c16e8dfb1bcfd345ba2f35e61d0787261a9dc7d43d34f4235aafe9a746fc1ef9efbb3e9dfcdbd3d36d1a7a6c173f7fb4fed3867d1cb0f4d1b2fe7861c3b28ddaf8e8fc7ad6ff5ef9fb52f9e919aa8172c63f4b90f4fda983cd66b0a88375b57d280656d27eeb08016540b37190dc6dd53168dff6a6b1a678185885aec3771a4b4085aec1cd48ff86a8eb10649cbf5a839bd9ab5f91497ca589d34d1f649c7620a98386fc2b3d0f0d840b410b5fc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e321b8dbca62d1bf768586b19272ff6c96c361be940094d27eea0801128005c03b704253168dff0f1394fe5b6de005a588465668923ae96375b189e07f3f52848fd24a8f0f0d83644e3b4087f2b12a291263d5842507417f5f88352398ac74acb37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb7f0aa6adaa9570165bd25b64a3c11566fbfdd3f29438eaf305b28d90ac1646471d79e6c8e2c0f211870f28faaab31a08c935a6918238ebcf364702c8c0300df95c6dc7a30b92cadbe174a56c4eb8d81a2fff899ad348c11c75e799942164601b6e3ee34571a708e4b28c611902d89d71b0345fff3ed4be7a466aa05cb18fd2e43d3f6a60f359ac2a20dd6d5f4a0195b49fbac20059502cdc64371b794c5a37fda9ac699e063f4003703370d2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a437f40d4bf8388d4d7baf9d4d7ba11a9ab86d53743a0ea64d37d4e1a72297b568534c3c54c9a77a9bb7c2a5fc1a14d7b707f3588caec3771a4bf4a547588324e5c95f87352398ac4c697f0f0d0234326196dc34fd280654d27eea0801128166e321b8dbaa62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86496dc34fd280654d27eea080112816ee321b8d36a62d1bf6c96dc34fd28171486d9941000ca8205c685704ea98b46ffc1c70f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f768dd06258741e54ad9326e61c5c1f0f0d023439">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6c96df3dbf4a05e535112a0801128266e36cdc6dd53168df5f87352398ac5754dfca0f1390fe5e005e66491c7a31c8490371d103f9c00f0d83136cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6496d07abe940814be522820044a085702d5c6c0a62d1bff6c96df697e940814cb6d0a0801128005c0bd71b714c5a37fc6ccc2588ba47e561cc581979e7800070f0d82105f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06c96df697e940814cb6d0a0801128005c0bb71b654c5a37fc8ce0f1390fe5e03c5740e8990b652481b8dca1fe7c40f0d821003">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16c96e4593e940bca65b6850400894102e32cdc65953168dfc9cfc50f0d830b8267">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da7f0da6adaaeb9e4a3c11566fbfde8f94ceabb8631c8abb85d12acdf582c8c8e3af3cf360581e42e4bf5890aec3771a4bf4a523f2b0e62c0f38d0017f0ec7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f9cc0f0d023433d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd7f01a4adaaeb9e4a3c11566fbfdcbf29544f3ad3aab802aaee07160b23238ebcf3822ac0f32c7fc0bfcd0f0d023433cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de7ea4adaaeb9e4a3c11566fbfdcbf29544f3ad3aab802aaee08d60b23238ebcf38e8160790b41c1c0ce0f0d023433cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df7ea3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301dad60b236a365e201c2ac0f21703f6c96df697e9403ea6a225410022504cdc6c171b754c5a37fc2d00f0d83684117588ca47e561cc5804fb4e3c265bf6496df3dbf4a040a6a22541002ca816ee01fb81654c5a37fdb408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e47f03a5adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301d559bab0591b8d95d24919160790b91ff6c96d07abe940b6a6a225410022502fdc086e05c53168dffc7d50f0d836dc705588ca47e561cc5804fbe16df103f6496df697e940b6a6a22541002ca817ee320b8cbca62d1bfe0c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e87f02a3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301da560b238e491a7d991b581e42e496c96df3dbf4a002a693f750400894102e32fdc69953168dfcbd90f0d837c2f35588ca47e561cc58190b2f840d35f6496c361be940054d27eea0801654106e05cb801298b46ffe4c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ece66c96df697e94642a651d4a0801128015c6deb8cb4a62d1bf5f90497ca582211f649c7620a98386fc2b3d0f0d83644f0b588ca47e561cc5804cb2cb217dbf6497e4593e94642a65b6850400b2a05ab8dbd719694c5a37ff6196dc34fd280654d27eea0801128166e321b8dbea62d1bfcb7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f2ec6c96df3dbf4a01c53716b504008940b971b0dc642a62d1bf5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d836da681588ca47e561cc5804e36cb8eba1f6496c361be94038a6e2d6a08016540b971b0dc640a62d1bfc3d0c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f66c96df3dbf4a042a6a225410022502fdc0b7702fa98b46ffea0f0d836c2d3d588ca47e561cc58190b4dbcebcff6496dc34fd280129a4fdd41002ca8172e01bb80794c5a37fc6d3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96d07abe9413aa6e2d6a080102807ee01db82694c5a37fcb5b842d4b70ddc8f60f0d836dc75f5892aed8e8313e94a47e561cc58190b6cb80003f6497dd6d5f4a0195349fba820059502cdc64371b7d4c5a37ffcbd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26c96e4593e94642a6a225410022502fdc0bf71b654c5a37ff20f0d83742d83588ca47e561cc58190b4e3cdb2cf6496dc34fd280129a4fdd41002ca817ae34edc644a62d1bfcedb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55a839bd9ab6c96e4593e94134a6a225410022500ddc6c371a0a98b46ffd30f0d836dc75f588ca47e561cc5819038d34cbc2f6496df3dbf4a09a535112a080165403771b0dc682a62d1bfd2dfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96df3dbf4a002a693f750400894106e09ab8cbea62d1bf5f88352398ac74acb37f0f0d836dc65c588ca47e561cc58190b4d802f3bf6496dc34fd280129a4fdd41002ca8166e341b8d38a62d1bfd6e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96df3dbf4a002a693f750400894133700cdc132a62d1bfc10f0d83742ebb588ca47e561cc58190b4f3cd841f6496dd6d5f4a0195349fba8200595000b8205c13ea62d1bfd9e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06c96df3dbf4a002a693f7504008940bd71a0dc65e53168dfc40f0d8379d00b588ca47e561cc58190b220b4067f6496c361be940054d27eea0801654006e36ddc1094c5a37fdce9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d36c96c361be940894d444a820044a05ab827ee32fa98b46ffc70f0d840b2069cf588ca47e561cc5804fb8cbaeb4e76496dc34fd281129a88950400b2a05ab816ae09b53168dffdfec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d67f28a7adaaeb9e4a3c11566fbf6aaee0f94d2e32baacde7447a5c559c0b0591c648d96df65d581e42d176c96df697e94640a6a2254100225041b8076e32d298b46fff5cb0f0d84700f81cf588ca47e561cc58190b2e880d3ff6496c361be940054d27eea08016540b771b7ee09d53168df6196dc34fd280654d27eea0801128166e321b8dbca62d1bff1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbd36c96df697e940bca6e2d6a080112800dc082e09f53168dffe20f0d846842037f588ca47e561cc5804eb61742107f6496e4593e940bca6e2d6a0801654006e041704fa98b46ffe7f4e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dedde4dcd60f0d846d965b7fe65892aec3771a4bf4a523f2b0e62c0c85b65c0001dbe8f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b800a98b46ff6c96df697e940b8a6a225410022502f5c03971b7d4c5a37f5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1f0f0d83136f330f1390fe5e015928de23e38c9206e38cbffcff">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"48826402e57f0da4adaaeb9e4a3c11566fbfde8f94ceabb8631c8abb85d08160b23238ebcf8a56560790b21f5886a8eb10649cbf4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f95f87352398ac4c697f0f0d0130c76401300f28bdd7ba0deb83ed4be7a466aa0a466a972c63f562695c87a7ed4c1e6b3585441badabe94032b693f758400b2a059b8c8ae002a62d1bfed4d634cf0316269f0f1fffda029d29aee30c22cf2bd23354b9631fab134ae43d2c589a7fcda9a6f5327c0e0e883d5f1441ffaffd4517febff5145ffaffd7c4d011c75e799942164601b6e3ee34571a708e4b28c611903f048038da46486186186186186e8b578e565ed976f6275acfdf46abd467fcdacfea09d697a62f7cfb5add82dcb3f96fd6e9347199ceb65bd3f075aa2baf75d17efdf5458551610bdef365ed92cf58737a86fd7371dfd796dd9c68478dd8b9aa2bbabde2e999ed328551612e9df3efbdb1fa40cefc58bd32d61a45ac1af84d0bbe78bd0f6c5eb37b9e571acbba7e6a8b0f87129be0d596ee2e79bf1db7cb2d0ff71e6c593d6fa238e5df689fdcfe6da0cf7f72a2c25237eb509dbb9f321515debd72f8709dfa61b71aa2bbaabcf66c2cfd71b762a2ba3b45de1f793975f39ba666f77667317479437dfdd3cdf04b47554587d8b7bf7bb96671cf10c30c2ab37d566ffc570042d89db810b627ae042d89ff890d0042d89db810b627ae042d89ff8ef035f05a89070df8567be23a6013ce3c077e0f64900596c2fb4fb620b6f03e09340471d79e6c8e059180601bf2b8db8f46172595b7c2e94bf048e0efd0ebc889571a105a63a3d2fc7a5ea0c5a930a105a63a0b62f110745118c9d41f1177b24a600b2d85f69f6c416de0fc5907a2a3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86496d07abe940814be522820044a00571a05c13ca62d1bff6c97df3dbf4a01f532db4282001f502f5c659b8cbea62d1bffc8c7c6588ba47e561cc581979e7800070f0d830b4073">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6497dd6d5f4a09b5349fba820044a099b8d3971b714c5a37ff6c96d07abe940b2a65b68504003ea08571a66e32ca98b46fc4ca0f138ffe5e005e8c6dbf1b44186e3720bf9fc9c00f0d03333836">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c97df3dbf4a01f532db4282001f502f5c659b8d054c5a37ffcccbca0f0d83642db70f1390fe5e015928de23e38c9206e38cbffcff">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88f07f09a4adaaeb9e4a3c11566fbfde8f94ceabb8631c8abb85d0b6b059191c75e7d96c2b03c8443fc8c7f70f0d83699103cfc50f28ddc7be00b2d85f69f6c416de02a01042d89f540d09e75e75c540e09c0b2d36a819085b13ca81a13ce3c26550382700d34caa064216c4eaa0684f38f002a81c10197c0f7da97cf48cd54148cd52e58c7eac4d2b90f4fda9ac699e062c4d3fe9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf6496d07abe94138a693f750400894006e01db8d3ea62d1bf6c96c361be94036a6a225410022502f5c69eb81714c5a37fcfcecdc40f0d847c4dbad7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16497dd6d5f4a09b5349fba820044a099b8d3971b6d4c5a37ff6c96df3dbf4a09f5340ec5040089410ae32e5c0014c5a37fd1d00f138ffe40d3c3236094921240dc700cff3fcfc60f0d8465b089ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f57f03a3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301da560b2cca02b7296422c0f21685f6c96df697e9413ea693f7504008540bf702fdc0baa62d1bfcd5f86497ca582211f0f0d03353435588ca47e561cc5819036e32c81bf6496e4593e94132a6a22541002ca8076e081704e298b46ffd8408721eaa8a4498f5788ea52d6b0e83772fff37b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b801298b46ff6496df697e940bca5f2914100225000b826ee01e53168dff6c96c361be940094d27eea0801128005c139700253168dff768c86b19272ad78fe8e92b015c354012ad2f40f0d84109a13df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26496df697e940bca5f2914100225000b826ee01b53168dff6c96c361be940094d27eea0801128005c13d704f298b46ffc1c0d4f60f0d8465979f6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46496d07abe940baa5f291410022502e5c03f71b6d4c5a37ff1c2c1d5f70f0d8465e75c0f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56496d07abe940baa5f291410022502ddc002e09a53168dff6c96c361be940894d444a820044a05ab827ae34e298b46ffc4c3d7f90f0d84700075ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c47f0fa5adaaeb9e4a3c11566fbf6aaee0f94aa279d6c122aee1132b0591c7236fbe408560790b8eff6c96d07abe9413ea6a2254100225040b816ae040a62d1bffde5f88352398ac74acb37f0f0d84744e05ff588ca47e561cc58190b2f09f65ef6496c361be940054d27eea08016540bf7000b8dbea62d1bfe9ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c97f03a7adaaeb9e4a3c11566fbf6aaee0f94d2e32baacde7447a5c559c0b059190401c71b61581e42d13f6c96c361be940094d27eea0801128172e362b8db4a62d1bfe3c20f0d8471f7800f588ca47e561cc58190b4e05c65bf6496dc34fd280129a4fdd41002ca8172e362b8cb8a62d1bfedd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f28ff1ba8f520a8418f5417a6870e886ecfba4a2ee9d3be16f4efc3d398b65ba2f35e73f4c16e8dfb1bcfd345ba2f35e61d0787261a9dc7d43d34f4235aafe9a746fc1ef9efbb3e9dfcdbd3d36d1a7a6c173f7fb4fed3867d1cb0f4d1b2fe7861c3b28ddaf8e8fc7ad6ff5ef9fb52f9e919aa8172c63f4b90f4fda983cd66b0a88375b57d280656d27eeb08016540b37190dc6dd53168dff6a6b1a678185885aec3771a4b4085aec1cd48ff86a8eb10649cbf5a839bd9ab5f89352398ac7958c43d5f0f0d83085b076196dc34fd280654d27eea0801128166e322b80714c5a37f6c96d07abe941094d444a820044a099b806ae044a62d1bff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b80754c5a37f6496dc34fd280654d27eea080112816ee321b8d36a62d1bf6c96dc34fd28171486d9941000ca8205c685704ea98b46ffedf3f2e90f0d0234390f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c0e26c96df3dbf4a05e535112a0801128266e36cdc6dd53168dff5f40f1390fe5e005e66491c7a31c8490371d103f9f3ea0f0d83136cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96df3dbf4a320532db4282001f504cdc683704fa98b46feff5f40f0d0235330f1390fe5e015928de23e38c9206e38cbffcff6496dc34fd280654d27eea080112816ee05ab82794c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36496d07abe94138a693f75040089403771b72e34153168df6c97df3dbf4a320532db4282001f504cdc683719654c5a37fff2f8f7ee0f0d0235330f1391fe5e046d4b234d3928424186e3ceb9fcff">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88db0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645700ea98b46ffb5358d33c0c7fcbcac95f91497ca589d34d1f649c7620a98386fc2b3d0f0d84134db8efc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66496dd6d5f4a05c52f948a0801128176e361b8d3ea62d1bf6c96dd6d5f4a09c5309635040089403b71a05c0014c5a37fdeddf1d50f0d830bee3d">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86496dd6d5f4a01a5349fba820044a05cb8cbb71b0298b46f6c96df697e9403aa65b68504003ea081702f5c684a62d1bff752848fd24a8f768dd06258741e54ad9326e61c5c1ff50f0d033631330f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cc6497dd6d5f4a09b5349fba820044a099b8d3971b754c5a37ff6c96df3dbf4a099521b66504003aa08171a05c1094c5a37f5f87352398ac4c697fc20f1390fe5e005e66491c7a31c8490371d103f9c1f80f0d82109f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc96c96df3dbf4a01a535112a0800754106e34d5c65c53168dfbfc3c2f90f0d830bcf3b0f138ffe4118e4688124ae11e0dc71e17f3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d0cfcebfc30f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7fc20f0d023439">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06496d07abe940bea693f75040089410ae0817191298b46ff6c96dc34fd28265486bb1410021500fdc65db8d014c5a37fe8e7588ba47e561cc581979e780007e00f0d8365f65c">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d36496df3dbf4a05952f948a080112817ae34cdc6da53168df6c96df3dbf4a01f53716b504008140bb7190dc640a62d1bfebeac0e20f0d83680dbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d56496df3dbf4a05952f948a080112817ae09ab8cbca62d1bf6c96df3dbf4a01f53716b504008140bb702ddc03ca62d1bfedecc2e40f0d836997dd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eddb6c96df3dbf4a05f5328ea50400894006e09cb801298b46ff5f90497ca582211f649c7620a98386fc2b3d0f0d840804d3df588ca47e561cc5804213e07997ff6496c361be940bea65b6850400b2a059b8272e01c53168dfdbf6f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f1df6c96df3dbf4a040a693f7504008540b3704edc682a62d1bfc10f0d830bafb5588ca47e561cc5802e09e702db9f6496dc34fd2810a9a07e941002ca800dc13d700ca98b46ffdef9f8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f46c96dc34fd2817d4d03f4a0801128166e081702253168dffec0f0d8310190f588ba47e561cc581a65b782f036496d07abe94134a5f2914100225000b807ae09d53168dffe1408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f86c96e4593e94642a6a225410022502d5c035702ca98b46fff00f0d83132fb5588ca47e561cc58190b6cb2fb6d76496dd6d5f4a0195349fba8200595022b8dbd700153168dfe5c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96df3dbf4a01a535112a0801128166e34cdc6c0a62d1bff40f0d8365c781588ca47e561cc58190b6c89e135f6496dd6d5f4a0195349fba8200595022b8cbf702153168dfe9c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16c96dc34fd281714cb6d4a080112806ae099b8dbaa62d1bff70f0d83644e33588ca47e561cc580200be17dc73f6496c361be940054d03b141002ca8115c65eb81654c5a37fecc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46c96df697e94034a6e2d6a0801128166e34e5c032a62d1bffa0f0d83134e3f588ca47e561cc5804e01c75a7c5f6496dd6d5f4a002a6e2d6a080165403971905c0bea62d1bfefcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7f36c96dc34fd281754be522820042a05db816ae34d298b46ff5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d8313620f588ca47e561cc5802fb4fb8e059f6496d07abe940baa65b6a50400b2a01bb816ee34053168dff3cf7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccf86c96df3dbf4a05b52f948a08010a8005c65bb811298b46ffda0f0d837c2cb3588ca47e561cc5802f89c65e03ff6496c361be940b4a65b6a50400b2a0457196ee32e298b46ff7d3c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf6c96d07abe9413ea6a225410022502d5c086e36ca98b46ff5f88352398ac74acb37f0f0d8365d703588ca47e561cc58190b6cb4d09af6496dd6d5f4a0195349fba820059502cdc03771b0a98b46f6196dc34fd280654d27eea0801128166e322b80754c5a37fd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d46c96dd6d5f4a09953716b50400894002e05cb811298b46ffc20f0d8313edb9588ca47e561cc5804eb6269e6dff6496e4593e940bca6e2d6a0801654033702fdc69c53168dfc1db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d76c96d07abe9413ea6a225410022502d5c0b3700f298b46ffc50f0d83109973588ca47e561cc58190840db8d07f6496df697e9413ea6a22541002ca8166e36fdc13ca62d1bfc4de">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96d07abe9403aa681fa504008940337196ae05a53168dfc80f0d830b6007588ba47e561cc581a71b740d0b6496df3dbf4a09d52f948a080112810dc03f704fa98b46ffc7e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd6c96e4593e940baa6a2254100225041b8d39700e298b46ffcb0f0d8313627b588ca47e561cc5804f38fbadb8ff6496df697e940054d444a820059502edc03571b714c5a37fcae4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e06c96df697e940094d444a820044a083704edc134a62d1bffce0f0d830bec83588ca47e561cc5804f3c1134fbdf6496df3dbf4a019535112a0801654006e001704da98b46ffcde7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e36c96dc34fd282029a8895040089400ae36edc13ca62d1bffd10f0d830ba217588ca47e561cc581903cf3ed01cf6496dd6d5f4a09d535112a0801654006e36ddc65953168dfd0ea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e66c96df697e940baa65b68504008940b571905c0b2a62d1bfd40f0d8313ee07588ca47e561cc5802e34c85c087f6496dd6d5f4a044a681fa50400b2a05db8d8ae05e53168dfd3ed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e96c96e4593e94134a6a225410022502d5c0b5700d298b46ffd70f0d83105c07588ca47e561cc581903ed36113ff6496dd6d5f4a09d535112a08016540bb704d5c0b8a62d1bfd6f0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ec6c96df3dbf4a01a535112a080112816ae04371a654c5a37fda0f0d8313cd07588ca47e561cc5819008410baf7f6496dc34fd2817d4d444a820059500f5c0bd704da98b46ffd9f3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ef6c96d07abe9403aa681fa504008940b371b7ee36fa98b46fdd0f0d830b6d07588ba47e561cc581d136fb2c8b6496dc34fd282714ca3a941002ca816ae00171b7d4c5a37fdcf6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f26c96e4593e94038a65b6a504008940b5700ddc0b4a62d1bfe00f0d831044cf588ca47e561cc5802265969b69ef6496df697e94138a681d8a080165403b71a76e36da98b46fdff9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f56c96df3dbf4a01a535112a080112816ae083702f298b46ffe30f0d03393437588ca47e561cc5804e85971c65cf6496c361be940b2a6e2d6a08016540b7704fdc132a62d1bfe2408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f96c96df3dbf4a01a535112a080112816ae34ddc0b6a62d1bfe70f0d830bcd39588ca47e561cc5804fbc1640107f6496d07abe940b4a6a22541002ca816ae36ddc65d53168dfe6c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96dc34fd282754d444a820044a05ab8176e34153168dffeb0f0d83105c73588ca47e561cc5819036071a71cf6496df697e941094d444a820059502ddc659b81694c5a37f6196dc34fd280654d27eea0801128166e322b80794c5a37fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26c96df3dbf4a01a535112a0801128166e34f5c6dd53168dfef0f0d8365f71a588ca47e561cc5819085c0b6ebff6496e4593e94640a6a22541002ca806ee321b8d3aa62d1bfc1c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96df3dbf4a01a535112a0801128166e34cdc644a62d1bff20f0d8369c6d9588ca47e561cc5819036db8e845f6496e4593e94132a6a22541002ca806ee320b8d014c5a37fc4cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c85a839bd9ab6c96df697e940854dc5ad410022502f5c68571b0a98b46ff5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d84642d3ae7588ca47e561cc5804e3eeb6d34d76496e4593e940854dc5ad41002ca817ae342b8d854c5a37ff6d17b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cec36c96dc34fd281754be522820042a05db816ae34da98b46ffc20f0d840842f07fbf588ca47e561cc5802fb4fb8d89ef6496d07abe940baa65b6a50400b2a01bb816ae05b53168dffad5">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88d16c96df3dbf4a01a535112a080112816ae05fb8cb2a62d1bf5f88352398ac74acb37f0f0d836db781588ca47e561cc58190b6cb6e381f6496dd6d5f4a0195349fba820059502cdc139704f298b46f6196dc34fd280654d27eea0801128166e322b80754c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c34085b283cc693fa4adaaeb9e4a3c11566fbfde8f94ceabb8631c8abb85d0b4b059191c75e1caf0160790b41f5886a8eb10649cbf4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f9ce0f0d033930336196dc34fd280654d27eea0801128166e322b80794c5a37f6401300f28ff1ec7be00b2d85f69f6c416de02a01042d89f540d09e75e75c540e09c0b2d36a819085b13ca81a13ce3c26550382700d34caa064216c4eaa0684f38f002a81c10197c0f2a008596c2fb4fb62744e3ea804fbc1540d2c1540e015032fbc0540d2c1540e015032fbafaa06960aa0700a81971e795034b0550380540c89b6d5034b0550380fb52f9e919aa82919aa5cb18fd589a5721e9fb5358d33c0c589a7f5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b807d4c5a37f6496d07abe940baa5f291410022502e5c6817197d4c5a37f6c96e4593e940814cb6d4a08007d40b971b7ae36e298b46f5f87352398ac5754df52848fd24a8f0f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f768dd06258741e54ad9326e61c5c1f0f0d83085c0f588ba47e561cc581979e780007">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46496e4593e9413ca693f750400894037700e5c132a62d1bf6c96dc34fd281714d03f4a08007d4006e05cb800298b46ff5f87352398ac4c697fc3c2c10f0d83085e070f1390fe40d3ce3524a46646c8f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"880f0d023636be6c96c361be940bea65b6a504003ea05db8d82e32253168dfc40f138ffe40e351bce81c94247c371c785fcfc3c86496dc34fd282754d444a820044a01eb827ee34053168dffd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96496df3dbf4a05952f948a080112817ee32ddc69c53168df6c96df3dbf4a05d5340ec50400854106e01fb800a98b46ffc8c7c6c50f0d840b2e859f0f138ffe4118e4688124ae11e0dc71e17f3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3cd6c96df697e940b4a612c6a080112807ae00171a754c5a37f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d846d903ef7588ca47e561cc5804d36e01f08bf6496e4593e940b4a436cca0801654102e0017197d4c5a37f6196dc34fd280654d27eea0801128166e322b80754c5a37f408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55a839bd9ab6c96dd6d5f4a09e535112a0801128266e34e5c0b6a62d1bfc50f0d8413a203ff588ca47e561cc5819081b69a69ef6496d07abe9413ca6a22541002ca8266e34e5c0b6a62d1bfc4c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f87497ca589d34d1f0f0d03333937c36196dc34fd280654d27eea0801128166e322b810298b46ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"397">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:32:10 GMT">>} +] +}, +{ +undefined, +<<"88be6496dc34fd2816d4be522820044a01fb8db9704f298b46ff6c96dc34fd28171486d9941000ca8205c685704ea98b46ff5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d023439">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46c96d07abe9403ca681d8a080102817ee322b8cb6a62d1bfc2c1c00f0d03313436">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d36c96d07abe941094d444a820044a0817197ae36da98b46ff5f88352398ac74acb37f0f0d830be17b588ca47e561cc5819001b0b2107f6496df3dbf4a05d535112a080165403f700edc0baa62d1bfd2d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66c96df3dbf4a002a693f7504008940bd7000b8cb2a62d1bf6196c361be940094d27eea080112817ae045700ea98b46ff6496dc34fd280654d27eea080112817ae045700ea98b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d84138f041f408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f558471f700cf5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96d07abe941094d444a820044a099b806ae044a62d1bff5f89352398ac7958c43d5f0f0d83085b076196dc34fd280654d27eea0801128166e322b810a98b46ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b811298b46ff6496d07abe94138a693f750400894002e09fb82694c5a37f6c96c361be940bca681d8a08006d4133700cdc6da53168df5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d8213800f1390fe40d3ce3524a46646c8f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c46496df697e940854be522820044a08171a6ee34f298b46ff6c96c361be9413aa436cca0801028005c10ae36ca98b46ffc3c20f1390fe5e005e66491c7a31c8490371d103f9c1c00f0d03333636">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66c96c361be940bca681d8a08006d4133700d5c65f53168dfc4c3c20f0d820ba20f1390fe5e015928de23e38c9206e38cbffcff6496df697e94038a693f7504008940b971b76e09e53168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f28bba2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645702253168dff6a6b1a678185885aec3771a4b4085aec1cd48ff86a8eb10649cbf5a839bd9ab5f91497ca589d34d1f649c7620a98386fc2b3d0f0d847c0f89bfcdcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6496df3dbf4a05952f948a080112817ee00171a0298b46ff6c96df3dbf4a01f53716b504008140bb7190dc640a62d1bfd254012ac95f88352398ac74acb37f0f0d84085b035f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1c2c1768c86b19272ad78fe8e92b015c3c1ccc00f0d84085b035fbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be6c96df3dbf4a05e535112a0801128215c69cb8d3ea62d1bfc10f0d8365f705588ca47e561cc5804f81c7997def6496dd6d5f4a01c535112a0801654002e01bb8c814c5a37f6196dc34fd280654d27eea0801128166e322b811298b46ffc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26c96e4593e94642a6a225410022502edc6d9b8d814c5a37fc50f0d8369c741588ca47e561cc5819089d700dbdf6496df3dbf4a321535112a08016540b3702fdc6c0a62d1bfc1c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96df3dbf4a042a6a2254100225001b8d8ae36da98b46ffc80f0d836dc75f588ca47e561cc5804f3ccb40685f6496df3dbf4a019535112a080165403971b7ee32d298b46fc4c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86c96e4593e94136a65b6850400894102e360b8d054c5a37fcb0f0d8365f13f588ca47e561cc5802ebeebcf81af6497df3dbf4a3205340fd2820059502ddc681719714c5a37ffc7cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6c96d07abe94038a436cca0801128072e059b82794c5a37fce0f0d83134eb3588ca47e561cc58042032e3aebdf6496df697e940b8a65b6850400b2a05ab8d86e36053168dfcacf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6c96d07abe9413aa6e2d6a080102807ee01db82694c5a37f5f90497ca582211f649c7620a98386fc2b3d5b842d4b70dd5a839bd9ab0f0d83702e8b7b8b84842d695b05443c86aa6f5892aec3771a4bf4a523f2b0e62c0c85b65c00016496dd6d5f4a0195349fba820059502cdc645702253168dfd1408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3c36c96c361be940b8a681d8a0801128005c681704ca98b46ff5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d846c4fb60f588ca47e561cc5804e882279f17f6496dc34fd281694dc5ad41002ca8115c681704d298b46ff6196dc34fd280654d27eea0801128166e322b811298b46ffc4c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96dd6d5f4a09d5340fd2820044a045704e5c0bca62d1bf5f88352398ac74acb37f0f0d83702e33588ca47e561cc5802ebed05b65bf6497df3dbf4a3205340fd2820059500ddc0bb71a754c5a37ffc2c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96d07abe940b2a436cca0801128072e362b8cb6a62d1bfc10f0d8369b139588ca47e561cc5804d34fbcf881f6496e4593e940b4a436cca080165400ae34edc65953168df6196dc34fd280654d27eea0801128166e322b81654c5a37fcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6c96d07abe9413aa6e2d6a080102807ee01db82694c5a37fcad2d0d10f0d8469e7c4d75892aed8e8313e94a47e561cc58190b6cb80003fcfc8ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b81694c5a37f6496d07abe940baa5f291410022502e5c6817197d4c5a37f6c96e4593e940bea6a2254100215000b8d3d702fa98b46ff5f87352398ac5754df52848fd24a8f0f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f768dd06258741e54ad9326e61c5c1f0f0d03323735588ba47e561cc581979e780007">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d83085a6fc16c96df697e940b6a612c6a08010a8176e32e5c0854c5a37fc10f1391fe5e046ec8391b65c24848c371e6dafe7fc0c56497dd6d5f4a09b5349fba820044a099b8d3971b6d4c5a37ff408721eaa8a4498f5788ea52d6b0e83772ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76496dd6d5f4a01a5349fba820044a01ab8dbf704da98b46f6c96e4593e940094c258d410021502fdc699b81754c5a37f5f87352398ac4c697fc60f1390fe5e005e66491c7a31c8490371d103f9c5c40f0d8365b69c">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca6496df3dbf4a09d53716b50400894133702ddc680a62d1bf6c96c361be941054ca3a94100215040b8d8ae36253168dffc0c8c7c60f0d837196850f1390fe4031baf0a31c91be48c371c785fcffc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96df3dbf4a01f53716b5040081403371a05c1014c5a37fcac9c80f0d84081e7dcf0f1390fe5e015928de23e38c9206e38cbffcff6496dd6d5f4a05c52f948a080112806ee34d5c65e53168dfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6497dd6d5f4a09b5349fba820044a099b8d3971b754c5a37ff6c96c361be941094cb6d4a0801128215c03f704153168dffcdcccbca0f0d846df742ff0f1390fe40d3ce3524a46646c8f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d0becdcccb0f0d846df742ffbfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c34085b283cc693faaadaa9570165bd25b64a3c11566fbfdd3f29438eaee0a46d566f2ace07560b23238ebc47da65607908daf588caec3771a4bf4a547588324e54085aec1cd48ff86a8eb10649cbf5f87497ca58e883d5f798624f6d5d4b27f6196dc34fd280654d27eea0801128166e322b81694c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c40f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645702e298b46ffb5358d33c0c7f5885aec3771a4bc25a839bd9ab5f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e0f0d84780069cf6196dc34fd280654d27eea0801128166e322b816d4c5a37f6c96d07abe941094d444a820044a099b806ae044a62d1bff40884d83a903224c7abfcab7aaf67fb700ec7ffdfffa8fada4a64c922984d5486aa6d761e4b489eed7d6da0f364914adaae937855c0744c6faace1b7aaf62a2bae01d8d57702ae010b059191c75e24627560798ddf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b81714c5a37f6496d07abe940baa5f291410022502cdc69cb8db4a62d1bf6c96df3dbf4a01f53716b504008140bb7190dc640a62d1bfcd54012a588ba47e561cc581979e7800075f88352398ac74acb37f0f0d03373339408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46496df3dbf4a084a693f7504008940b5702fdc682a62d1bf6c96dc34fd28265486bb1410021500fdc65db8d014c5a37f768c86b19272ad78fe8e92b015c3c4c3c20f0d830b8d3fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76496dd6d5f4a01a5349fba820044a01cb8105c13aa62d1bf6c96c361be940bca681d8a08006d41337001b80694c5a37f5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1fc80f0d033133340f138ffe40ebcd89b214442361b8dbce7f3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cc6496c361be940b4a5f291410022500ddc03d702ca98b46ff6c96c361be941054d444a82001b502f5c69db8d014c5a37fc2c10f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7fc00f0d821321ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6496dd6d5f4a01f52f948a0801128072e362b81794c5a37f6c96df697e94038a6e2d6a08006d40bf71976e34e298b46fc4c30f1390fe5e005e66491c7a31c8490371d103f9c2cc0f0d03363433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06496c361be94138a6a225410022500d5c699b8c854c5a37f6c96df3dbf4a01c535112a08006d4106e09fb81694c5a37fc6c5c4ce0f0d033336390f1390fe4031baf0a31c91be48c371c785fcffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d03313939c66c96c361be941054d444a82001b502f5c69db8d094c5a37fc60f1391fe5e046ec8391b65c24848c371e6dafe7fc56196dc34fd280654d27eea0801128166e322b81714c5a37f6497dd6d5f4a09b5349fba820044a099b8d3971b6d4c5a37ffcfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf6c96e4593e94034a681d8a08007d40337022b8c814c5a37f5f87352398ac5754dfcac90f0d83132f3d0f1390fe5e015928de23e38c9206e38cbffcff6496dd6d5f4a05c52f948a080112806ee34d5c65e53168df588ba47e561cc581979e780007">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36496d07abe940bea693f75040089410ae08171a714c5a37f6c96df3dbf4a01f53716b504008140bb7190dc640a62d1bf768c86b19272ad78fe8e92b015c3c15f88352398ac74acb37f0f0d830ba167">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76496dd6d5f4a042a693f75040089403971a05c1054c5a37f6c96df3dbf4a01f53716b504008140bb71905c65e53168dfc154012ac5c10f0d830b2f3f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6496d07abe94138a693f7504008940357190dc684a62d1bf6c96c361be940bca681d8a08006d4133700d5c65a53168df5f87352398ac4c697f52848fd24a8f0f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7f768dd06258741e54ad9326e61c5c1f0f0d820b41cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d06497dd6d5f4a09b5349fba820044a099b8d3971b714c5a37ff6c96c361be940bca681d8a08006d4133700ddc0854c5a37fc2c1c0cd0f0d033133360f138ffe5e00e47a32ca51108d86e3c56bf9c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d26496df3dbf4a09f5349fba820044a05cb8cbf704153168df6c96df697e94009486d99410021500edc6dbb807d4c5a37fcccfcb0f0d8371c6c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b81714c5a37f6496df3dbf4a01c52f948a080112807ee342b810a98b46ff6c96d07abe9413ca681d8a08010a816ae36ddc6df53168dfcfcbd2ce0f0d840b2f09bfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b820a98b46ff6c96dc34fd28171486d9941000ca8205c685704da98b46ffc9c8c70f0d0234396497dd6d5f4a09b5349fba820044a099b8d3971b754c5a37ff588ba47e561cc581979e780007">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28baa2d275f4fc017db7de7c1f77cf48cd540b9631fa5c87a7ef079acd615106f9edfa50025b49fbac2005d502cdc645704153168dff7ac699e0614f5885aec3771a4b4085aec1cd48ff86a8eb10649cbf5a839bd9ab5f91497ca589d34d1f649c7620a98386fc2b3d0f0d84780069cfc66c96d07abe941094d444a820044a099b806ae044a62d1bff40884d83a903224c7abfcab7aaf67fb700ec7ffdfffa8fada4a64c922984d5486aa6d761e4b489eed7d6da0f364914adaae937855c0744c6faace1b7aaf62a2bae01d8d57702ae010b059191c75e24627560798ddf4085b283cc693fa44b96d04afa762747d5670dbd55700191d14aa8ae844ab808d60b23238ebc503e5581e4805b842d4b70dd798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6496dd6d5f4a05e5349fba820044a085704f5c034a62d1bf6c96df3dbf4a01a535112a0800754106e34d5c65f53168df5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1fcd0f0d83642ebf0f138ffe40ebcd89b214442361b8dbce7f3f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d06c96c361be9413aa436cca0801028005c10ae34f298b46ffc1c0bf0f0d033339316496dc34fd280654d27eea080112816ee059b821298b46ffcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b820a98b46ff6c96c361be940bca681d8a08006d4133700ddc0854c5a37fc4c3c20f0d03313336">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf6c96df3dbf4a01c53716b504003aa0017021b8d3aa62d1bfc5c4c30f0d03353432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c06497dd6d5f4a09b5349fba820044a099b8d3971b6d4c5a37ff6c96df3dbf4a01c532db4282001c5000b8076e000a62d1bfc7c60f138ffe403185b08df00c0470371b28bf9fc5588ba47e561cc581979e7800070f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b821298b46ff6c96df697e94134a681fa5040085410ae32cdc682a62d1bfcac9c80f0d830b2d87c6c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56c96df3dbf4a01c53716b504003aa0017041b8c854c5a37fcbca0f1390fe5e04ae8c124a18e5011d0dc6e30ff3c90f0d8371979c">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c35a839bd9ab6c96df3dbf4a09b535112a0801128266e321b8d3aa62d1bf5f90497ca582211f649c7620a98386fc2b3d0f0d83644eb9588ca47e561cc581903afb4cb8e76496c361be94136a6a22541002ca8266e321b8d3aa62d1bfcc408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c4c3c20f0d03363638c1c0cebfbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c46c96dc34fd281694cb6d0a0801128005c6c171a754c5a37fc30f0d023434588ca47e561cc58041782cb6073f6496dd6d5f4a05a532db428200595000b8d82e34ea98b46fd1c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16497dd6d5f4a09b5349fba820044a099b8d3971b714c5a37ff6c96df697e940094c258d410020502fdc69ab81694c5a37f5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1fd10f0d840b2f05df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96d07abe9413aa6e2d6a080102807ee01db82694c5a37fcb5b842216bdfbce0f0d83702e8bc85892aec3771a4bf4a523f2b0e62c0c85b65c00016496dd6d5f4a0195349fba820059502cdc645704153168df6196dc34fd280654d27eea0801128166e322b820a98b46ffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2d16c96c361be940094d27eea0801128066e09eb8c814c5a37fd00f0d8371c703588ca47e561cc58190b4165971ff6496dc34fd280129a4fdd41002ca8066e09eb8c814c5a37fc1cfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c35a839bd9ab6c96c361be94038a65b6850400894006e01eb8d34a62d1bf5f90497ca582211f649c7620a98386fc2b3d0f0d03333531d2588ca47e561cc58041089965d7bf6496dc34fd280714cb6d0a0801654006e01eb8cbea62d1bfc7408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46c96d07abe941094d444a820044a019b8076e32153168dff5f88352398ac74acb37f0f0d8369b6d9588ca47e561cc5804fbce38dbee76496df697e940b6a6a22541002ca806ee34f5c6dd53168dfccc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86c96dc34fd282129b8b5a820044a05fb8d86e32f298b46ffc10f0d8369c7da588ca47e561cc5804d32ebad805f6496d07abe94089486d9941002ca8176e01ab80654c5a37fcfc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6c96df697e94640a6a2254100225041b8d3d702da98b46ffc40f0d836d903b588ca47e561cc58190b4fbce819f6496dd6d5f4a0195349fba820059500cdc082e34d298b46fd2c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cecd6c96df3dbf4a09b535112a0801128266e322b806d4c5a37fcc0f0d8364016b588ca47e561cc581903afb4cb4cf6496c361be94136a6a22541002ca8266e321b82694c5a37f6196dc34fd280654d27eea0801128166e322b820a98b46ffcc7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b821298b46ff6496df697e940bca5f291410022502cdc645704253168dff6c96e4593e94642a6a225410022502edc6d9b8d054c5a37f768c86b19272ad78fe8e92b015c354012a588ba47e561cc581979e780007d10f0d840b6fbc1f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46496dd6d5f4a05e5349fba820044a085704f5c034a62d1bf6c96c361be94136a65b6a50400814006e09eb82794c5a37f5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1fc40f0d033537380f138ffe40471e7a371b0b448c371b79cfe7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c66c96d07abe9413aa6e2d6a080102807ee01db82694c5a37f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf5b84ad2b5ddbcd5a839bd9ab0f0d837dc79e5892aed8e8313e94a47e561cc58190b6cb80003f6496dd6d5f4a0195349fba820059502cdc645704153168dfd1c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf6c96df697e941014dc5ad410021504cdc6dfb8d3aa62d1bf5f87352398ac4c697fc7c60f0d830baf030f1390fe5e015928de23e38c9206e38cbffcff6496d07abe94138a693f750400894002e019b8d054c5a37fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf4085b283cc693fa3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301dad60b2fbed35295a7e3581e42eb96c96df3dbf4a099521b66504008940bb704d5c644a62d1bf4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f95f86497ca582211f0f0d8379d10b588ca47e561cc5804e32fbed3ad76496df3dbf4a01b53716b50400b2a00571a66e32e298b46f6196dc34fd280654d27eea0801128166e322b821298b46ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf6c96e4593e940894ca3a94100215040b8276e01f53168dff5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1f0f0d033334326496d07abe94138a693f7504008940b97196ee05f53168df588ba47e561cc581979e780007">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c56497dd6d5f4a09b5349fba820044a099b8d3971b6d4c5a37ff6c96e4593e940bea6a2254100215001b8176e34ea98b46ffc4c3c2c00f0d8371c6830f1390fe5e00e513e57e523d21081b8f15afe7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96e4593e940854cb6d0a080112817ae019b8cbaa62d1bf5f88352398ac74acb37f0f0d8313ad8b588ca47e561cc5802d380780077f6496dd6d5f4a082a435d8a08016540b7702fdc03ea62d1bfcccb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc6c96df697e9403aa65b68504003ea081702f5c684a62d1bf5f87352398ac4c697fcac90f0d03363133c8c70f138ffe40cc820cad025948f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c45a839bd9ab6c96df3dbf4a044a65b685040089410ae34d5c13ca62d1bf5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d03353531588ca47e561cc58041742fb6273f6496c361be940894cb6d0a080165410ae34d5c13ca62d1bf6196dc34fd280654d27eea0801128166e322b821298b46ff408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c06496d07abe940baa5f2914100225040b8cbf719694c5a37f6c96df697e941014dc5ad4100215002b807ae080a62d1bff5f87352398ac5754df52848fd24a8f0f1390fe5e005e66491c7a31c8490371d103f9768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d840bae3acf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d24085b283cc693fa64b96d04afa762747d5670dbd55700191d14aa8aeb4ab80666582c8c8e3af15a944b03c840d7f0f28fca8f520a8418f5417a686fe7861c3b28ddaedd1b2fe686f5dfdff7e5ba79fbe6ceac5c01cfdcde740b078e7bf8d1a69d0d7edffde9aafec17ed3fb4eac5cfdf3e946bb3cdbb7eef9e919aa817b075a4f62e58c7ea42a08b90f4fde0f359ac2a20dd6d5f4a0195b49fbac20059502cdc645704253168dff7ac699e0614cc5885aec3771a4b4085aec1cd48ff86a8eb10649cbf5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd798624f6d5d4b27fcc">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588768c86b19272ad78fe8e92b015c3d26c96c361be940094d27eea0801128005c033704053168dffd10f0d846da642cf588ca47e561cc58190b40081c77f6496dc34fd280129a4fdd41002ca8005c033704fa98b46ffd0cfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1d56c96c361be940094d27eea0801128005c03371b1298b46ffd40f0d84101d007f588ca47e561cc58190b40081f67f6496dc34fd280129a4fdd41002ca8005c03371b6d4c5a37fd3d2d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c47f0ba6adaaeb9e4a3c11566fbfdcbf29544f3ad3aab802aaee05598560b23238ebc56c4cac0f216c9f5886a8eb10649cbf4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f9d90f0d8365b75dd66401300f28ff9501c7be00b2d85f69f6c416de02a01042d89f540d09e75e75c540e09c0b2d36a819085b13ca81a13ce3c26550382700d34caa064216c4eaa0684f38f002a81c10197c0f2a008596c2fb4fb62744e3ea804fbc1540d2c1540e015032fbc0540d2c1540e015032fbafaa06960aa0700a81971e795034b0550380540c89b6d5034b055038054010b2d85f69f6da0bae015008216dd6d5034b0550380540c85b13aa81a582a81c02a065e13ea81a582a81c02a065f0895034b0550380540cbc2755034b0550380540cbceb8a81a582a81c02a065e136a81a582a81c02a065a659540d2c1540e015032171b0aa06960aa0700a8190b8d815034b0550380fb52f9e919aa82919aa5cb18fd589a5721e9fb5358d33c0c589a7dc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8dc6c96d07abe9413ea6a2254100225041b8266e34f298b46ffdb0f0d836c2cbd588ca47e561cc581908591084fff6496df697e9413ea6a22541002ca820dc10ae36253168dff6196dc34fd280654d27eea0801128166e322b82654c5a37fdad9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be6c96df3dbf4a01a535112a0800754106e34d5c65f53168dfe2d6d50f0d83642ebf6496c361be940b4a5f2914100225040b8066e05b53168dffd50f138ffe40cc820cad025948f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88ce0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645704ca98b46ffb5358d33c0c7fd3d2e25f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e0f0d8374006bc16c96d07abe941094d444a820044a099b806ae044a62d1bff40884d83a903224c7abfcab7aaf67fb700ec7ffdfffa8fada4a64c922984d5486aa6d761e4b489eed7d6da0f364914adaae937855c0744c6faace1b7aaf62a2bae01d8d57702ae010b059191c75e24627560798ddf7f0ba44b96d04afa762747d5670dbd55700191d14aa8ae844ab808d60b23238ebc503e5581e480d4d3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46496dd6d5f4a09b5349fba820044a099b8d3b700053168df6c96c361be9413aa436cca0801028005c10ae36d298b46ff5f87352398ac4c697fdedddc0f0d033336360f1390fe5e00e513e57e523d21081b8f15afe7e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8bc76496c361be94138a6a225410022500d5c699b8c854c5a37f6c96df3dbf4a01c535112a08006d4106e09fb81694c5a37fc0e00f1391fe5e04b1b8f95d65c71a2321b8e4a5fe7fdf0f0d820b41dee5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96d07abe94136a65b685040036a0817190dc69953168dfc1e1e00f0d0236346497dd6d5f4a09b5349fba820044a099b8d3971b7d4c5a37ffe00f138ffe40cc820cad025948f86e37187f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88cb6496dd6d5f4a05e5349fba820044a085704f5c034a62d1bf6c96df697e94136a6e2d6a080112806ee05cb81794c5a37f5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d8375c1330f138ffe40471e7a371b0b448c371b79cfe7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88df5a839bd9ab6c96c361be940bea6a2254100225042b8d8ae32253168dff5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d03393439588ca47e561cc5819009d65c083f6496dc34fd2817d4d444a8200595042b8d8ae32253168dff6196dc34fd280654d27eea0801128166e322b821298b46ff408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f911d75d0620d263d4c795ba0fb8d04b0d5a76c96df697e940bea65b6a50400894037700f5c684a62d1bfcac9c70f0d83081c7fc0588ca47e561cc5802fb8e8190bdf6496e4593e940bea65b6a50400b2a01bb8c86e002a62d1bfddc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3ca6c96df3dbf4a09b535112a0801128066e05ab82654c5a37fc90f0d8371f643588ca47e561cc581903a20b217ff6496c361be94136a6a22541002ca8066e05ab821298b46ffe1c7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c14083b283cd9cb6755c074eaab37dfefd3e52871d5c4165972612c1646471d78a595e408df2b1631fa5ac2f6b4a84ac693fb70b23238ebc558b2bc0586d8c8b01d700b104e02594206a364bfc0fa0fcae3a285e62a7f808177c0b85f12e10bdfc1631fa5c87a7ff7ffc5f8b1d75d0620d263d4c7441ea798624f6d5d4b27f6196dc34fd280654d27eea0801128166e322b82694c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b826d4c5a37fd96c96df3dbf4a01a535112a080112817ae36e5c65c53168dfdfd7d6d50f0d837db1070f138ffe40471e7a371b0b448c371b79cfe7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88c87f23abadaa9570165bd25b64a3c11566fbf6d4abb85a99c6d5700a89e6471aacdf582c8c8e3af1657c2b03c85f27588caec3771a4bf4a547588324e54085aec1cd48ff86a8eb10649cbf5f87497ca58e883d5fc5c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc6457190298b46ffb5358d33c0c7f5885aec3771a4bc0d95f91497ca589d34d1f649c7620a98386fc2b3d0f0d847c0265bf6196dc34fd280654d27eea0801128166e322b8c814c5a37f6c96d07abe941094d444a820044a099b806ae044a62d1bff40884d83a903224c7abfcab7aaf67fb700ec7ffdfffa8fada4a64c922984d5486aa6d761e4b489eed7d6da0f364914adaae937855c0744c6faace1b7aaf62a2bae01d8d57702ae010b059191c75e24627560798ddf7f07a44b96d04afa762747d5670dbd55700191d14aa8ae844ab808d60b23238ebc503e5581e4805b842d4b70ddcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b6196dc34fd280654d27eea0801128166e322b8c854c5a37f6496df3dbf4a09d53716b50400894133702ddc680a62d1bf6c96c361be941054ca3a94100215040b8d8ae36253168dff5f87352398ac4c697f52848fd24a8f768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d033336360f1390fe4031baf0a31c91be48c371c785fcffe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc6457191298b46ffb5358d33c0c7fcbcd5a839bd9ab5f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e0f0d8478006c1fc6ca7f0ac7b7aaf67fb700ec7ffd98ff5b494c99245309aa90d54daec3c96913ddafadb41e6c92295b55d26f0ab80e898df559c36f55ec54575c03b1aaee098eb059191c75f00c60581e6373c9c8d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b6196dc34fd280654d27eea0801128166e322b8c894c5a37f6496c361be94138a6a225410022500d5c699b8c854c5a37f6c96df3dbf4a01c535112a08006d4106e09fb81694c5a37fc7c6c5c40f0d033336360f1390fe4031baf0a31c91be48c371c785fcff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c16496c361be940b4a5f291410022502cdc659b80654c5a37f6c96e4593e940094d03f4a0801128266e01fb827d4c5a37fe3c75f88352398ac74acb37f0f0d830b6d35">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e47f11a9adaa9570165bd25b64a3c11566fbf6d4abb85a99c6d5700a89e204b32c1646471d7c20902b03c85d7fd9d8ccdec50f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96df697e9413ea681fa50400894106e32cdc65a53168dfc10f0d8369f03d588ba47e561cc581e640dbc26b6496df3dbf4a01d53096350400b2a05cb8d0ae36ea98b46f6196dc34fd280654d27eea0801128166e322b8cb2a62d1bfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645719714c5a37fda9ac699e063fdbddcdda0f0d847c21641f6196dc34fd280654d27eea0801128166e322b8cb8a62d1bfd9ccd7d6e4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b6196dc34fd280654d27eea0801128166e322b8cbaa62d1bfd5d4d3d2d1d00f0d033336360f1390fe4031baf0a31c91be48c371c785fcffc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c40f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc645719754c5a37fda9ac699e063fdddfcfce0f0d847800701fbeda7f0ec6eea2f67fb702e4824dbf5b494c99245309aa90d54daec3c96913ddafadb41e6c92295b55d26f0ab80e898df559c3dd5770af62a2bae05c9049b560b23238ebe19657d60798c9d9d8798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b6196dc34fd280654d27eea0801128166e322b8cbca62d1bfcecdd6d5d4d30f0d033336360f1390fe4031baf0a31c91be48c371c785fcffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96d07abe9413aa6e2d6a080102807ee01db82694c5a37f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bfdcd40f0d83089f077b8b84842d695b05443c86aa6f5892aec3771a4bf4a523f2b0e62c0c85b65c00016497dd6d5f4a0195349fba820059502cdc6457197d4c5a37ff6196dc34fd280654d27eea0801128166e322b8cbea62d1bfd2408a224a7aaa4ad416a9933f8369b79e">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce7f10aaadaa9570165bd25b64a3c11566fbf6d4abb85a99c715700a89e664640b059191c75f13d21160790beeff588caec3771a4bf4a547588324e54085aec1cd48ff86a8eb10649cbfe0c9c20f0d0234320f28faaab31a08d335a6918238ebcf332842c8c036dc7dc68ae34e11c96518c23205b13ae36075efff0935a6918238ebcf364702c8c0300df95c6dc7a30b92cadbe174a56c4eb8d81d7bffcfb52f9e919aa8172c63f4b90f4fda983cd66b0a88375b57d280656d27eeb08016540b371915c680a62d1bfed4d634cf031f4003703370d2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a437f40d4bf8388d4d7baf9d4d7ba11a9ab86d53743a0ea64d37d4e1a72297b568534c3c54c9a77a9bb7c2a5fc1a14d7b707f3">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d20f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc6457197d4c5a37fda9ac699e063f5885aec3771a4bc0de5f91497ca589d34d1f649c7620a98386fc2b3d0f0d847c2171bfc56c96d07abe941094d444a820044a099b806ae044a62d1bffce7f05a44b96d04afa762747d5670dbd55700191d14aa8ae844ab808d60b23238ebc503e5581e4805b842d4b70ddcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d77f00aaadaa9570165bd25b64a3c11566fbf6d4abb85a99c6d5700a89e6db6e5582c8c8e3af8a40b6b03c85e93fc6c55f87352398ac4c697fd16196dc34fd280654d27eea0801128166e322b8d054c5a37f0f0d0234320f28faaab31a08c935a6918238ebcf364702c8c0300df95c6dc7a30b92cadbe174a56c4eb8d81d7fffc4cd69a4608e3af3ccca10b2300db71f71a2b8d384725946308c816c4eb8d81d7fffcfb52f9e919aa8172c63f4b90f4fda983cd66b0a88375b57d280656d27eeb08016540b371915c682a62d1bfed4d634cf031fc6">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"48826401db0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc64571a1298b46ffb5358d33c0c7fc6c80f1f9e9d29aee30c78f1e172c63f4b90f4b128d1398f531394742675a328ed4faf7f02a2adaae937855c0744c6faace1eeabb857f0422ae0249dd12acde582c8c8e3afb2d0050f0d01306196dc34fd280654d27eea0801128166e322b8d094c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd0f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc64571a654c5a37fda9ac699e063f5886a8eb10649cbfcb5a839bd9abc90f0d84089d7c5f6196dc34fd280654d27eea0801128166e322b8d32a62d1bfc9d97f03a8adab557009474966eb5ca6b65559c2ab3793d9513ddbb2f22ae01b995700db2b059191c75f659724c8d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf6497dd6d5f4a09b5349fba820044a099b8d3b71a6d4c5a37ff6c96df3dbf4a01b532db42820044a05eb8d33702f298b46f5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1f588ba47e561cc581979e7800070f0d83134e3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96df3dbf4a09a5340fd2820044a05cb8215c13aa62d1bf5f88352398ac74acb37f0f0d836de6c1588ca47e561cc58190b607df6dcf6497dd6d5f4a0195349fba820059500e5c0bd7197d4c5a37ffca408721eaa8a4498f5788ea52d6b0e83772ff54012a">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88c4e45f90497ca582211f649c7620a98386fc2b3dd6ce0f0d836dc75fe35892aed8e8313e94a47e561cc58190b6cb80003f6497dd6d5f4a0195349fba820059502cdc64571a654c5a37ffcfc2e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96dc34fd282754d444a820044a05bb8db571b694c5a37fc60f0d8371910b588ca47e561cc58190b62105f77f6496dd6d5f4a0195349fba820059500fdc68571a0298b46fd2c5c4">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88ca7f12a3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301da960b23191f8df23a0581e42eb9f6c96e4593e94134a6a2254100225042b827ee05f53168dff7f23c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f95f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d821360588ca47e561cc581908402036cff6496df697e9413ea6a22541002ca8166e001702e298b46ffd8cbd97b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16c96d07abe94138a5f291410021502edc659b826d4c5a37fd00f0d836df003588ca47e561cc58190b6069e0b9f6497dd6d5f4a0195349fba820059500d5c6c571b7d4c5a37ffdccfce">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88d46c96d07abe9413ea6a225410022502ddc64571b794c5a37fd30f0d8365f6d9588ca47e561cc58190b610bc16ff6497dd6d5f4a0195349fba820059500e5c69fb8cbca62d1bffdfd2d1">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88d76c96c361be940894d444a820044a05db8cbb700f298b46ffd60f0d8369a0bd588ca47e561cc5804fb8265c7c5f6496dc34fd281129a88950400b2a0417040b8db6a62d1bffe2d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96d07abe9413aa6e2d6a080102807ee01db82694c5a37f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf5b842d4b70ddca5a839bd9ab0f0d840800fbdf5892aec3771a4bf4a523f2b0e62c0c85b65c0001d66196dc34fd280654d27eea0801128166e322b8d32a62d1bfdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be6c96df697e9403aa436cca080112820dc006e09b53168dffe5e40f1390fe5e034065f216495d689206e38067f9e30f0d850859138e7f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e16c96df697e9403aa436cca080112806ee09fb8db6a62d1bfe00f0d83759683588ca47e561cc5802fb2f3816ddf6496dc34fd2816d4cb6d4a080165410ae32ddc1014c5a37fc2dfde">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88e46c96df697e94132a6a2254100225041b8dbb702da98b46ffe30f0d8375a705588ca47e561cc58190b6079b65af6497dd6d5f4a0195349fba820059500ddc6dab8dbaa62d1bffc5e2e1">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96d07abe9413ea6a2254100225002b8cbf704e298b46ff5f88352398ac74acb37f0f0d840800f83f588ca47e561cc58190b600b217bf6497dd6d5f4a0195349fba820059500cdc6dab8d054c5a37ffca408721eaa8a4498f5788ea52d6b0e83772ff54012a">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88c4ce6c96df697e940b8a6a225410022502fdc64571a6d4c5a37f5f90497ca582211f649c7620a98386fc2b3d0f0d8371975d588ba47e561cc58190000268026496e4593e940b8a6a22541002ca817ee322b8d36a62d1bfd0c3df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c86c96df697e9413ea681fa504008940bf71a05c03aa62d1bfc70f0d8369a79e588ba47e561cc581d138065f6f6496dc34fd282714ca3a941002ca816ae05fb81794c5a37fd3c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb6c96c361be941014cb6d0a0801128266e09fb8cbca62d1bfca0f0d8369e79f588ca47e561cc5802fbe079a103f6496c361be941054cb6d4a08016541337197ee34ca98b46fd6c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce6c96df697e9403ea6a225410022502d5c00ae05d53168dffcd0f0d8365c65e588ca47e561cc5804f36075e781f6496dd6d5f4a09f53716b50400b2a045704d5c032a62d1bfd9cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d16c96df697e940094d444a820044a05eb8015c03ca62d1bffd00f0d836d96dc588ca47e561cc5804f85f79f7dbf6496d07abe9403aa6a22541002ca8115c10ae32f298b46ffdccfce">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88d46c96df3dbf4a044a65b6850400894006e36e5c038a62d1bfd30f0d8369c03b588ca47e561cc5804069913e06ff6496c361be9413ca65b6a50400b2a0037041b80794c5a37fdfd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d76c96d07abe94132a65b68504008940b9702f5c03ca62d1bfd60f0d836c227b588ca47e561cc5804cbacbceb40f6496d07abe94036a436cca080165403b7197ae09953168dfe2d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88da6c96d07abe9413ea6a225410022502e5c69ab8cb6a62d1bfd90f0d8375e7c5588ca47e561cc58190b6cb4ebeff6496dd6d5f4a0195349fba820059502cdc08ae34253168dfe5d8d7">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88dd6c96df697e940b8a6a225410022500cdc659b82654c5a37fdc0f0d83684cb5588ca47e561cc5804fba271a79ef6496dd6d5f4a059535112a08016540b571b6ae042a62d1bf6196dc34fd280654d27eea0801128166e322b8d32a62d1bfdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e16c96d07abe94101486d994100225040b8272e34fa98b46ffe00f0d8364020f588ca47e561cc5804e080d32d8bf6496d07abe940094dc5ad41002ca8205c64371b6d4c5a37fc1df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e46c96c361be9413ca6e2d6a080112816ee085704da98b46ffe30f0d8369f0bf588ca47e561cc581903a17dc79ff6496c361be94136a6a22541002ca8015c69db8c894c5a37fc4e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c36c96dd6d5f4a084a65b68504008940bd702cdc136a62d1bf5f88352398ac74acb37f0f0d8369d79e588ca47e561cc580407990b816ff6496df697e940094cb6d0a08016540b9700e5c0bea62d1bf6196dc34fd280654d27eea0801128166e322b8d34a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c46c96c361be94038a65b6850400894102e05bb82794c5a37fc30f0d8365f79d588ca47e561cc5802ebceb2fb20f6496e4593e9413ea681fa50400b2a0417190dc65a53168dfc2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c76c96df3dbf4a05c521b66504008940b571b66e002a62d1bfc60f0d8369c133588ca47e561cc5804069d75c6dbf6497c361be9413ca65b6a50400b2a059b8d3971b7d4c5a37ffc5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca6c96c361be9413aa65b68504008940bb71b7ae01b53168dfc90f0d8369e107588ca47e561cc5804069f7dd65ef6496c361be9413ca65b6a50400b2a05fb8db7700253168dfc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd6c96c361be940b2a65b685040089403771976e09a53168dfcc0f0d836c0f03588ca47e561cc5802fbcf3a269bf6496c361be941054cb6d4a08016540bb71a72e34fa98b46fcbca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f911d75d0620d263d4c795ba0fb8d04b0d5a76c96c361be940094d27eea080112817ee00571b1298b46ff52848fd24a8f768dd06258741e54ad9326e61c5c1f5a839bd9ab0f0d840bcf38cf7b8b84842d695b05443c86aa6f588aa47e561cc581a03cd83f6496dd6d5f4a01a5349fba820044a00171b66e32ca98b46fdfd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d86c96df3dbf4a09d53716b504008940b3704d5c680a62d1bfd70f0d840800c83f588ca47e561cc58190b620b6217f6496dd6d5f4a0195349fba820059500fdc643704da98b46fe2d554012a">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88dc6c96d07abe940b8a65b685040089403b700d5c0bea62d1bfdb0f0d83719103588ca47e561cc5804cb2eb2269df6496df3dbf4a002a436cca080165400ae01cb8d854c5a37fdad9c1">>, +[ +{<<":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">>, <<"*">>} +] +}, +{ +undefined, +<<"88df4085b283cc693fa5adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1332abb802b0591b25944fbefbab03c85c93f6c96c361be94036a6a225410022500ddc0bb704153168dff4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f9e00f0d84700113bf588ca47e561cc5804f89c1082e7f6496df697e9403ca6a22541002ca806ee36e5c0bea62d1bf6196dc34fd280654d27eea0801128166e322b8d32a62d1bfdfcecd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e56c96df697e940814cb6d0a080112820dc13d71a714c5a37fe40f0d836df799588ca47e561cc5804cbacbcf89cf6496d07abe94036a436cca080165403b71a0dc13ea62d1bfc1e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3cb6c96dc34fd282754d444a820044a05ab8d86e32d298b46ff5f88352398ac74acb37f0f0d84085e7dbf588ca47e561cc58190b610000dff6496dd6d5f4a0195349fba820059500e5c0bf704f298b46fc6408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c36c96d07abe941094d444a820044a01eb8d39700da98b46ffc20f0d8375c75a588ca47e561cc5819089a6dd13bf6496df3dbf4a321535112a080165403571b6ae36053168dfcac1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c66c96e4593e9403ca436cca080112817ae08171a714c5a37fc50f0d84089d69af588ca47e561cc5804e32f3cf019f6496e4593e94034a6e2d6a080165413371a72e01c53168dfcdc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c96c96d07abe9413aa436cca080112817ee32f5c69953168dfc80f0d836de6c5588ca47e561cc5804eb2f34d362f6496d07abe940b8a6e2d6a080165408ae081702da98b46ffd0c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccd96c96df697e941094d27eea08010a817ae322b80754c5a37fcb0f0d83700173588ca47e561cc58190b606da685f6496dd6d5f4a0195349fba820059500ddc033704da98b46fd3ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf6c96dd6d5f4a09953716b50400894102e09db807d4c5a37fce0f0d8379d683588ca47e561cc5804f044f01f0ff6496e4593e94136a6e2d6a080165400ae36d5c0b4a62d1bfd6cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2df6c96df3dbf4a09b535112a080112817ae36cdc13ca62d1bfd10f0d836dd13b588ca47e561cc58190b6013a267f6496dd6d5f4a0195349fba820059500d5c0bd700e298b46fd9d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d55a839bd9ab6c96df697e940b8a6a225410022502fdc64571a714c5a37f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ec938ec4153070df8567bf0f0d846da682f7588ca47e561cc5819000026997ff6496e4593e940b8a6a22541002ca817ee32cdc1094c5a37fded57b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e322b8d34a62d1bf6c96df697e941094d03f4a080112817ee00571b654c5a37f5f87352398ac5754df52848fd24a8f768dd06258741e54ad9326e61c5c1f0f0d83109e7b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c26497dd6d5f4a09b5349fba820044a099b8d3971b714c5a37ff6c96e4593e94642a436cca08010a8005c65fb816d4c5a37fc2c1c0588ba47e561cc581979e7800070f0d836dd699">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e36c96dd6d5f4a05b532db42820044a01bb8272e09d53168dfe20f0d83702eb5588ca47e561cc58040700e05e0ff6496dd6d5f4a320532db528200595001b827ee01b53168dfc8e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e66c96dd6d5f4a09e535112a0801128205c0b371a0298b46ffe50f0d83782f0b588ca47e561cc581903c0138eb5f6496dc34fd282714d444a8200595001b8d82e32f298b46ffcbe4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c34085b283cc693fa3adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1301c6d60b2f8425209c8cab03c85c93f6c96e4593e9403ca436cca080112820dc685702fa98b46ff4003703370c7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f95f88352398ac74acb37f0f0d846de71973588ba47e561cc5804d08217c026496dc34fd2810290db32820059502fdc035704da98b46ff6196dc34fd280654d27eea0801128166e322b8d32a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d46c96e4593e94032a6a2254100225042b806ee36053168dffd3d20f1390fe5e034065f216495d689206e38067f9d10f0d847197c0ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c754012a6c96d07abe9413ea6a225410022502ddc6deb8d814c5a37fc50f0d840b2003df588ca47e561cc58190b6cb6f85ff6496dd6d5f4a0195349fba820059502cdc643704253168dfc4c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb7f0ba7adaa9570165bd25b64a3c11566fbfdd3f29438eaed15c940502c1646471d7d99596560790bf1ff588caec3771a4bf4a547588324e54085aec1cd48ff86a8eb10649cbf5f87352398ac4c697f798624f6d5d4b27f6196dc34fd280654d27eea0801128166e322b8d36a62d1bf0f0d0234320f28faaab31a08d335a6918238ebcf332842c8c036dc7dc68ae34e11c96518c23205b13ae360764fff0935a6918238ebcf364702c8c0300df95c6dc7a30b92cadbe174a56c4eb8d81d93ffcfb52f9e919aa8172c63f4b90f4fda983cd66b0a88375b57d280656d27eeb08016540b371915c69b53168dff6a6b1a67818f7f0fd2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a437f40d4bf8388d4d7baf9d4d7ba11a9ab86d53743a0ea64d37d4e1a72297b568534c3c54c9a77a9bb7c2a5fc1a14d7b707f3">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d27f05a5adaaeb9e4a3c11566fbf6aaee0f94aa279d6c1332abb84eb0591b4075d136d8960790b8fff6c96c361be94036a6a225410022500ddc0bf702d298b46ffd1d00f0d85085b79c6bf588ca47e561cc5804f89e75d6dff6496df697e9403ca6a22541002ca8166e005700253168dffcfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d8313a067e26c96e4593e9413ca681d8a0801128215c641702ca98b46ffe2e16196dc34fd280654d27eea0801128166e322b8d34a62d1bf6496df697e94640a6a225410022502fdc13b704fa98b46ffd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f28bca2d275f4fc017db7de7c1f6a5f3d2335502e58c7e9721e9fb53079acd615106f9edfa50025b49fbac2005d502cdc64571b794c5a37fda9ac699e063f5885aec3771a4bca5a839bd9ab5f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e0f0d84780071af6196dc34fd280654d27eea0801128166e322b8dbca62d1bf6c96d07abe941094d444a820044a099b806ae044a62d1bff40884d83a903224c7abfcab7aaf67fb700ec7ffdebff3eb692993248a6135521aa9b5d8792d227bb5f5b683cd92452b6aba4de15701d131beab386deabd8a8aeb8076355dc1d5576f2c1646471d7dc9647160792077f0ba8adab557009474966eb5ca6b65559c2ab3793d9513ddbb2f22ae01b995700db2b059191c75f6597245b842d4b70ddcf">>, +[ +{<<":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">>} +] +} +]}. +{story_26, [ +{ +undefined, +<<"8854012a0f0d826c425f87352398ac4c697f6c96df3dbf4a044a435d8a0801128066e019b820298b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb4088f2b4b1ad2163b66fa4c9c4ac6ef16932db7519d3c71f2cbe05af449ab7eaf36e0e5c0d63669b669df3f5df341f4087f2b12a291263d5842507417f5892aed8e8313e94a47e561cc5802e882e3ce3ff6496df697e941054d03f4a08016540bf702f5c65953168df6196dc34fd280654d27eea0801128115c6c171a694c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c75f91497ca582211f6a1271d882a60b532acf7f6c96df697e94134a435d8a0801128215c0b37196d4c5a37fc67f06a37db4f0f54c83930e791ebf5d343dc6ad47e189dcd3991abc7575acd2303c98a5e0083fc57b8b84842d695b05443c86aa6f5a839bd9ab0f0d8208995892aed8e8313e94a47e561cc5802e32fb4f841f6496dd6d5f4a044a681fa50400b2a01cb8dbf702d298b46fc6c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cec46c96dd6d5f4a09e535112a080112820dc65db8cb6a62d1bfccc17f04a2d8406227037833263bc3ddb7249f831cfcec733669eb9fbf1734d1a5eee7623bed410f0d840b4e3cd75892aed8e8313e94a47e561cc5819081c75c65bf6496df697e9413ea6a22541002ca8015c69ab8cbea62d1bfcac9c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d25f87352398ac5754df6c96df3dbf4a044a435d8a0801128066e019b82654c5a37fd17f03a474be7876ea7fdf29973a0bb43ef3f9cb47e555f3cce68d479aafdb6f66f2ec9649b4f07f0f0d840b4d32f75892aed8e8313e94a47e561cc5804d3e271b701f6496d07abe940bea436cca0801654002e36cdc134a62d1bfcfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d75f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96d07abe9413ea6a225410022502edc03d71b714c5a37fd6cb7f03a62edefeb2e7fcc9df933c6d7e4ff74b4cbfdffde7c59bb7e1b3eecd4fb77c3ec79d10f0ac907f0f0d840bad3adf5892aed8e8313e94a47e561cc58190844d34277f6496df697e9413ea6a22541002ca817ae321b810a98b46ffd4d3cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcd26c96dd6d5f4a09e535112a0801128215c6dbb82754c5a37fdacf7f02a40b539f013d78d3a745dc9c786e6eebb0df776dfc46bfdf2b5771175719b2c776ffb941070f0d8469a0be1fcbcad6d5d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dec46c96c361be940894d444a820044a05eb8cb571a794c5a37fdc7f00a3682c63b71130e9d14fa4344ef8b35174bea83f4938dfd6d7fbe37724a198d6b25d3b200f0d033735345892aed8e8313e94a47e561cc5804fbef361705f6496e4593e940b8a6a22541002ca816ae019b8c854c5a37f6196dc34fd280654d27eea0801128115c6c171a7d4c5a37fdad5d6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e3ce6c96df3dbf4a09b535112a0801128172e01bb8db2a62d1bfe17f03a53e6d9e3b832e7e67427fdfbed4777bcffbbcee8c19ddf7b6ec65d07a4e46dad0dedfde707fe0d8d70f0d83132d3f5892aed8e8313e94a47e561cc5819081c759703f6496df697e9413ea6a22541002ca8015c681702053168dffc2de">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e70f0d83138273cd6c96dd6d5f4a09e535112a080112820dc03d71b0298b46ffe57f02a4f73bc9db8f3614e0db93f7fde660b88da036a690e371cd556ae81ede35c3a5dbdd5f860fe45892aed8e8313e94a47e561cc5819081c79b741f6496df697e9413ea6a22541002ca8066e001702fa98b46ffc6e2ddde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ebd66c96c361be9413ca6e2d6a080112816ee003702d298b46ffe9de7f02a2aec313b6424f8fda71f9cd0ecdc69361bc62a76cae0bbc39dcc8eea302c633180f410f0d83780cb95892aed8e8313e94a47e561cc5819081c71f681f6496df697e9413ea6a22541002ca8015c659b807d4c5a37fcae6e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88efd56c96dc34fd282754d444a820044a08371a15c0bea62d1bffede27f02a5cd6d82c3c386ce90ec07ad7b32de7e5ef99b718ff79f97ee3efeb66172f14586d1ca2eb07f0f0d8465c6402f5892aed8e8313e94a47e561cc5819081c79a741f6496df697e9413ea6a22541002ca8015c6deb8cbea62d1bfceeae6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f3de6c96df3dbf4a044a435d8a0801128066e00571b0a98b46fff1e67f02a3f1d45a397a4659fc33812ededb8b44214607f1f2b7d7bf4f1ef774ef17174daff0b3410f0d83784c835892aed8e8313e94a47e561cc5804db8cbee3eff6496df697e9413aa436cca080165403971b7ee01e53168dfd2eeea">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012ade6c96dc34fd282754d444a820044a0837197ae34d298b46fff6eb7f03a4c5a3dfbf5d0175e7f3f3943ef3637e7ede7f4bd7db74f3df4a2df3e33db372f441629a0f0f0d8369e75e5892aed8e8313e94a47e561cc5819081c79b13ff6496df697e9413ea6a22541002ca8015c6dfb8cbca62d1bfd7f3ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96dc34fd280654d27eea080112806ae32edc69e53168df6496dc34fd281029a4fdd410022500d5c65db8d3ca62d1bf5f911d75d0620d263d4c1c88ad6b0a8acf520b409221ea496a4ac9b0752252d8b16a21e435537f858cd50ecf5f0f0d830bc16b58a7a47e561cc581b75b105bfa52bb63a0c4fa52a3ac9b0752253d94fd294da84ad617b8e83483497f6196dc34fd280654d27eea0801128115c6c171b654c5a37f4087aaa21ca4498f57842507417f408721eaa8a4498f5788cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858bbaec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb003e94a47e561cc58015f87352398ac4c697f6495df3dbf4a05486bb141000d2800dc006e002a62d1bf6c95df3dbf4a05486bb141000d2800dc006e000a62d1bf4085aec1cd48ff86a8eb10649cbf4089f2b4b1ad495361888f1c7b2277223a35332c2272223a32362c2271223a302c2261223a32357d4089f2b4b1ac82d9dcb67f88081775a5de7d71337f10a474d9fa23671fc45b570cdf85674d1c45e923bb8bdec071c77bae8fc632b9660b6eb9ce0f6196dc34fd280654d27eea0801128115c6c171b694c5a37f7f0888ea52d6b0e83772ff0f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d45f91497ca582211f6a1271d882a60b532acf7f6c96dd6d5f4a09e535112a080112816ee01cb8db2a62d1bf4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9ab7f05a4b6cff7bf1d18719739d28a6fd1b3973d7e058b6e0cfebbcc27b2d3801979f14b6e5a783f0f0d83085b6f5892aed8e8313e94a47e561cc5819081c75d0b5f6496df697e9413ea6a22541002ca8015c69cb80794c5a37fc6c57b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcc56c96c361be94642a436cca0801128215c0b3704f298b46ffc47f03a471897363ebb5376bded1fb5d999653871f5157a9cdd7ff68e18821e1d9a621a3864c107f0f0d033531365892aed8e8313e94a47e561cc5804e321719035f6496e4593e94034a6e2d6a080165400ae36ddc6de53168dfcbcac6c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d8213225f87352398ac5754df6c96dc34fd2820a90d762820044a01db8066e36ea98b46ffc97f03a4fc4ef46ad25c58f12180f7dbb7bbc4efa798486bacfe76a2cef56fec2c5fbf9deaeda20f4087f2b12a291263d5842507417f5892aed8e8313e94a47e561cc581903417dc0bff6496d07abe941054d444a820059502d5c69ab8cb6a62d1bf6196dc34fd280654d27eea0801128115c6c171b714c5a37fd1cdc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7c46c96c361be9403aa6e2d6a080112816ee05eb8d014c5a37fcf7f04a5c02cb779ef1d7ebf30f4f3bf7f1edd6c2f5dfc735fac345fd9b37b0ef3f24f32e9e02e107fc3cbcf0f0d8268005892aed8e8313e94a47e561cc5819081c71f659ff3c1d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ea5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96dc34fd282754d444a820044a08371a0dc69b53168dffd3d27f02a336b8f3c9d075ecf7b4e34c7ab85fb34ffb2f9bfd1ec1af1e58488fd69eaf8a6bb130c10f0d8465b75c735892aed8e8313e94a47e561cc5819081c79f781f6496df697e9413ea6a22541002ca8066e01db81694c5a37fdad9d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88efcc6c96dd6d5f4a09e535112a080112816ae32d5c6c0a62d1bfd77f02a4010c0daded11bbe4e37b6d9e1389b03b80bd3fde7df99e938677a4c86fdadd07fb93841f0f0d84081f00bf5892aed8e8313e94a47e561cc5819081c71f71bf6496df697e9413ea6a22541002ca8015c659b8d014c5a37f6196dc34fd280654d27eea0801128115c6c171b6d4c5a37fdedad6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f4dd6c96dd6d5f4a09e535112a080112820dc65eb82794c5a37fdcdb7f03a5d62bbd8058f8fe744caf62f5b2b0e3c76f97b4f9a254f0d1f9fb6f37bf30ffbf43d5c4f07f0f0d8369c75c5892aed8e8313e94a47e561cc5819081e79d13df6496df697e9413ea6a22541002ca807ae32e5c134a62d1bfcfe2da">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012ae26c96dd6d5f4a09e535112a080112820dc65db810298b46ffe1e07f03a5f58fdf16080f0cfefac9575db1e7bd7ec84096c726ed1ea1c4d5765dd5d7fd9bfda5ce707f0f0d84101d7c3f5892aed8e8313e94a47e561cc5819081c75c6daf6496df697e9413ea6a22541002ca8015c69bb810298b46ffd4e7df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d840842167fda6c96dd6d5f4a09e535112a080112816ae32d5c69d53168dfe57f02a4b59719d5df361a6aa5d0bb96ef0fc85b2ebbaf6f402baf6e477fd97065f1ab516b73c41fd95892aed8e8313e94a47e561cc5819081c71f79ef6496df697e9413ea6a22541002ca8015c65ab80694c5a37fd8ebe7e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6f36c96df3dbf4a044a435d8a0801128066e00571b754c5a37fe9e87f02a4e69f5fef795ad5ee54784d3d3dc7969cbfa3f51fad009fcfe1b6f01694e3c11dfb75e0830f0d0234335892aed8e8313e94a47e561cc5804dbadb2dbacf6496e4593e9413ca436cca08016540b571976e01f53168dfdcefe7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cae26c96df3dbf4a044a435d8a0801128066e019b82694c5a37fedec7f02a3f59b0fab3cf8ed74d6d3a35cbcbbf76a93d9c38229f6fc9d3f53ba4a6f1f668a893a200f0d033537315892aed8e8313e94a47e561cc5804dbadb2f043f6496e4593e9413ca436cca08016540b571a0dc03aa62d1bfe0f3eb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce5f87352398ac4c697f6c96df3dbf4a044a435d8a0801128066e019b821298b46fff27f03a4c71d9ebcd5addc7a46ef5937de9e172ed75eee99f67804dedffdf78375eed831b2c3fd600f0d0234335892aed8e8313e94a47e561cc5804dbadb2eba0f6496e4593e9413ca436cca08016540b571a05c138a62d1bfe5408721eaa8a4498f5788ea52d6b0e83772fff5f1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4ec6c96df697e9413ca436cca080112800dc102e000a62d1bff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9ab7f05a12c937692d0d1869e1c9916048a7c673428adfeb8721277b65f310da9d093635e200f0d84089e0bbf5892aed8e8313e94a47e561cc5804e34dbc0683f6496df3dbf4a01b53716b50400b2a05eb817ae05d53168dfecc47b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbe96c96dd6d5f4a09e535112a080112820dc03f7190298b46ffc4c37f03a5b3f3f13e72332eb9b4e32b9e3364bfb6eed079e894f0d25c5feeedfd9a1ed92e6d83ff70c10f0d84085c79ef5892aed8e8313e94a47e561cc5819081c79f7c1f6496df697e9413ea6a22541002ca8066e01db82754c5a37f6196dc34fd280654d27eea0801128115c6c171b754c5a37fcac3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d8465b0b8dfee6c96dd6d5f4a09e535112a080112820dc03971a754c5a37fc97f03a49786516923fdb2c976f061ab9e185be280cae9fdf7ff66635efcdabfdf12d608418f641f4087f2b12a291263d5842507417f5892aed8e8313e94a47e561cc5819081c79b107f6496df697e9413ea6a22541002ca8015c6dfb8cbca62d1bfc3cfccc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5f36c96dd6d5f4a09e535112a080112820dc03b700053168dffcecd7f03a443ffb4e5cd573c5460e99311def3b3df9a27e3a1aa8d462c7313b8659f307f5dc21f107f0f0d830804f75892aed8e8313e94a47e561cc5819085f0bcd3ff6496e4593e94640a6a22541002ca8166e05bb80754c5a37f6196dc34fd280654d27eea0801128115c6c171b794c5a37fd4cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ea5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96dd6d5f4a09e535112a080112820dc03b700f298b46ffd4d37f04a39f46cef0bbe67b6145696e5d5e4b25809797bd9fba73f5f46f7c534528afdcdc713d070f0d8469d79a6bcdcccbd7d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88edc06c96d07abe9413ea6a225410022502fdc0bb704d298b46ffd67f00a40e0eb97373cf2f2b483bfc67fdbd838c309db771d70e376cef85ab1fc9e2ffe6815d7a0f0f0d84684cbe1f5892aed8e8313e94a47e561cc5819085a65e645f6496df697e9413ea6a22541002ca8266e36d5c69f53168dfcfdbd8d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f10f0d840b21783fc46c96dd6d5f4a09e535112a080112820dc082e32253168dffda7f02a493539ab3709597ba5f9130d5becd027bc7eefbbedfe6dcfc18060cb2481bdd7962be883fce5892aed8e8313e94a47e561cc5819081c79f79ffd3c8dedbd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f4c76c96c361be940094d27eea080112817ee019b8dbaa62d1bfdddc7f01a4c947eb527a233ddd97b5929874f6cb1e12e1dfcb6f5e1df07040b3bd9b3fe691ffb6cf070f0d84132eb2e75892aed8e8313e94a47e561cc58190b4ebccb80f6496dc34fd280129a4fdd41002ca8205c6c1702ea98b46ffd6e2db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012acc6c96df3dbf4a002a693f750400894102e32ddc13ca62d1bfe2e17f03a3db838fb0756b15b23b1964f7ddfcdbb7e211839b5567b2306f0b54f29d2fb7a326083f0f0d84089f71ff5892aed8e8313e94a47e561cc58190b2fb4f3cdf6496c361be940054d27eea0801654106e32fdc032a62d1bfd1e7e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2d06c96dd6d5f4a09e535112a080112820dc03971a694c5a37fe6e57f02a4e39bbdbcf3b0fd9dbbf4fc9dda6c7b3f4dd96924db33feb03ff7fa9edd043e08d632120f0f0d8379a6dd5892aed8e8313e94a47e561cc5819081e79d13df6496df697e9413ea6a22541002ca807ae32e5c138a62d1bfd5ebe4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858bbaec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb003e94a47e561cc5801f16495df3dbf4a05486bb141000d2800dc006e002a62d1bf6c95df3dbf4a05486bb141000d2800dc006e000a62d1bf4085aec1cd48ff86a8eb10649cbf4089f2b4b1ad495361888f1c7b2277223a32362c2272223a31382c2271223a302c2261223a33307d4089f2b4b1ac82d9dcb67f8908170b8d2ef38bb4ff7f07a32cd96c349c6c06a9e6f0cec8f095c72b7a7dfc58fdbe3ff74489b2ce8db7286ff89a0f6196dc34fd280654d27eea0801128115c6c171b7d4c5a37ff30f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55f87352398ac4c697fc5c4c37f031c7b2277223a31352c2272223a37342c2271223a302c2261223a32317d7f038908170b8d2e2089779b7f03a4772f18f863c47ca4cfef2478e6eb975f705fdd77d13373e7af59ece04019cd526df0f41fc2408721eaa8a4498f5788ea52d6b0e83772ff0f0d023433">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88ca5f88352398ac74acb37fcac9c87f031c7b2277223a33332c2272223a31342c2271223a302c2261223a32377d7f038a08170b8d2e2032bbcdff7f03a3dd8f09af3363766bfddc7f5b1c877b47773d9edb78e23009b746d3e73e6cd0f1ce483fc7c20f0d84081965af5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc2cecdcc7f021c7b2277223a34372c2272223a32372c2271223a302c2261223a32347d7f028908170b8d2e110576db7f02a4baf6fd826f1e7b2be1a3fd8aab672f4ff6ebef6274d18acfc467f39afeda6991c65c6a0fcbc60f0d8475f005ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012a0f0d023433cb6c96df3dbf4a044a435d8a0801128066e019b806d4c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb7f02a3ec1e7469d9867e16643031e179e9b0b0869d3277e8bc0873f1dc2339f8760bbb0ec83f4087f2b12a291263d5842507417f5892aed8e8313e94a47e561cc5802e882e3cdb9f6496df697e941054d03f4a08016540bf702f5c65b53168df6196dc34fd280654d27eea0801128115c6c171b7d4c5a37fcec97b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c65f87352398ac4c697f6c96df3dbf4a044a435d8a0801128066e019b820298b46ffc6cc7f06a4d5ab3595f32e50e6116de3cb84c09d9fc6b567bfc3fdc7aff219f1945fb1e6a479321e0f0f0d0234335892aed8e8313e94a47e561cc5802e882e3cdb7f6496df697e941054d03f4a08016540bf702f5c65a53168dfc4408721eaa8a4498f5788ea52d6b0e83772ffc4c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96dc34fd282754d444a820044a08371a15c13ca62d1bffcc7f04a4bbcb9cd7b047ecbcbd60db7db3ebd6d8521a717fbf356e075a43639bff6c910fdd939c1f0f0d846db6d9075892aed8e8313e94a47e561cc5819081c79f79ff6496df697e9413ea6a22541002ca8066e01db82754c5a37f6196dc34fd280654d27eea0801128115c6c171b794c5a37fc45a839bd9abcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858bbaec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb003e94a47e561cc58015f87352398ac5754df6495df3dbf4a05486bb141000d2800dc006e002a62d1bf6c95df3dbf4a05486bb141000d2800dc006e000a62d1bf4085aec1cd48ff86a8eb10649cbf4089f2b4b1ad495361888f1c7b2277223a34372c2272223a32372c2271223a302c2261223a32347d4089f2b4b1ac82d9dcb67f8908170b8d2e110576db7f0aa472fdfab46e4d536a67011aed8f8e5cf51eddec6ae9cb266e5aa766b77f02fd1e2116083f6196dc34fd280654d27eea0801128115c6c171b7d4c5a37fce0f0d023637c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c57f00a5bfcffdc9a9cc28731eae9973fbfc9750bbfb21e1bd6cc7afc27a7fbfd977612b3fec190f07bfcf0f0d023637">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012ac76c96d07abe940b6a6a2254100225001b817ee09e53168dff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbcb7f02a4e0ca5b3f4fd87f3751ed8b254f7e3f9a2437fb9360e1a2f79eefb76b55619291eaaf841f0f0d837196455892aed8e8313e94a47e561cc5804fbce36d3ccf6496df697e940b6a6a22541002ca806ae34fdc0094c5a37fc5408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55f87352398ac4c697f6c96df3dbf4a044a435d8a0801128066e019b817d4c5a37fc55a839bd9ab7f06a3e5d74bfd7def0648f2d54ebe30958cb59b507342ca2fd2de5367d36ffbaca3e02160830f0d830804df5892aed8e8313e94a47e561cc5802e882e3cdb5f6496df697e941054d03f4a08016540bf702f5c65a53168df6196dc34fd280654d27eea0801128115c6c3700053168dffc6c54087f2b12a291263d5842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d8375f0375f91497ca582211f6a1271d882a60b532acf7f6c96dd6d5f4a09e535112a080112820dc65eb8d854c5a37fcd7f05a5968e17fc6dfc8499b1517bf78ffbbae79ac3d4de45ef468174bc3cf63d8bf394bab73e783fc15892aed8e8313e94a47e561cc5819085f0b8f37f6496e4593e94640a6a22541002ca8166e045704da98b46ffc4ccc8cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012a0f0d033936305f87352398ac5754df6c96df3dbf4a01d532db52820044a081702edc0814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb7f05a440a3dd66a9b76ab2a20720b9ffb9ef53fba7a6a6b2e6db0a32f7ef8374fd5df3df64e083c85892aed8e8313e94a47e561cc5804dbadb2d85ef6496e4593e9413ca436cca08016540b571972e080a62d1bf6196dc34fd280654d27eea0801128115c6c3700253168dff408721eaa8a4498f5788ea52d6b0e83772ffd17b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c66c96c361be940b2a65b68504008940b3700ddc69f53168dfc55a839bd9ab7f06a593776c3a3a337760e977359d0f8d17f87adda79f91158fd85ae9d7fd9b3f8d97dbedfef4410f0d830b420f5892aed8e8313e94a47e561cc5804dbadb2db4df6496e4593e9413ca436cca08016540b571972e34ea98b46fc5c4c34087f2b12a291263d5842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d8365f75d5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96dc34fd282754d444a820044a08371a0dc65e53168dffcc7f04a334a1cfeb062bd833398184e3c3939f6df21369714a2e746361ebda49dd20d1ba36c907c15892aed8e8313e94a47e561cc5819085c105d67f6496e4593e94640a6a22541002ca806ee0017196d4c5a37fcbcac7c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012a5f87352398ac5754df6c96df3dbf4a044a435d8a0801128066e019b80654c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbcb7f05a3068d9d91ad2eee1ec9307b7e9465c1d41e0c5bc0f7ebd77966efd3d3532092eda5a83f0f0d033331365892aed8e8313e94a47e561cc5804db82782273f6496df697e9413aa436cca080165403371a72e09f53168df6196dc34fd280654d27eea0801128115c6c3700ca98b46ff408721eaa8a4498f5788ea52d6b0e83772ff7b8b84842d695b05443c86aa6fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8371d75f6c96e4593e9403ea681fa5040089410ae36ddc6c0a62d1bf52848fd24a8fc3c2588ba47e561cc5802203ee001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c10f0d8375e7df6c96d07abe940b4a681fa5040089403f702ddc6da53168dfc0c5c4bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8379f7036c96c361be94081486d99410022504cdc035704da98b46ffc1c06496dc34fd281754d27eea0801128115c6c3700ca98b46ffc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c40f0d83744e836c96df3dbf4a05d5340fd2820044a05db8015c138a62d1bfc3c2bfc8c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d840804f35f6c96c361be940b4a6e2d6a0801128166e34cdc0054c5a37fc4c9c8c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d8371f6456c96df697e940b6a681fa504008940b971b66e040a62d1bfc5c4cac9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c70f0d840bed01af6c96c361be940b2a65b6850400894106e32f5c0baa62d1bfc6c5c2cbca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858bbaec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb003e94a47e561cc58015f87352398ac4c697f6495df3dbf4a05486bb141000d2800dc006e002a62d1bf6c95df3dbf4a05486bb141000d2800dc006e000a62d1bf4085aec1cd48ff86a8eb10649cbf4089f2b4b1ad495361888f1c7b2277223a32332c2272223a32342c2271223a302c2261223a33317d4089f2b4b1ac82d9dcb67f8a08170b8d2e2034bbcfff4088f2b4b1ad2163b66fa4a67f736bd5bf77fbb2fbbf9eba5f0cd5b3ef95121cdfb5d252facc0472bdf9e6f539de836196dc34fd280654d27eea0801128115c6c3700d298b46ff408721eaa8a4498f5788ea52d6b0e83772ff0f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5c4c37f031d7b2277223a31332c2272223a3133372c2271223a302c2261223a32337d7f038a08170b8d2e171d5db67f7f03a3b795e739f86f2f44bc9adcc5a3930023bd9a46c37ad3fec92a30db4fab07d346ecf820c2c10f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca5f88352398ac74acb37fc9c8c77f021c7b2277223a32302c2272223a34332c2271223a302c2261223a33307d7f028908170b8daed89771df7f02a4cce6a7fdfbc5523a75c3c09d38d5dcf366c15bdcbd73cd7efb6c0776d859cbabb6ff6f41c6c50f0d84081965af5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfc2cdcccb7f021c7b2277223a34302c2272223a33332c2271223a302c2261223a32327d7f028908170b8d2e102eebff7f02a69b87fbcdb6f6de5670affd8f06fddc70c22ff7b3b7bcadbba2cf4dfa78cfe9fdc9bb6fbe2d41cac90f0d8475f005ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858bbaec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb003e94a47e561cc58015f87352398ac5754df6495df3dbf4a05486bb141000d2800dc006e002a62d1bf6c95df3dbf4a05486bb141000d2800dc006e000a62d1bf4085aec1cd48ff86a8eb10649cbfc5c47f04a5166e7259a64ff7de1e918f90bfdd0fd1fa023fdb655b365b9ef02de3fec77f96096ac0883fd0cf0f0d023637c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c27ea5a13fbcd90f8fd283cbfd3a7e7effb6316cd17b27eb99ffdf0f79c9c708fa35ccaf1300e6836196dc34fd280654d27eea0801128115c6c3700d298b46ff408721eaa8a4498f5788ea52d6b0e83772ff0f0d023637">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d846442103f6c96d07abe940b6a6a225410022502ddc65db80794c5a37f52848fd24a8f6196dc34fd280654d27eea0801128115c6c3700ca98b46ffc1588ba47e561cc5802203ee001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c90f0d85081b740cff6c96d07abe940b6a6a225410022502ddc65eb80654c5a37fc1c0c3bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d8465c75c7b6c96df3dbf4a002a693f750400894006e36ddc684a62d1bfc3c2c5c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f0d85085f6dd6bf6c96c361be94138a6a225410022500fdc683702253168dffc4c3c6c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012a0f0d033635395f89352398ac7958c43d5f6c96df3dbf4a044a435d8a0801128066e019b821298b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb7f0da4f581ea7c8baead04c8f6c6b424f9af7e7387f3bbbe7768d97715b29ee83d31dbaf3c08834087f2b12a291263d5842507417f5892aed8e8313e94a47e561cc5802e3207c4e03f6496dc34fd2810a9a07e941002ca8076e045700e298b46ff6196dc34fd280654d27eea0801128115c6c3700e298b46ffcf5a839bd9ab7b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8371f71c6c96df3dbf4a05d5340fd2820044a05cb8272e01c53168dfd1cf6496dc34fd281754d27eea0801128115c6c3700ca98b46ff6196dc34fd280654d27eea0801128115c6c3700fa98b46ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d8369b0076c96c361be94038a65b6850400894086e32e5c69b53168df52848fd24a8fc1c0588ba47e561cc5802203ee001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c50f0d8465d699176c96d07abe94034a65b6a5040089403d7196ee36253168dfc0c3c2bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d83742fbd6c96df697e940b6a681fa504008940b971a6ee05953168dfc1c4c3c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d840b2d36d76c96df3dbf4a3215340fd2820044a00371a7ae32f298b46fc3c6c5c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb5f8b1d75d0620d263d4c7441ea54919d29aee30c78f1e1794642c673f55c87a7409619085421621ea4d87a161d141fc2c4b0b216a4987423834d969758b3aec3771a4bf4a54759093d85fa52a3ac419272fd294da84ad617b8e83483497e94ace84ac49ca4eb003e94aec2ac49ca4eb0034085aec1cd48ff86a8eb10649cbf798624f6d5d4b27f6196dc34fd280654d27eea0801128115c6c3700f298b46ffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d840bedb2ef6c96df697e940bea65b6a5040089403d71b0dc13aa62d1bfcbcacfcecd">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588d10f0d836de6856c96d07abe940b4a681fa5040089410ae019b8d3aa62d1bfcccfcecb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d20f0d8371f7596c96df697e941094d03f4a0801128266e09cb8d32a62d1bfcdd0cfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d30f0d83744e336c96d07abe940854cb6d4a080112820dc086e042a62d1bffced1d0cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d40f0d837042176c96df697e940b6a681fa5040089400ae041702053168dffcfce6496dc34fd281754d27eea0801128115c6c3700fa98b46ffd3d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d60f0d8378006f6c96c361be940b2a65b685040089400ae360b82754c5a37fd1d4d3d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d70f0d8375f69f6c96e4593e94642a6a225410022502edc1377190298b46ffd2d5d4d1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d80f0d836de6c16c96e4593e94132a681fa504008940b3700d5c036a62d1bfd3d6d5d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f0d8369e7016c96c361be940bca681fa5040089403971b7ee05953168dfd4d7d6d3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f0d8465c702df6c96c361be9403ca65b6a5040089403f702f5c65b53168dfd5d8d7d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d841381781f6c96c361be940054cb6d4a0801128115c6deb82794c5a37fd6d9d8d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc0f0d8379b6c36c96e4593e940b8a681fa50400894002e05fb820298b46ffd76196dc34fd280654d27eea0801128115c6c3702053168dffdad7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88de0f0d8374020f6c96c361be940bca681fa5040089403d71b7ae01953168dfd9bfdbd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df0f0d837822736c96df3dbf4a05d5340fd2820044a0417190dc0014c5a37fdac0dcd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d60f0d84105d781f6c96c361be941014cb6d0a0801128205c699b81694c5a37fdbc1ddda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d70f0d840b8103ff6c96c361be9403ca65b6a50400894106e34ddc0014c5a37fdcdfdedb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f0d836c4d3d6c96df697e940b6a681fa504008940bb702fdc1094c5a37fdde0dfdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e30f0d8375c0036c96df697e940b6a681fa50400894002e005702ca98b46ffdedde1e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e40f0d83782d3d6c96df697e94034a6e2d6a080112806ee09bb81754c5a37fdfdee3e2e1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88db0f0d84132e3cf76c96df697e94036a65b6a504008940b971b7ae36e298b46fe0df6496dc34fd281754d27eea0801128115c6c3702053168dffc7e3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dd0f0d84644dbaff6c96c361be940b6a65b6a504008941337041b8c854c5a37fe26196dc34fd280654d27eea0801128115c6c3700fa98b46ff408721eaa8a4498f5788ea52d6b0e83772ffe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d8465c0b6d76c96df697e940b6a681fa504008940b971b66e01a53168df52848fd24a8fc1c0588ba47e561cc5802203ee001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d83784e076c96df3dbf4a05d5340fd2820044a05cb816ee05f53168dfc1c4c3c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d8465a700cf6c96df697e94036a65b6a504008940bf71966e32053168dfc3c26496dc34fd281754d27eea0801128115c6c3700ca98b46ffc7c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c00f0d840bec881f6c96c361be941014cb6d0a0801128215c659b810298b46ffc5c8c7c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012a5f91497ca582211f6a1271d882a60b532acf7f6c96dc34fd282754d444a820044a08371b7ee36e298b46ff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9ab4088f2b4b1ad2163b66fa3260b1abd5f6f5ae8b53fb8343659b43b839078b184fa738d0f576f69f267d5eaa726830f0d830b6f3f5892aed8e8313e94a47e561cc5819085f0b4107f6496e4593e94640a6a22541002ca8166e01eb806d4c5a37f6196dc34fd280654d27eea0801128115c6c3702da98b46ffd07b8b84842d695b05443c86aa6f4087f2b12a291263d5842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8cc6c96df3dbf4a044a435d8a0801128066e019b8cb4a62d1bfc6c57f05a3ddd23e5ef9649c8ddb7cbc26cdefa8e768fc47e304baa54769aa75f4e5ef9cdaafc3070f0d82089a5892aed8e8313e94a47e561cc5804db8c89d7dbf6496df697e9413aa436cca0801654037700d5c640a62d1bfc4d6c3c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccd06c96df3dbf4a044a435d8a0801128066e00571b7d4c5a37fca7f02a47aef3e70dfc86cfcbf75eded65334fab7e5aaab5b8dd6f255d33e5e76d2813ff9b2f35070f0d033137385892aed8e8313e94a47e561cc5804db8cbcf32f76496df697e9413aa436cca080165403971a6ee05953168dfc8da">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96c361be94138a6a2254100225041b8d0ae01d53168dffcfce7f03a3b26619f210175fae4dffbe7dc2d1fa8cba26d95c992f993c2bdb2176518e4705e3841f0f0d8365a033ca5892aed8e8313e94a47e561cc5819081f7dc71df6496df697e9413ea6a22541002ca810dc65fb801298b46ffcddf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d5c26c96dd6d5f4a09e535112a080112820dc086e32d298b46ffd3d27f02a4ff788123bcc2c550e675c9dba03ea6fd24d87d76eb8e4e7cfa7bb5f8f4bdbf7cfbf9020f0f0d8365d7da5892aed8e8313e94a47e561cc5819081f03cf39f6496df697e9413ea6a22541002ca807ee04571a1298b46ff6196dc34fd280654d27eea0801128115c6c3702e298b46ffe4d1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dac76c96df3dbf4a09d53716b5040089410ae05fb82794c5a37fd87f03a5fdf2fffb04f92f4c7b23a7a340ff7bf8ecede5872ff2ea0cb84dd3c368d47b75666bcbd07f0f0d836990b95892aed8e8313e94a47e561cc5819085f0b4d0bf6496e4593e94640a6a22541002ca8166e01eb8cbca62d1bfc2408721eaa8a4498f5788ea52d6b0e83772ffdbd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfe3d0dcdb7f02a3f4fcd5819ed9e9c5e24b3a5934c8c3ebce6e15496edb71b9fbd67c7e99ca20bbe2a8600f0d023832d75892aed8e8313e94a47e561cc5804db8278220ff6496df697e9413aa436cca080165403371a72e32ea98b46fc6c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e25f87352398ac5754df6c96df3dbf4a044a435d8a0801128066e019b816d4c5a37fe1e07f03a4f4c8727bd49fcf6e6cc1dafc6d739deab3bf81dcbed9d92589c3bf8ef972d787238ea20f0f0d8213c15892aed8e8313e94a47e561cc5804db82782277f6496df697e9413aa436cca080165403371a72e34ca98b46fcbc6dedd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8854012ad56c96dd6d5f4a09e535112a080112820dc03b71a794c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9ab7f05a324998eed52b9ba3c3360e08b5eadefdaf9f5f5205ac9d77239f8b5eaf057d326be4f410f0d840bcdbc1fe35892aed8e8313e94a47e561cc5819081c79f701f6496df697e9413ea6a22541002ca8066e01db816d4c5a37f6196dc34fd280654d27eea0801128115c6c3702da98b46ffce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55f91497ca582211f6a1271d882a60b532acf7f6c96dd6d5f4a09e535112a080112820dc13d704253168dffc5c47f04a3d043f404bea986966ef2dbdf39f03f6f19accbd7f3abdca892a7e7e19a8f4e6bc0e0200f0d033638365892aed8e8313e94a47e561cc5819081c759135f6496df697e9413ea6a22541002ca8015c681700153168dff6196dc34fd280654d27eea0801128115c6c3702ea98b46ffd47b8b84842d695b05443c86aa6f4087f2b12a291263d5842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d84740f09afd26c96dd6d5f4a09e535112a080112816ae32ddc0814c5a37fcc7f05a3e0e5eab2ec2bb461d0db1e3bf3bbb4983d77379389e6bb21993ce1c8d77c9959dd29e0c05892aed8e8313e94a47e561cc58190842ebecb7f6496df697e9413ea6a22541002ca8172e34cdc640a62d1bfcadacec3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d8371f6d95f951d75d0620d263d4c7959139c9d7c0fb9569681a27f6c96d07abe9413ea6a225410022502f5c6dcb8d814c5a37fd17f03a47b6eafccd958ccde43e9fdc4ced2653e97b39cf3e6f47bfc846de572ae6fcfb7269c907fc55890aed8e8313e94a47e561cc5804e0196456496df697e94038a693f7504008940b37020b811298b46ff6196dc34fd280654d27eea0801128115c6c3704053168dffe0d4c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d70f0d8371f6d9c3c2d5c1c85890aed8e8313e94a47e561cc5804e019643c06196dc34fd280654d27eea0801128115c6c3704153168dffe2d6cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d95f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef6c96df697e94640a6a225410022502edc69bb827d4c5a37fd9d87f06a420d16774d1db432f5fc5370cdfed179c6bc73c3cbb7e127bda05e2ad1d26d0f71bcfbd070f0d840b6e3cdf5892aed8e8313e94a47e561cc5819089f7c2107f6496df3dbf4a321535112a08016540bf700cdc0814c5a37fc5408721eaa8a4498f5788ea52d6b0e83772ffd1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88df0f0d830b6f87c36c96df3dbf4a080a6e2d6a080112800dc08ae32da98b46ffde7f03a6c0ffe76cfd890eb48f472cdfefbd1e77eff53e9d7a0be38767eadd7b30fcffba5fcda3c7583fd25892aed8e8313e94a47e561cc5804f3aeb8265bf6496e4593e940094d444a820059502d5c0b7704d298b46ff6196dc34fd280654d27eea0801128115c6c3704fa98b46ffc3e1d6">>, +[ +{<<":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">>} +] +} +]}. +{story_27, [ +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e341b811298b46ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e044a62d1bfed4ac699e063ed490f48cd540bcb4189d6c5c87a7f0f1f919d29aee30c78f1e17968313ad8b90f4b1f5885aec3771a4b4089f2b20b6772c8b47ebf94f1e3c05f7d7968313ad8bd36c8bfa1ce73ae43d37b8b84842d695b05443c86aa6f5a839bd9ab0f0d023230408721eaa8a4498f57842507417f5f92497ca589d34d1f6a1271d882a60e1bf0acf7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b81654c5a37fc56c96dc34fd280654d27eea0801128005c037700153168dff52848fd24a8fc4c3c5408bf2b4b4189d6c59091a4c4f013158a1a8eb2127b0bf4a547588324e5fa529b5095ac2f71d0690692fd2948fcac398b0034085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5501307cecc7bf7eb602b854b02e2fe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb26846e954ffe7f7f4a63dfbf5b015c2a58012fe895997a4c35fd0e739d7a8a953fae639ce7df60e594c4dc5b3b96c602b880b880a7fec9a11ba553ff9fdff7688e7bf73015c405c40798624f6d5d4b27f7f0b88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b816d4c5a37fd15895aec3771a4bf4a54759093d85fa5291f9587316007fcfcdc15f911d75d0620d263d4c795ba0fb8d04b0d5a7cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196e4593e94642a6a225410022500fdc6c1704253168dffd46c96c361be94038a65b68504008940bf702ddc69c53168dfccd2d17f1494f1e3c09b5e5a0c4eb62f4db22fe8739ceb90f4ffcc588ca47e561cc58190b6cb800001cb5f87352398ac5754df558513ac81b67f7cebc7bf7eb602b854b1a12fe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb2634292a9ffcfefe94c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd931a14954ffe7f7cac9c80f0d8465b0805f6496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196df3dbf4a002a693f750400894035704cdc65e53168dfdc6c96df697e94038a681d8a0801128266e34f5c03ca62d1bfd40f0d84105e641f7f0694f1e3c05a6d7968313ad8bd36c8bfa1ce73ae43d3c1c5c45585101c136eff7cebc7bf7eb602b854b1a717f44accbd36c8bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd931a14954ffe7f7f4a63dfbf5b015c2a58fafe895997a4c35fd0e739d7a8a953fae639ce7df60e594c4dc5b3b96c602b880b880a7fec98d0a4aa7ff3fbfd0ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cde0c9d7dddc7f0194f1e3c05e757968313ad8bd36c8bfa1ce73ae43d3d7e0d5dbd37cecc7bf7eb602b854b1a697f44accbd36c8bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbfa531efdfad80ae152c0097f44accbd261afe8739cebd454a9fd731ce73efb072ca626e2d9dcb63015c405c4053ff64d08dd2a9ffcfeffd2d1d00f0d8465b0805fc50f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e05b53168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b81714c5a37fe30f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028cb6da9210208aa287d86496dc34fd280654d27eea0801128166e341b81754c5a37f5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d03333237dd408b4d8327535532c848d36a3f8b96b2288324aa26c193a964e4e2d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e09eb82654c5a37f7f29ff27acf4189eac2cb07f33a535dc618ad9ad7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70298b571fe76c96dc34fd280654d27eea0801128166e001702fa98b46ffe17b9384842d695b05443c86aa6fae082d8b43316a4fe75889a47e561cc58197000f5f92497ca58ae819aafb50938ec415305a99567b55033737330f0d8408422701dc7687877ee6195c4b83">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88caef5894a8eb10649cbf4a54759093d85fa52bb0ddc692ffe40f0d023433eb5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b817d4c5a37ff2dbe9efee7f1094f1e3c05e5e5a0c4eb62f4db22fe8739ceb90f4ffe9f2e7e6e57cecc7bf7eb602b854b1a797f44accbd36c8bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbfa531efdfad80ae152c0097f44accbd261afe8739cebd454a9fd731ce73efb072ca626e2d9dcb63015c405c4053ff64d08dd2a9ffcfeffe4e3e20f0d8465b0805fd70f28c096890a9291259281d53405a96b51f6a17cd66b0a8839164fa50025b28ea58400b2a059b8d06e05f53168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b820298b46ff5f88352398ac74acb37f0f0d836c0017e47f0cff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e320b80794e1bef76c96d07abe94640a436cca0801028072e01db8cb2a62d1bf52848fd24a8f558469b79a174085f2b10649cb9fc7937a92d87a54ae73a4e419272b6102f2d06275b17191a5fd0e739d721e9f408af2b10649cab5073f5b6ba1c7937a92d87a54ae73a4e419272b6102f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad840bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d8313cd3fedc6c56496d07abe94640a681fa50401094082e361b8cbea70df7b6c96d07abe94640a436cca0801028072e01db8c814c5a37fc4558479e038cf7f049fc7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb405e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cecd0f0d8365b659408721eaa8a4498f5788ea52d6b0e83772ffcdcc6496df3dbf4a09d535112a0802128215c6437190a9c37def6c96d07abe94640a436cca0801028072e01db82754c5a37fcb5585700fb4d3ff7f059fc7937a92d87a54ae73a4e419272b6c817968313ad8b8c8d2fe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272b6c817968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb205e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d5d40f0d83782e37c4d3d26496dd6d5f4a019532db42820084a01db8cb570215386fbd6c96df697e940814d27eea08007d4102e05bb8cb4a62d1bfd155830b2c8b7f049fc7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cac89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dbda0f0d840b80681fcad9d8d06c96e4593e940b6a6e2d6a080102817ee34cdc644a62d1bfd65585081a75c7bf7f039fc7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e0df0f0d840b8f05efcfdeddd56c96e4593e940b6a6e2d6a080102817ee34cdc0bea62d1bfdbc2cccbca">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e1e00f0d85136f3ccbdfd0dfde6496d07abe94640a681fa5040109403f702d5c1014e1bef76c96d07abe94640a436cca0801028072e01db8cb4a62d1bfdd558365f6417f059fc7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a77f05a2c7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2d2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e7e60f0d840b6d859fd6e5e46496d07abe94640a681fa5040109403f71a76e32d29c37de6c96d07abe94038a65b6a50400854086e08571b7d4c5a37fe355837dc69b7f049fc7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9f7f04a1c7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad804bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88edeb0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028cbc0524204315450f4085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b820a98b46ff5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023436eb408b4d8327535532c848d36a3f8b96b2288324aa26c193a9647b8b84842d695b05443c86aa6f7f23842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b820a98b46ff5f88352398ac74acb37f0f0d8375e75ee64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496e4593e941014cb6d0a0802128115c133702f29c37def6c96d07abe94132a65b6a504003ca05fb816ee01a53168df52848fd24a8f5584682eb4e77f119fc7937a92d87a54ae73a4e419272842d2f2d06275b17a6d917f439ce75c87a77f11a2c7937a92d87a54ae73a4e419272842d2f2d06275b17a6d917f439ce75c87a6e3ccff7cae0ae152b9ce9390649ca10b4bcb4189d6c5e9b645fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c65894a8eb10649cbf4a54759093d85fa52bb0ddc692ffd00f0d023433cb5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac90f0d8365965ff1c8c76496dc34fd2800a9a889504010940b571a7ee36d29c37def6c96d07abe940054d444a820044a019b8d82e32253168dffc6558475f7402f7f069fc7937a92d87a54ae73a4e419272be012f2d06275b178e50afe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272be012f2d06275b178e50afe8739ceb90f4dc7997cae0ae152b9ce9390649caf804bcb4189d6c5e3942bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d0ce6c96c361be94038a65b68504008940bf702ddc69c53168dfcbd45a839bd9ab4089f2b20b6772c8b47ebf94f1e3c05a6d7968313ad8bd36c8bfa1ce73ae43d3408bf2b4b4189d6c59091a4c4f01315885aec3771a4bdc5f96497ca58e83ee3412c3569fb50938ec415305a99567bf5501307cebc7bf7eb602b854b0025fd12b32f4db22fe8739cebd454a9fd731ce73efb072ca626e2d9dcb63015c405c4053ff64d08dd2a9ffcfefe94c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fb7688e7bf73015c405c40798624f6d5d4b27f7f1d88ea52d6b0e83772ff0f0d8465b0805f6496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c096890a9291259281d53405a96b51f6a17cd66b0a8839164fa50025b28ea58400b2a059b8d06e05f53168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b821298b46ffdc0f0d8365a033c0dbda6496d07abe94640a681fa50401094086e00370025386fbdf6c96df3dbf4a05c53716b504008140bb702fdc69d53168dfd955850b4e3826bf7f119fc7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a77f11a2c7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2f2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c4e20f0d8364017bc6e1e06496d07abe94640a681fa50401094086e32ddc038a70df7b6c96df3dbf4a05c53716b504008140bb702fdc642a62d1bfdf558569f79c6c1f7f049fc7937a92d87a54ae73a4e419272b607d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b607d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cae80f0d8365a7d9cce7e6c96c96df3dbf4a05c53716b504008140bb702fdc69f53168dfe455850bcd3a173f7f039fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cfed0f0d840be071cfd1ecebc86c96df3dbf4a05c53716b504008140bb702fdc65f53168dfe9c77f029fc7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a77f02a2c7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2d2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d3f10f0d840b4dbcefd5f0efcc6c96e4593e940b6a6e2d6a080102817ee34d5c032a62d1bfedcb7f029fc7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9f7f02a1c7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad844bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d75f88352398ac74acb37f0f0d840b8db41fda4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403f71b0dc65f5386fbd6c96e4593e940b6a6e2d6a080102817ee34cdc6db53168df52848fd24a8f558471a0b4dfdad9d8">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dec40f0d840bae38ffe0c3c2d76c96e4593e940b6a6e2d6a080102817ee34cdc69e53168dfc0558569f780e83f7f0a9fc7937a92d87a54ae73a4e419272b6cb8bcb4189d6c5c64697f439ce75c87a77f0aa2c7937a92d87a54ae73a4e419272b6cb8bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2e2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e3c90f0d840ba003ffe5c8c7dc6c96e4593e940b6a6e2d6a080102817ee34cdc680a62d1bfc5c27f029fc7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4f7f02a1c7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e7cd0f0d84084007c1e9cccb6496d07abe94640a681fa5040109403f71b05c69f5386fbd6c96d07abe94640a436cca0801028072e01db8c854c5a37fca5585081a75c67f7f049fc7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88edd30f0d840882169befd2d16496d07abe94640a681fa5040109403f702d5c1094e1bef76c96e4593e940b6a6e2d6a080102817ee34cdc0bea62d1bfd0c37f039fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b82654c5a37fd86c96c361be94038a65b68504008940bf702ddc69c53168dfd57b8b84842d695b05443c86aa6f5a839bd9ab4089f2b20b6772c8b47ebf94f1e3c040daf2d06275b17a6d917f439ce75c87a7408bf2b4b4189d6c59091a4c4f01315885aec3771a4b4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5501307cecc7bf7eb602b854b00f2fe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb26846e954ffe7f7f4a63dfbf5b015c2a58012fe895997a4c35fd0e739d7a8a953fae639ce7df60e594c4dc5b3b96c602b880b880a7fec9a11ba553ff9fdff7688e7bf73015c405c40798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff0f0d8465b0805f6496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e09953168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b82694c5a37fe70f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028c89e524209c8aa287c76496dc34fd280654d27eea0801128166e341b826d4c5a37f5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023436e6408b4d8327535532c848d36a3f8b96b2288324aa26c193a964cf7f05842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c4ee0f0d836d9745c6edec6496dd6d5f4a09a532db42820084a01bb8066e01b5386fbd6c96dc34fd28102996da1410020502f5c6deb800a98b46ffeb5585085975f77f7f1a9fc7937a92d87a54ae73a4e419272b41757968313ad8b8c8d2fe8739ceb90f4f7f1aa1c7937a92d87a54ae73a4e419272b41757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad05d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88caf35894a8eb10649cbf4a54759093d85fa52bb0ddc692ffd30f0d023433c65f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b826d4c5a37f5f88352398ac74acb37f0f0d8408020745d04003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403f702cdc6c0a70df7b6c96e4593e940b6a6e2d6a080102817ee34cdc65953168df52848fd24a8f558565f7c226bf7f0b9fc7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9f7f0ba1c7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad804bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c6e5c2e4e37f2394f1e3c0596d7968313ad8bd36c8bfa1ce73ae43d3e2e1e0df5501337cecc7bf7eb602b854b19697f44accbd36c8bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbfa531efdfad80ae152c0097f44accbd261afe8739cebd454a9fd731ce73efb072ca626e2d9dcb63015c405c4053ff64d08dd2a9ffcfeffdedddc0f0d8465b0805fdb0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e09b53168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b82714c5a37fca0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f7f1b8a028cb6f292104f455143e46496dc34fd280654d27eea0801128166e341b82754c5a37fda0f0d023436c8d9ead8d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0ccd0e50f0d023433d8cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0ccd0e50f0d023433d8cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b82754c5a37fcdd1e60f0d023433d9d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bece0f0d840b217842e0cdcc6496d07abe94640a681fa5040109403f702cdc0bea70df7b6c96e4593e940b6a6e2d6a080102817ee34cdc680a62d1bfcb558565f7c226ff7f0b9fc7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4f7f0ba1c7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c4d3f2cff1f07f0b94f1e3c05f797968313ad8bd36c8bfa1ce73ae43d3efeeedeccac9e9e8e70f0d8465b0805fe60f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e09d53168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b82794c5a37fd50f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f7f098a028cb8e292119722a8a1ef6496dc34fd280654d27eea0801128166e341b827d4c5a37fe50f0d023436d3e4f5e3e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b827d4c5a37fd8dcf10f0d023433e4db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bed90f0d850b2ebae3bfebd8d76496d07abe94640a681fa5040109403f702cdc034a70df7b6c96e4593e940b6a6e2d6a080102817ee34cdc69e53168dfd655857db7dc79ef7f099fc7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9f7f09a1c7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad844bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8c814c5a37fdf6c96c361be94038a65b68504008940bf702ddc69c53168dfdc7b8b84842d695b05443c86aa6f5a839bd9ab7f0d93f1e3c09a5e5a0c4eb62f1ca15fd0e739d721e9408bf2b4b4189d6c59091a4c4f01315885aec3771a4b4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5501317cb5c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbf7688e7bf73015c405c40798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff0f0d8465b0805f6496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e32053168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccee0f0d837dd6dbbfedec6496d07abe94640a681fa504010940b3704edc682a70df7b6c96d07abe94034a6a225410020504cdc086e05e53168dffeb558575e65d71ef7f139fc7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4f7f13a1c7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d2f40f0d8378017bc5f3f2c36c96d07abe94034a6a225410020504cdc086e05c53168dfff0558575e65d71df7f039fc7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9f7f03a1c7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad882bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d75f88352398ac74acb37f0f0d836db03fcb4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627fcb6c96d07abe94034a6a225410020504cdc086e05f53168dff52848fd24a8f558579a7dd107f7f079fc7937a92d87a54ae73a4e419272b61757968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b61757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e0c60f0d84134269afd3c5c4d1c3c25585799109967f7f029fc7937a92d87a54ae73a4e419272b60657968313ad8b8c8d2fe8739ceb90f4f7f02a1c7937a92d87a54ae73a4e419272b60657968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad8195e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e4ca0f0d840b6e3effd7c9c86496d07abe94640a681fa5040109408ae34fdc69c5386fbd6c96df3dbf4a05c53716b504008140bb702fdc6da53168dfc855850bcd3a26bf7f049fc7937a92d87a54ae73a4e419272b6cb6bcb4189d6c5c64697f439ce75c87a77f04a2c7937a92d87a54ae73a4e419272b6cb6bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2daf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88ead00f0d8413806c3fddcfcedb6c96df3dbf4a05c53716b504008140bf700e5c0094c5a37fcdd57f029fc7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9f7f02a1c7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad802bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88eed40f0d840b22719fe1d3d26496d07abe94640a681fa5040109408ae32f5c03ca70df7b6c96df3dbf4a05c53716b504008140bb702fdc642a62d1bfd25584105c081e7f049fc7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88f4da0f0d840bec89afe7d9d86496dd6d5f4a019532db42820084a085704cdc13aa70df7b6c96df3dbf4a05c53716b504008140bb702fdc69f53168dfd85585640175917f7f049fc7937a92d87a54ae73a4e419272b6cbebcb4189d6c5c64697f439ce75c87a77f04a2c7937a92d87a54ae73a4e419272b6cbebcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2faf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8c814c5a37fe10f0d84105b759feee0df6496d07abe94640a681fa504010940b3704edc684a70df7b6c96df3dbf4a05c53716b504008140bb702fdc69d53168dfdf55840b4e34d77f059fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c4e70f0d84101d641f408721eaa8a4498f5788ea52d6b0e83772ffe7e6c46c96e4593e940b6a6e2d6a080102817ee34d5c032a62d1bfe55585640179f07f7f049fc7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88caed0f0d84644f85cfc3ecebd66c96df3dbf4a05c53716b504008140bb702fdc65f53168dfea5585136175e6ff7f039fc7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cf5f88352398ac74acb37f0f0d84138dbad7c94003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627fd16c96e4593e940b6a6e2d6a080102817ee34cdc6db53168df52848fd24a8f5585799109917f7f079fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d8c60f0d8413aeb6ffd1c5c46496d07abe94640a681fa5040109410ae01cb82654e1bef76c96e4593e940b6a6e2d6a080102817ee34cdc69e53168dfc45585640179e67fd1d0cf">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dbc90f0d84085a03ffd4c8c76496d07abe94640a681fa5040109408ae32f5c0814e1bef76c96d07abe94640a436cca0801028072e01db8c854c5a37fc7c67f069fc7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e0ce0f0d84138d36cfd9cdcc6496dd6d5f4a09a532db42820084a01ab8db970425386fbd6c96d07abe94640a436cca0801028072e01db8cb2a62d1bfcc5583640dbdd4d3d2">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e3d10f0d84132113dfdcd0cfc86c96e4593e940b6a6e2d6a080102817ee34cdc65953168dfce5585640179d77f7f069fc7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a77f06a2c7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2d2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88e8d60f0d8413c275bfe1d5d4cd6c96e4593e940b6a6e2d6a080102817ee34cdc680a62d1bfd35585640179e0ff7f039fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88eddb0f0d84138271dfe6dad9d26c96e4593e940b6a6e2d6a080102817ee34cdc0bea62d1bfd85585640179d73f7f039fc7937a92d87a54ae73a4e419272b61697968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b61697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8c854c5a37fe00f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028cb8fa92104cc551434085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8c894c5a37f5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023436e1408b4d8327535532c848d36a3f8b96b2288324aa26c193a9647b8b84842d695b05443c86aa6f7f33842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6e85894a8eb10649cbf4a54759093d85fa52bb0ddc692ffc50f0d023433c05f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8eabfc60f0d023433c1be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8eabfc60f0d023433c1be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196e4593e94642a6a225410022500fdc643702253168dffeb6c96df697e94038a681d8a0801128266e34f5c03aa62d1bfe9c45a839bd9ab4089f2b20b6772c8b47ebf94f1e3c3ee2f2d06275b17a6d917f439ce75c87a7f408bf2b4b4189d6c59091a4c4f0131588ba47e561cc5802203ee001fcc5f91352398ac77aa45e9312c3a0f2a57310f57558413ad08407cebc7bf7eb602b854b02dafe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb2634292a9ffcfefe94c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd931a14954ffe7f77688e7bf73015c405c40798624f6d5d4b27f7f0d88ea52d6b0e83772ff0f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e32053168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb2a62d1bf4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfcb52848fd24a8fd2cb7f0b93f1e3c057968313ad8bd36c8bfa1ce73ae43d3fca5885aec3771a4bd85f92497ca589d34d1f6a1271d882a60b532acf7f5501307cebc7bf7eb602b854b0225fd12b32f4db22fe8739cebd454a9fd731ce73efb072ca626e2d9dcb63015c405c4053ff64d08dd2a9ffcfefe94c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbc9c8c70f0d8371c681c60f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e32ca98b46ffb52b1a67818fb5243d2335502f2d06275b1721e9f">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840be169afc9c65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32f5c03ea70df7b6c96d07abe94640a436cca0801028072e01db82754c5a37fc85585640179d17f4085f2b10649cb9fc7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4f408af2b10649cab5073f5b6ba1c7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d841341083f408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc6c56c96d07abe94640a436cca0801028072e01db80694c5a37f52848fd24a8f558579a03417ff7f069fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d84644d01cfc7c65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa504010940bd71a66e01d5386fbd6c96d07abe94640a436cca0801028072e01db81654c5a37fc755850b8e34d87f7f079fc7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d841000dbff408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa5040109408ae32f5c03ea70df7b6c96d07abe94640a436cca0801028072e01db80754c5a37f52848fd24a8f558565e13ce3bf7f079fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d84132cb22fc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae341b8db6a70df7b6c96d07abe94640a436cca0801028072e01db81754c5a37fc7558471e65c077f079fc7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d840bcdb4cf408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa50401094086e09ab8d3ca70df7b6c96d07abe94640a436cca0801028072e01db80714c5a37f52848fd24a8f558569b79b659f7f079fc7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a77f07a2c7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2f2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840b6cbeffc8c75892a47e561cc58190b6cb800001f55db1d0627f6496dd6d5f4a320535112a080212800dc69eb81714e1bef76c96e4593e94642a681d8a0801028176e34edc0854c5a37fc75585684d3cdbdf7f079fc7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cac89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d8413eebecf408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496df697e940b8a436cca0802128215c65ab81754e1bef76c96d07abe940baa681fa5040081410ae001719694c5a37f52848fd24a8f558579a03417ff7f079fc7937a92d87a54ae73a4e419272b400af2d06275b17191a5fd0e739d721e9f7f07a1c7937a92d87a54ae73a4e419272b400af2d06275b17191a5fd0e739d721e9b8f077cad0ae152b9ce9390649cad002bcb4189d6c5c64697f439ce75c87a6e3c153fa476b4d23025dd5f76f86ee7c0fff7">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840b2dba1fc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094086e05cb8cb8a70df7b6c96d07abe94640a436cca0801028072e01db80754c5a37fc7558575e642f3df7f079fc7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d840bc169ff408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496dd6d5f4a044a65b6a504010941337022b8cb4a70df7b6c96d07abe940baa681fa50400814106e36fdc0b8a62d1bf52848fd24a8f55857db65971af7f079fc7937a92d87a54ae73a4e419272b41697968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b41697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad05a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840b6d019fc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32f5c03ea70df7b6c96d07abe94640a436cca0801028072e01db80654c5a37fc7558565e784d83f7f079fc7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d840b4ebee7408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa5040109410ae01cb82694e1bef76c96d07abe940baa681fa50400814106e36fdc6de53168df52848fd24a8f558464400bc07f079fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840bce841fc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32f5c03ea70df7b6c96d07abe94640a436cca0801028072e01db82694c5a37fc7558579a03417ff7f079fc7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb215e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d84644db6df408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496dd6d5f4a05f532db52820084a05bb800dc03ca70df7b6c96d07abe940baa681fa5040081410ae001702ca98b46ff52848fd24a8f55846de75a0f7f079fc7937a92d87a54ae73a4e419272b4112f2d06275b17191a5fd0e739d721e9f7f07a1c7937a92d87a54ae73a4e419272b4112f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad044bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840b2e89cfc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32f5c0814e1bef76c96d07abe940baa681fa50400814106e36fdc134a62d1bfc7558579a03417ff7f079fc7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb215e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d8413ae380f408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa5040109410ae01cb8cb8a70df7b6c96d07abe940baa681fa50400814106e36fdc69d53168df52848fd24a8f558464400bc07f079fc7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bf5f88352398ac74acb37f0f0d840bedb4dfc8c75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32f5c03ea70df7b6c96d07abe940baa681fa50400814106e36fdc640a62d1bfc7558579a03417ff7f079fc7937a92d87a54ae73a4e419272b61757968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b61757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c6c50f0d84640d85ef408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa504010940b9704f5c032a70df7b6c96e4593e94642a681d8a0801028176e34edc038a62d1bf52848fd24a8f558469f71e6f7f079fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f07a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb4a62d1bfc60f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028c840a4846598aa2874085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8cb6a62d1bf5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023436c7408b4d8327535532c848d36a3f8b96b2288324aa26c193a9647b8b84842d695b05443c86aa6f7f0e842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cb6a62d1bfcf5894a8eb10649cbf4a54759093d85fa52bb0ddc692ffc60f0d023433c15f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cbca62d1bf4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f7f0b8a028cb4252423228aa287c5ca6496dc34fd280654d27eea0801128166e341b8cbea62d1bfc952848fd24a8f7f0a894192551360c9d4b27f0f0d023433c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8cbea62d1bfc36c96df697e94038a681d8a0801128266e34f5c03aa62d1bfc1cb5a839bd9ab4089f2b20b6772c8b47ebf93f1e3c3215e5a0c4eb62f1ca15fd0e739d721e9408bf2b4b4189d6c59091a4c4f01315885aec3771a4b4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5501337cb5c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbf7688e7bf73015c405c40798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff0f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e32fa98b46ffb52b1a67818fb5243d2335502f2d06275b1721e9f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d014c5a37f4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5895aec3771a4bf4a54759093d85fa5291f9587316007f7b8b84842d695b05443c86aa6f7f04842507417fc55f911d75d0620d263d4c795ba0fb8d04b0d5a7cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d054c5a37fc30f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028cb62524205f8aa287cd6496dc34fd280654d27eea0801128166e341b8d094c5a37f5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d02343652848fd24a8f408b4d8327535532c848d36a3f8b96b2288324aa26c193a964c6c5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28d73535c03ffcd05ffa0b2d85f6c01005c082271c7de65a65c7a21d62080311aa4ffcfb52f9e919aa817496c190b5257a8a9fb53079acd615106f9edfa50025b40fd2c20059502cdc68371a0a98b46ffb5358d33c0c24682f7f0ac7bdae0fe6f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a97786e53869c8a6be1b54c9a77a97f0685376f854d7b70297b568534c3c54d5bef29a756452feed6a5ed5b7f96495dc34fd28e29a07e940befb6a0457000b800298b46f5892ace84ac49ca4eb003e94aec2ac49ca4eb0034085aec1cd48ff86a8eb10649cbf5f87352398ac4c697f0f0d023433c9cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9ce5894a8eb10649cbf4a54759093d85fa52bb0ddc692ffc00f0d023433ccbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bf7f05ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf6c96df697e94038a681d8a0801128266e34f5c03aa62d1bfc97b8b84842d695b05443c86aa6f5a839bd9ab4089f2b20b6772c8b47ebf94f1e3c36e2f2d06275b178e50afe8739ceb90f4ff408bf2b4b4189d6c59091a4c4f01315885aec3771a4bc85f92497ca589d34d1f6a1271d882a60b532acf7f5501307cb5c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbf7688e7bf73015c405c40798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff0f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e34d298b46ffb52b1a67818fb5243d2335502f2d06275b1721e9f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc5f88352398ac74acb37f0f0d8313cc83c0cc5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403b71b05c0b8a70df7b6c96d07abe940054d27eea080102806ee341b820a98b46ff52848fd24a8f558368007f4085f2b10649cb9fc7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9f408af2b10649cab5073f5b6ba1c7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad802bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc70f0d8369e79ac94003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc76496d07abe94640a681fa5040109403b71a6ae09b5386fbd6c96d07abe940054d27eea080102806ee341b8d854c5a37fc655850b6f85a77f7f069fc7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9f7f06a1c7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad880bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d8365b0b3408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403b71a7ee32da9c37de6c96d07abe940054d27eea080102806ee341b81794c5a37f52848fd24a8f55836801077f089fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f08a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc80f0d8371e7dfc74003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc76496d07abe94640a681fa5040109403b71a7ee01e5386fbd6c96d07abe940054d27eea080102806ee341b821298b46ffc655851322782fbd7f069fc7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d8369c7db408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496df3dbf4a0195349fba820084a099b8d3f704d29c37de6c96d07abe940054d27eea080102806ee341b8cbea62d1bf52848fd24a8f7f07a0d19376e525b0f4a95ce749c8324e56c2d2f2d06275b17191a5fd0e739d721e9f7f07a2d19376e525b0f4a95ce749c8324e56c2d2f2d06275b17191a5fd0e739d721e9b8f337cae0ae152b9ce9390649cad85a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc70f0d83136fb9c64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe94640a681fa5040109403b71b6ee34e29c37de6c96d07abe94034a6a225410020504cdc086e34fa98b46ffc555856990b6117f7f069fc7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d8365b0b9408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa504010940bb71b66e32e29c37de6c96df3dbf4a05c53716b504008140bb702fdc642a62d1bf52848fd24a8f55856402034fff7f089fc7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9f7f08a1c7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad802bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc80f0d8369f10bc74003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc76496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96df3dbf4a05c53716b504008140bb702fdc69d53168dfc6558465c7da6b7f069fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f06a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d83642dbd408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403b71a72e05b5386fbd6c96d07abe940054d27eea080102806ee341b8cbea62d1bf52848fd24a8f55851322782dbb7f089fc7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9f7f08a1c7937a92d87a54ae73a4e419272b6112f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad844bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc80f0d8369b683c74003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc76496d07abe94640a681fa5040109408ae340b81129c37def6c96df3dbf4a05c53716b504008140bb702fdc69f53168dfc67f059fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff55856402036cff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d83682d37408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109403b71b0dc1054e1bef76c96d07abe940054d27eea080102806ee340b8dbea62d1bf52848fd24a8f55851322784c877f099fc7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4f7f09a1c7937a92d87a54ae73a4e419272b60797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bfc80f0d8365a0bfc74003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc76496d07abe94640a681fa5040109408ae01cb8cbaa70df7b6c96df697e94032a436cca0801028215c6ddb8d38a62d1bfc6558571b03ce3df7f069fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c55f88352398ac74acb37f0f0d836c0cb7408721eaa8a4498f5788ea52d6b0e83772ffc65892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094102e341b8c854e1bef76c96d07abe940054d27eea080102806ee341b801298b46ff52848fd24a8f558365f7df7f089fc7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a77f08a2c7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2d2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d34a62d1bf4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5895aec3771a4bf4a54759093d85fa5291f9587316007f7b8b84842d695b05443c86aa6f7f0b842507417f798624f6d5d4b27f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d36a62d1bfc50f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028c81b52423f15450ff4085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8d38a62d1bf5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023435cf408b4d8327535532c848d36a3f8b96b2288324aa26c193a964c8c7c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c35f88352398ac74acb37f0f0d836d90b37f0988ea52d6b0e83772ffcc5892a47e561cc58190b6cb800001f55db1d0627f6496df3dbf4a002a6e2d6a080212806ae36ddc038a70df7b6c96c361be94642a436cca080112817ae09eb8db8a62d1bf52848fd24a8f55857db7dc0b3f4085f2b10649cb9fc7937a92d87a54ae73a4e419272be0717968313ad8bc72857f439ce75c87a7408af2b10649cab5073f5b6ba2c7937a92d87a54ae73a4e419272be0717968313ad8bc72857f439ce75c87a6e3ccff7cae0ae152b9ce9390649caf81c5e5a0c4eb62f1ca15fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cdc70f0d8369c75bc64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496e4593e9403aa6e2d6a080212806ee36e5c6c4a70df7b6c96df3dbf4a01c53716b504008940bd71a15c6db53168dfc5558565979f69bf7f059fc7937a92d87a54ae73a4e419272be0757968313ad8bc72857f439ce75c87a77f05a2c7937a92d87a54ae73a4e419272be0757968313ad8bc72857f439ce75c87a6e3ccff7cae0ae152b9ce9390649caf81d5e5a0c4eb62f1ca15fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d36a62d1bf5f88352398ac74acb37f0f0d83744f0b408721eaa8a4498f5788ea52d6b0e83772ffc75892a47e561cc58190b6cb800001f55db1d0627f6496dd6d5f4a09e521b665040109403f7190dc0054e1bef76c96d07abe9413aa436cca0801128215c13d704053168dff52848fd24a8f558475971b6b7f099fc7937a92d87a54ae73a4e419272be2697968313ad8bc72857f439ce75c87a77f09a2c7937a92d87a54ae73a4e419272be2697968313ad8bc72857f439ce75c87a6e3cdff7cae0ae152b9ce9390649caf89a5e5a0c4eb62f1ca15fd0e739d721e9b8f36a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d83684d0bc64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496df3dbf4a002a6e2d6a080212806ae36ddc038a70df7b6c96c361be94642a436cca080112817ae09eb8db2a62d1bfc555857db7dc0b3f7f059fc7937a92d87a54ae73a4e419272be2717968313ad8bc72857f439ce75c87a77f05a2c7937a92d87a54ae73a4e419272be2717968313ad8bc72857f439ce75c87a6e3ccff7cae0ae152b9ce9390649caf89c5e5a0c4eb62f1ca15fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d36a62d1bf5f88352398ac74acb37f0f0d8369b703408721eaa8a4498f5788ea52d6b0e83772ffc75892a47e561cc58190b6cb800001f55db1d0627f6496dd6d5f4a05d532db42820084a019b817ee05c5386fbd6c96d07abe940054d27eea080102806ee341b80714c5a37f52848fd24a8f558368006f7f099fc7937a92d87a54ae73a4e419272880caf2d06275b178e50afe8739ceb90f4f7f09a1c7937a92d87a54ae73a4e419272880caf2d06275b178e50afe8739ceb90f4dc7997cae0ae152b9ce9390649ca2032bcb4189d6c5e3942bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d837196c1c64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66497dd6d5f4a05d532db42820084a01ab8db77196d4e1bef7f6c96d07abe940054d27eea0801028172e05eb8d054c5a37fc555856990ba27bf7f059fc7937a92d87a54ae73a4e419272880d2f2d06275b178e50afe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272880d2f2d06275b178e50afe8739ceb90f4dc7997cae0ae152b9ce9390649ca2034bcb4189d6c5e3942bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d36a62d1bf5f88352398ac74acb37f0f0d83659683408721eaa8a4498f5788ea52d6b0e83772ffc75892a47e561cc58190b6cb800001f55db1d0627f6496dd6d5f4a05d532db42820084a05eb807ee32ea9c37de6c96d07abe940054d27eea080102806ee341b81694c5a37f52848fd24a8f5585132278416f7f099fc7937a92d87a54ae73a4e419272880daf2d06275b178e50afe8739ceb90f4f7f09a1c7937a92d87a54ae73a4e419272880daf2d06275b178e50afe8739ceb90f4dc79b7cae0ae152b9ce9390649ca2036bcb4189d6c5e3942bfa1ce73ae43d371e6d4fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d8374006fc64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcfc66496d07abe940bca65b6850401094006e341b81129c37def6c96d07abe940054d27eea080102806ee341b8db8a62d1bfc55583680e357f059fc7937a92d87a54ae73a4e41927288025e5a0c4eb62f1ca15fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e41927288025e5a0c4eb62f1ca15fd0e739d721e9b8f377cad0ae152b9ce9390649ca20097968313ad8bc72857f439ce75c87a6e3cda9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d36a62d1bf5f88352398ac74acb37f0f0d83680e3d408721eaa8a4498f5788ea52d6b0e83772ffc75892a47e561cc58190b6cb800001f55db1d0627f6496d07abe940bca65b685040109403371a6ee01a5386fbd6c96d07abe940054d27eea080102806ee341b800a98b46ff52848fd24a8f558569978026ffc87f08a1c7937a92d87a54ae73a4e41927288025e5a0c4eb62f1ca15fd0e739d721e9b8f337cad0ae152b9ce9390649ca20097968313ad8bc72857f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c7c60f0d8375f701c5cec46496d07abe940bca65b685040109403371a6ae3225386fbd6c96d07abe940054d27eea080102806ee341b820298b46ffc3558513227840777f0e9fc7937a92d87a54ae73a4e419272880daf2d06275b178e50afe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272880daf2d06275b178e50afe8739ceb90f4dc79b7cae0ae152b9ce9390649ca2036bcb4189d6c5e3942bfa1ce73ae43d371e6d4fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cd4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5894a8eb10649cbf4a54759093d85fa52bb0ddc692ff4085aec1cd48ff86a8eb10649cbf0f0d0234337f0f842507417f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d38a62d1bf5f88352398ac74acb37f0f0d836997db7f0288ea52d6b0e83772ffc55892a47e561cc58190b6cb800001f55db1d0627f6496d07abe940bca65b685040109403371a6ee01b5386fbd6c96d07abe940054d27eea080102806ee340b8dbaa62d1bf52848fd24a8f55851322784d077f0e9fc7937a92d87a54ae73a4e41927288025e5a0c4eb62f1ca15fd0e739d721e9f7f0ea1c7937a92d87a54ae73a4e41927288025e5a0c4eb62f1ca15fd0e739d721e9b8f337cad0ae152b9ce9390649ca20097968313ad8bc72857f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ca62d1bfce6c96df697e94038a681d8a0801128266e34f5c03aa62d1bfc47b8b84842d695b05443c86aa6f5a839bd9ab4089f2b20b6772c8b47ebf93f1e3c3205e5a0c4eb62f1ca15fd0e739d721e9408bf2b4b4189d6c59091a4c4f01315885aec3771a4bd25f92497ca589d34d1f6a1271d882a60b532acf7f5501337cb5c7bf7eb602b854b0025fd12b32f4986bfa1ce73af5152a7f5cc739cfbec1cb2989b8b6772d8c05710171014ffd9342374aa7ff3fbf7688e7bf73015c405c40798624f6d5d4b27fd20f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e34f298b46ffb52b1a67818fb5243d2335502f2d06275b1721e9f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d8365d039408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe940baa681fa50400814106e36fdc6de53168df52848fd24a8f5585700f36277f4085f2b10649cb9fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f408af2b10649cab5073f5b6ba1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d8369c083c7c6c56496d07abe94640a681fa504010940b971a76e36f29c37de6c96e4593e94034a436cca0801028266e083704ea98b46ffc455856df79d799f7f049fc7937a92d87a54ae73a4e419272b616d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b616d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d83136d87408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae340b81129c37def6c96df697e94032a436cca0801028215c6deb8d36a62d1bf52848fd24a8f558578010b2eff7f0a9fc7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4f7f0aa1c7937a92d87a54ae73a4e419272b627d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d8313c217c7c6c56496d07abe94640a681fa50401094086e34cdc136a70df7b6c96df697e94032a436cca0801028215c6deb8d38a62d1bfc47f039fc7937a92d87a54ae73a4e419272b60697968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b60697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff55850b6165f07f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d8369a719408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e36e5c65d5386fbd6c96df697e94032a436cca0801028215c6ddb8cbea62d1bf52848fd24a8f5585136269f73f7f0b9fc7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9f7f0ba1c7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad880bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d830b4d07c7c6c56496d07abe94640a681fa5040109408ae340b826d4e1bef76c96df697e94032a436cca0801028215c6deb810a98b46ffc4558569f70026ff7f049fc7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9f7f04a1c7937a92d87a54ae73a4e419272b600af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad802bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d8365d781408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496dc34fd282129a88950401094002e32ddc69a5386fbdf6c96e4593e94642a681d8a0801028176e34edc0854c5a37f52848fd24a8f55857de78416bf7f0a9fc7937a92d87a54ae73a4e419272b2112f2d06275b17191a5fd0e739d721e9f7f0aa1c7937a92d87a54ae73a4e419272b2112f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cac844bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d836c416fc7c6c56496d07abe94134a6a2254100425002b816ee09f5386fbdf6c96e4593e94642a681d8a0801028176e34edc03ca62d1bfc455856990bac8bf7f049fc7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b22697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cac89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d83138107408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe94640a436cca0801028072e34fdc03ca62d1bf52848fd24a8f558579d101e07f7f0a9fc7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9f7f0aa1c7937a92d87a54ae73a4e419272b6202f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad880bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d83684d07c7c6c56496d07abe94640a681fa5040109403d7000b81129c37def6c96e4593e94642a681d8a0801028176e34edc0894c5a37fc45583132db97f049fc7937a92d87a54ae73a4e419272b61657968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b61657968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad8595e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d8369a703408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e041700ea9c37def6c96d07abe94640a436cca0801028072e01db80754c5a37f52848fd24a8f5585640179c7ff7f0a9fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f0aa1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d83684f8bc7c6c56496d07abe94640a681fa504010940b371b0dc6df5386fbd6c96d07abe94640a436cca0801028072e01db80654c5a37fc45585136f36d03f7f049fc7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9f7f04a1c7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad882bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d836596d9408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96d07abe94640a436cca0801028072e34fdc0854c5a37f52848fd24a8f7f099fc7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4f7f09a1c7937a92d87a54ae73a4e419272b61797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff558569f70026ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c80f0d8368007bc7c6c56496d07abe94640a681fa50401094102e342b80794e1bef76c96df697e94032a436cca0801028215c6ddb810298b46ffc455856996c4177f7f059fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d83680f07408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae34cdc6c4a70df7b6c96df697e94032a436cca0801028215c6deb8cbea62d1bf52848fd24a8fc97f099fc7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9f7f09a1c7937a92d87a54ae73a4e419272b620af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad882bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d8365f7dcc6c5c46496d07abe94640a681fa504010940b771905c0854e1bef76c96e4593e94642a681d8a0801028176e34e5c6df53168dfc3558579d109e7bf7f049fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f04a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d83105d7b408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094102e342b80794e1bef76c96df697e94032a436cca0801028215c6deb8d34a62d1bf52848fd24a8f55856990b627ff7f0a9fc7937a92d87a54ae73a4e419272b62657968313ad8b8c8d2fe8739ceb90f4f7f0aa1c7937a92d87a54ae73a4e419272b62657968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad8995e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c9c80f0d83644f8bc7c6c56496d07abe94640a681fa50401094082e32fdc682a70df7b6c96df697e94032a436cca0801028215c6ddb820a98b46ffc455856990bac8bf7f049fc7937a92d87a54ae73a4e419272b6cb2bcb4189d6c5c64697f439ce75c87a77f04a2c7937a92d87a54ae73a4e419272b6cb2bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2caf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +2730, +<<"3f8b15886196dc34fd280654d27eea0801128166e341b8d3ea62d1bf5f88352398ac74acb37f0f0d8365a0b7cfcecd6496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96df697e94032a436cca0801028215c6ddb8cb4a62d1bfcc558479f71d6f7f069fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f06a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c5c40f0d8365f719d5d4d36496d07abe94640a681fa504010940b7702fdc6dc5386fbd6c96df697e94032a436cca0801028215c6dfb807d4c5a37fd2cac9c8c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c60f0d83640cb9d7d6d5c56c96e4593e94034a436cca0801028266e083704ca98b46ffd35585134db6c87f7f059fc7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad842bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cccb0f0d830bcd33dcdbdaca6c96df697e94032a436cca0801028215c6deb8d014c5a37fd855856990b6177f7f039fc7937a92d87a54ae73a4e419272b6cbabcb4189d6c5c64697f439ce75c87a77f03a2c7937a92d87a54ae73a4e419272b6cbabcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2eaf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d1d00f0d8371f743408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627fd26c96d07abe94640a436cca0801028072e01db81654c5a37f52848fd24a8f5585640179d77fc6c5c4">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d7d60f0d8365f71ec3c2c16496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe94640a436cca0801028072e34fdc0094c5a37fc155856990bac87f7f0a9fc7937a92d87a54ae73a4e419272b62757968313ad8b8c8d2fe8739ceb90f4f7f0aa1c7937a92d87a54ae73a4e419272b62757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88ddc85895aec3771a4bf4a54759093d85fa5291f9587316007f7b8b84842d695b05443c86aa6f7f0c842507417f798624f6d5d4b27f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d814c5a37fcf0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028c89c524204515450f4085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8d854c5a37f5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023436d0408b4d8327535532c848d36a3f8b96b2288324aa26c193a964c8c7c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3d45894a8eb10649cbf4a54759093d85fa52bb0ddc692ffc20f0d023433c85f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402c67689e7bf73015c405c2cff408ff2b5869a74d2590c35a73a1350e92f93b075a4f601d680bd94af1ca15fd0e739d721e97f1ad2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f52f70da3521bfa06a5fc1c46a6bdd08d4d7baf8d4d5c36a97786e52f6ad0a64d3bd4d5bef29af86d5376f87f9f0f1fa29d29aee30c0e45fd18b44948ea1cc5b1721e962b3792d1fe1a481971b03c1f84c02f58a1a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd2948fcac398b0037b012a6c96dc34fd280654d27eea0801128166e341b8d814c5a37f6496dc34fd280654d27eea0801128166e341b8d814c5a37fcbce550130d1e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db2a62d1bf5f88352398ac74acb37f0f0d8369d139e2e1e06496d07abe94640a681fa504010940bb71b6ae002a70df7b6c96df697e94032a436cca0801028215c6deb8cb8a62d1bfe055841042079f7f1d9fc7937a92d87a54ae73a4e419272b617d7968313ad8b8c8d2fe8739ceb90f4f7f1da1c7937a92d87a54ae73a4e419272b617d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85f5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c5c40f0d8369a6597f1b88ea52d6b0e83772ff7f0dff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94034a65b6850401094002e01eb8dbaa70df7b6c96d07abe94640a436cca0801028072e34fdc0b2a62d1bf52848fd24a8f55856990bacb9f7f089fc7937a92d87a54ae73a4e419272b6cbebcb4189d6c5c64697f439ce75c87a77f08a2c7937a92d87a54ae73a4e419272b6cbebcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2faf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cfce0f0d83138ebbc7c6c56496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe94640a436cca0801028072e34fdc038a62d1bfc455856990bacb7f7f049fc7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d5d40f0d83640f07cdcccbc36c96df697e94032a436cca0801028215c6ddb8db4a62d1bfc955850b8d3ce3bf7f039fc7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9f7f03a1c7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad842bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dad90f0d8365a6ddd2d1d06496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96df697e94032a436cca0801028215c6deb8cbea62d1bfcf55856996c420ff7f049fc7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b62717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db2a62d1bf5f88352398ac74acb37f0f0d8369a659dad9d86496d07abe94640a681fa5040109408ae340b81129c37def6c96df697e94032a436cca0801028215c6deb8d094c5a37fd75585684d3820ff7f069fc7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c5c40f0d8371a79c408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627fd96c96e4593e94642a681d8a0801028176e34e5c6dc53168dfdfde7f059fc7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb405e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cccb0f0d8369e7dfc4c3c2ca6c96e4593e94034a436cca0801028266e08371a0a98b46ff52848fd24a8f7f039fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff55856df79d75ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2d10f0d8365f783cac9c86496dc34fd2816d4d444a820084a099b8266e01c5386fbdf6c96e4593e94642a681d8a0801028176e34e5c6dd53168dfc455856990b8f3bf7f059fc7937a92d87a54ae73a4e419272b210af2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b210af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cac842bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d8d70f0d8375965ed0cfce6496dd6d5f4a044a65b6a5040109410ae01cb8d3ea70df7b6c96d07abe940baa681fa5040081410ae001719694c5a37fca5585700f36cb3f7f049fc7937a92d87a54ae73a4e419272b416d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b416d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad05b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dedd0f0d836dc681d6d5d46496d07abe94640a681fa5040109408ae34f5c65c5386fbd6c96e4593e94642a681d8a0801028176e34edc0054c5a37fd055857de78406ff7f049fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db2a62d1bf5f88352398ac74acb37f0f0d8369c03fdedddc6496d07abe94640a681fa5040109408ae340b82694e1bef76c96df697e94032a436cca0801028215c6ddb82694c5a37fd8558579d0bc17ff7f069fc7937a92d87a54ae73a4e419272b6c817968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b6c817968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb205e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c5c40f0d8365d75c408721eaa8a4498f5788ea52d6b0e83772ff4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e32fdc682a70df7b6c96df697e94032a436cca0801028215c6ddb8c814c5a37f52848fd24a8f55856990b6cb3f7f089fc7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4f7f08a1c7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb215e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cfce0f0d8369b6c3c7c6c56496d07abe94640a681fa50401094086e32ddc1054e1bef76c96df697e940baa436cca080102817ae340b801298b46ffc45585682db6f3bf7f049fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f04a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d5d40f0d8369a6c5cdcccb6496d07abe94640a681fa50401094102e341b8c854e1bef76c96df697e94032a436cca0801028215c6ddb8d34a62d1bfca558465c7db17dbdad9">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d8d70f0d831004cfd0cfce6496d07abe94640a681fa50401094102e34ddc6db5386fbd6c96df697e94032a436cca0801028215c6ddb8d36a62d1bfcd7f069fc7937a92d87a54ae73a4e419272b6cb2bcb4189d6c5c64697f439ce75c87a77f06a2c7937a92d87a54ae73a4e419272b6cb2bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2caf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff558571e134f3bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8d854c5a37fd66c96df697e94038a681d8a0801128266e34f5c03aa62d1bfd37b8b84842d695b05443c86aa6f5a839bd9ab4089f2b20b6772c8b47ebf94f1e3c05a697968313ad8bd36c8bfa1ce73ae43d3408bf2b4b4189d6c59091a4c4f01315885aec3771a4b4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5501337cecc7bf7eb602b854b04fafe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb26846e954ffe7f7f4a63dfbf5b015c2a58012fe895997a4c35fd0e739d7a8a953fae639ce7df60e594c4dc5b3b96c602b880b880a7fec9a11ba553ff9fdff7688e7bf73015c405c40798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff0f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e36153168dff6a5634cf031f6a487a466aa05e5a0c4eb62e43d3f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db2a62d1bf5f88352398ac74acb37f0f0d8369c75bc14003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e34d5c0bea70df7b6c96df697e94032a436cca0801028215c6dfb81714c5a37f52848fd24a8f558479f71d7f7f199fc7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9f7f19a1c7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad804bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d83642cbfcac6c56496d07abe94640a681fa50401094082e01fb8db8a70df7b6c96df697e94032a436cca0801028215c6dfb800298b46ffc4558479f71d077f049fc7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b6c857968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb215e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cecd0f0d83642e3bd0cccb6496d07abe94640a681fa5040109408ae340b81129c37def6c96df697e94032a436cca0801028215c6deb82714c5a37fca55856990b6cb3f7f049fc7937a92d87a54ae73a4e419272b616d7968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b616d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d4d30f0d83684277d6d2d16496d07abe94640a681fa5040109408ae340b826d4e1bef76c96df697e94032a436cca0801028215c6ddb8d38a62d1bfd0cf7f039fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d9d80f0d8313ae3ddbd7d66496d07abe94640a681fa50401094086e34cdc0094e1bef76c96df697e94032a436cca0801028215c6ddb807d4c5a37fd57f039fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff5585101c69e7ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dfde0f0d8369975b408721eaa8a4498f5788ea52d6b0e83772ffdedd6496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe940baa681fa50400814106e36fdc640a62d1bfdc55857de784cb7f7f069fc7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db2a62d1bf5f88352398ac74acb37f0f0d8365b039c64003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa504010940bd71b15c69d5386fbd6c96df697e94032a436cca0801028215c6ddb8cb8a62d1bf52848fd24a8f55856990b6cb5f7f099fc7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4f7f09a1c7937a92d87a54ae73a4e419272b60757968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81d5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d8365b10bcfc6c5ce6c96d07abe940baa681fa50400814106e36fdc134a62d1bfc355857de784cb3fdfdedd">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cac85895aec3771a4bf4a54759093d85fa5291f9587316007f7b8b84842d695b05443c86aa6f7f14842507417f798624f6d5d4b27f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db4a62d1bfcf0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f4002747389028c81d5242062a8a14085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8db6a62d1bf5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d023435cf408b4d8327535532c848d36a3f8b96b2288324aa26c193a964c8c7c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c37689e7bf73015c405c2cff408ff2b5869a74d2590c35a73a1350e92f93b075a4f6004f857b295e3942bfa1ce73ae43d37f17d2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f52f70da3521bfa06a5fc1c46a6bdd08d4d7baf8d4d5c36a97786e52f6ad0a64d3bd4d5bef29af86d5376f87f9f58a1a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd2948fcac398b0037b012a6c96dc34fd280654d27eea0801128166e341b8db4a62d1bf6496dc34fd280654d27eea0801128166e341b8db4a62d1bfc8cb550130ce7f1088ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ccdd5894a8eb10649cbf4a54759093d85fa52bb0ddc692ffcb0f0d023433d15f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cedfbfcc0f0d023433d2be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402cfc97f0993b075a4f601f1057b295e3942bfa1ce73ae43d3c8c7c6c5c4ced1c3d3c20f1fff0d9d29aee30c0e45fd18b44948ea1cc5b1721e960d4d7fe7ec01f21f8440eb8f3a16be37c0cfc4481d09804cbad32db420bbf176008be29805f16c13a535aacc2a8b0aa2c3e3c785e5a0c4eb62e43d2a8b0d739d2742a2c350d0321e9a4f521516148e642a2c350d263d43a065b0f50ed498881d5222b190a39293546426c1a4c7a95161ac7315954587e2c801">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db6a62d1bfe26c96df697e94038a681d8a0801128266e34f5c03aa62d1bfdfd7d34089f2b20b6772c8b47ebf94f1e3c0595e5a0c4eb62f4db22fe8739ceb90f4ff408bf2b4b4189d6c59091a4c4f01315885aec3771a4bd35f92497ca589d34d1f6a1271d882a60b532acf7fc97cecc7bf7eb602b854b02f2fe895997a6d917f439ce75ea2a54feb98e739f7d83965313716cee5b180ae202e2029ffb26846e954ffe7f7f4a63dfbf5b015c2a58012fe895997a4c35fd0e739d7a8a953fae639ce7df60e594c4dc5b3b96c602b880b880a7fec9a11ba553ff9fdff7688e7bf73015c405c40dbca0f0d8371c6816496d07abe9413ca65b6850400b4a099b8c82e000a62d1bf0f28c6a0e41d06f63498f5405a96b50ab376d42acddb51f6a17cd66b0a88370d3f4a002b693f758400b4a059b8d06e36da98b46ffb52b1a67818fb5243d2335502f2d06275b1721e9f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db8a62d1bf5f88352398ac74acb37f0f0d836db137cd7f14ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e32fdc682a70df7b6c96e4593e94034a436cca0801028266e08371a1298b46ff52848fd24a8f55856996c426bf4085f2b10649cb9fc7937a92d87a54ae73a4e419272b60657968313ad8b8c8d2fe8739ceb90f4f408af2b10649cab5073f5b6ba1c7937a92d87a54ae73a4e419272b60657968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad8195e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c8c70f0d8369c6c3d6c6c56496d07abe94640a681fa50401094082e083719029c37def6c96df697e94032a436cca0801028215c6dfb80794c5a37fc455850b8e09c6bf7f049fc7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cecd0f0d8369969adccccb6496d07abe94640a681fa5040109408ae34cdc6c4a70df7b6c96d07abe94640a436cca0801028072e01db80714c5a37fca5585640179e07f7f049fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d4d30f0d83699745408721eaa8a4498f5788ea52d6b0e83772ffd3d26496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96df697e94032a436cca0801028215c6deb8cb6a62d1bfd155856990b6cb9f7f059fc7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dbda0f0d8369a69cc4d9d8c36c96df697e94032a436cca0801028215c6deb8d34a62d1bfd655856990b8f3ff7f039fc7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a77f03a2c7937a92d87a54ae73a4e419272b6cb4bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2d2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db8a62d1bf5f88352398ac74acb37f0f0d8369a643cb4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627fcc6c96e4593e94642a681d8a0801028176e34e5c69c53168dfdf7f069fc7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9f7f06a1c7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad842bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb55856990b8f83f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c50f0d840b2f059fd2c4c36496dc34fd280654dc5ad410042504cdc68371a0a9c37def6c96d07abe940baa681fa5040081410ae001702ca98b46ff52848fd24a8f5585700f36cb3f7f069fc7937a92d87a54ae73a4e419272b40797968313ad8b8c8d2fe8739ceb90f4f7f06a1c7937a92d87a54ae73a4e419272b40797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad01e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cdcc0f0d8310020fd9cbcadf6c96df697e94032a436cca0801028215c6deb8d894c5a37fc355856990b6cbbf7f039fc7937a92d87a54ae73a4e419272b6cb6bcb4189d6c5c64697f439ce75c87a77f03a2c7937a92d87a54ae73a4e419272b6cb6bcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2daf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d2d10f0d8369b7dcded0cf6496d07abe94640a681fa5040109408ae340b82694e1bef76c96d07abe94640a436cca0801028072e01db82754c5a37fc9558464017c007f049fc7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b6d017968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb405e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d8d70f0d83699799408721eaa8a4498f5788ea52d6b0e83772ffd7d66496d07abe94640a681fa5040109408ae340b826d4e1bef76c96df697e94032a436cca0801028215c6deb8d854c5a37fd0c3c2c1558479f71e17">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dcdb0f0d8365b007c1dad96496d07abe94640a681fa5040109403d7002b810a9c37def6c96df697e94032a436cca0801028215c6dfb816d4c5a37fd3558479f71d677f089fc7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4f7f08a1c7937a92d87a54ae73a4e419272b60717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db8a62d1bf5f88352398ac74acb37f0f0d8365e13fc94003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae340b810a9c37def6c96e4593e94034a436cca0801028266e083704ca98b46ffdd558579d0b8d39f7f089fc7937a92d87a54ae73a4e419272b62657968313ad8b8c8d2fe8739ceb90f4f7f08a1c7937a92d87a54ae73a4e419272b62657968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad8995e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c7c60f0d8365d783d1c5c46496d07abe94640a681fa50401094102e34e5c03aa70df7b6c96d07abe94640a436cca0801028072e34fdc032a62d1bf52848fd24a8f55856996c4267f7f059fc7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b6012f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad804bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cecd0f0d83682f39d8cccb6496d07abe94640a681fa50401094102e341b8c854e1bef7d7c3558565c65f03ff7f039fc7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b62697968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89a5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d3d20f0d8365e0b5ddd1d06496d07abe94640a681fa5040109408ae34cdc6c4a70df7bd9c87f029fc7937a92d87a54ae73a4e419272b6cbabcb4189d6c5c64697f439ce75c87a77f02a2c7937a92d87a54ae73a4e419272b6cbabcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2eaf2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeffde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d7d60f0d83134ebd408721eaa8a4498f5788ea52d6b0e83772ffd6d56496d07abe94640a681fa5040109408ae340b826d4e1bef76c96df697e94032a436cca0801028215c6deb810a98b46ffce55856990b6cb9f7f059fc7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b610af2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad842bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dedd0f0d8375979dc4dcdb6496d07abe94640a681fa5040109408ae32d5c13ca70df7b6c96e4593e94642a681d8a0801028176e34edc038a62d1bfd455856990bacbffdad9d8">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db8a62d1bf5f88352398ac74acb37f0f0d836de741c94003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa5040109408ae01ab81029c37def6c96d07abe94640a436cca0801028072e01db81754c5a37fdb558565975f65ef7f0b9fc7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4f7f0ba1c7937a92d87a54ae73a4e419272b626d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c7c60f0d836c4017d1c5c46496d07abe94640a681fa5040109408ae340b81129c37def6c96df697e94032a436cca0801028215c6ddb8d894c5a37f52848fd24a8f55856990bacbdf7f059fc7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4f7f05a1c7937a92d87a54ae73a4e419272b606d7968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad81b5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cecd0f0d8313c207d8cccbd16c96df697e94032a436cca0801028215c6deb8c854c5a37fc3d67f029fc7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a77f02a2c7937a92d87a54ae73a4e419272b6cbcbcb4189d6c5c64697f439ce75c87a6e3ccff7cae0ae152b9ce9390649cadb2f2f2d06275b17191a5fd0e739d721e9b8f32a7f48ed69a4604bbabeedf0ddcf81ffeff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88d2d10f0d83640d35dcd0cf6496d07abe94640a681fa5040109408ae34cdc6c4a70df7b6c96d07abe94640a436cca0801028072e01db8c814c5a37fc87f039fc7937a92d87a54ae73a4e419272b61717968313ad8b8c8d2fe8739ceb90f4f7f03a1c7937a92d87a54ae73a4e419272b61717968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad85c5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff5583132e33">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8d70f0d8369e65a408721eaa8a4498f5788ea52d6b0e83772ffd7d6dc6c96df697e94032a436cca0801028215c6dfb80714c5a37fce558479f71e177f059fc7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9f7f05a1c7937a92d87a54ae73a4e419272b6212f2d06275b17191a5fd0e739d721e9b8f337cad0ae152b9ce9390649cad884bcb4189d6c5c64697f439ce75c87a6e3cca9fd23b5a691812eeafbb7c3773e07ffb">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88dedd0f0d8365971bc3dcdb6496d07abe94640a681fa50401094082e36e5c03aa70df7b6c96df697e94032a436cca0801028215c6deb8d38a62d1bfd45584136268417f049fc7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4f7f04a1c7937a92d87a54ae73a4e419272b62797968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cad89e5e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8db8a62d1bf5f88352398ac74acb37f0f0d8365f75ecb4003703370ff2bacf4189eac2cb07f33a535dc61835529d7f439ce75c87a58f0c918ad9ad7f34d1fcfd297b5c1fcde875297f76b52f6adaa5ee1b5486fe852fe0e2a6f87229af742a6bdd7d4c9c61329938df3297b569329bf0673a9ab7eb329ab86d52fe0ce653743a0ca6adfb4ca70d3b4ca6be174ca64d37d4d78f9a9ab4e753869c8a6be1b54c3934a97b568534c3c54c9a77a97f06852f69dea6edf0a9af567531e0854d7b70299f55e5316ae3fcf5892a47e561cc58190b6cb800001f55db1d0627f6496d07abe94640a681fa50401094082e32fdc682a70df7b6c96d07abe94640a436cca0801028072e34fdc1014c5a37fde558579d101d7bf7f089fc7937a92d87a54ae73a4e419272b6c897968313ad8b8c8d2fe8739ceb90f4f7f08a1c7937a92d87a54ae73a4e419272b6c897968313ad8b8c8d2fe8739ceb90f4dc7997cae0ae152b9ce9390649cadb225e5a0c4eb62e3234bfa1ce73ae43d371e654fe91dad348c097757ddbe1bb9f03ffdff">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c7c55895aec3771a4bf4a54759093d85fa5291f9587316007f7b8b84842d695b05443c86aa6f7f16842507417f798624f6d5d4b27f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8dbaa62d1bfcc0f28c332505420c7a8d20400005b702cbef38ebf00f8761fba3d6818ffe4a82a0200002db8165f79c75f83ed4ac699e063ed490f48cd540b8ea1d1e9262217f439ce75c87a7f400274738a028cba2524232cc551434085aec1cd48ff86a8eb10649cbf6496dc34fd280654d27eea0801128166e341b8dbca62d1bf5899a8eb10649cbf4a5761bb8d25fa529b5095ac2f71d0690692ff0f0d02343652848fd24a8f408b4d8327535532c848d36a3f8b96b2288324aa26c193a964c9c8c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402c57689e7bf73015c405c2cff408ff2b5869a74d2590c35a73a1350e92f8db075a4f601c7195eca578e50ff7f16d2acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f52f70da3521bfa06a5fc1c46a6bdd08d4d7baf8d4d5c36a97786e52f6ad0a64d3bd4d5bef29af86d5376f87f9f0f1fa29d29aee30c0e45fd18b44948ea1cc5b1721e962b3792d1fe1a4819744003ff09805f58a1a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd2948fcac398b0037b012a6c96dc34fd280654d27eea0801128166e341b8dbaa62d1bf6496dc34fd280654d27eea0801128166e341b8dbaa62d1bfcacd550130d07f1288ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cedc5894a8eb10649cbf4a54759093d85fa52bb0ddc692ffcd0f0d023433d35f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0debfce0f0d023433d4be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0debfce0f0d023433d4be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e341b8dbca62d1bfdfc0cf0f0d023433d5bf">>, +[ +{<<":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">>} +] +} +]}. +{story_28, [ +{ +undefined, +<<"488264010f1f929d29aee30c78f1e17a0d5752c86a9721e9630f0d01306196dc34fd280654d27eea0801128166e059b8cbea62d1bf7686a0d34e94d727">>, +[ +{<<":status">>, <<"301">>}, +{<<"location">>, <<"http://www.linkedin.com/">>}, +{<<"content-length">>, <<"0">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:13:39 GMT">>}, +{<<"server">>, <<"lighttpd">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f288afc5b3e45b25fbd05e0ff4003703370f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff4087f2b5065adb4d2794c02f7de9db4f49f9e0c396bf2ee22ebc564d041f408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f7b8b84842d695b05443c86aa6f4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5886a8eb2127b0bf5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70ddc9550130798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb54919d29aee30c78f1e17a0d5752c86a9721e96c96df697e94640a6a2254100225042b8d337190a98b46ff5f8b497ca58e83ee3412c3569fcac10f0d8368426b4084f2b124ab04414b414d588ca47e561cc58190884d3c217f6496e4593e94640a6a22541002ca8215c69db82654c5a37f6196dc34fd280654d27eea0801128166e059b8d054c5a37fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c45f86497ca582211fc6cf0f0d830badbbc2588ca47e561cc5804cbee89c759f6496df3dbf4a01e521b6650400b2a001702f5c0b4a62d1bfc1c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d5c76c96d07abe9413ea6a225410022502edc0bb719694c5a37fc6c9d20f0d830840d7c5588ca47e561cc58190842f81d0ff6496df697e9413ea6a22541002ca8176e09ab8d894c5a37fc4cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d8ca6c96df697e94640a6a2254100225042b8d337190298b46ffc4d5cc0f0d8369d137c8588ca47e561cc58190884d81f07f6496e4593e94640a6a22541002ca8215c6c371b0a98b46ffc7cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbcd6c96df697e94640a6a2254100225042b8d33704fa98b46ffc7d8cf0f0d840bcdb21fcb588ca47e561cc58190884d89e7bf6496e4593e94640a6a22541002ca8215c6dbb807d4c5a37fcad2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ded0c3ceda7f1d94e7affdbfa9ff6e78db93c4adc9b33de4430c3041d20f0d84782d38d7ce588ca47e561cc58190884d3c00ff6496e4593e94640a6a22541002ca8215c69db801298b46ffcdd5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e10f288fce12c0d3ed9631beefda958d33c0c7e07f01939b3a49e35038f8f397633811db1fa4430c3041dfdedd640130dc5f87352398ac4c697fdb6196dc34fd280654d27eea0801128166e059b8d32a62d1bf550131dbdad95886a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7d96c96df3dbf4a09b535112a080112817ee01eb806d4c5a37f5f89352398ac7958c43d5fe5c8dc0f0d03333631d8588ca47e561cc5819085e780d07f6496e4593e94640a6a22541002ca8115c65ab82694c5a37fc4df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ebdd6c96e4593e94642a6a225410022502fdc086e05a53168dff5f87352398ac5754dfe97f0a93bd7a4aaa96feff13e5f1469bdc5f31e1861820e1588ca47e561cc58190b4e32d34d76496dc34fd280129a4fdd41002ca8176e01ab82794c5a37f6196dc34fd280654d27eea0801128166e059b8d34a62d1bf0f0d8365a79fe5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f1e36c96d07abe940b2a436cca080112817ee019b8cbca62d1bfc3eee50f0d83081c17588ca47e561cc5804d34e899133f6496df697e940b2a436cca08016540bf700ddc69d53168dfc1e8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e7c2cfeae94088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37ff2ce7f37d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"880f0d840b4f3cf7eb6c96d07abe941094d444a820044a05bb8d86e05f53168dff4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb6196dc34fd280654d27eea0801128072e059b827d4c5a37f6496dc34fd280654d27eea080112817ae059b827d4c5a37fecf8558413620b7f5890a47e561cc581a644007d295db1d0627f7686c58703025c1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d023335f26c96e4593e941054ca3a941000d2817ee361b8c814c5a37fc46196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffdcfe55850b8f082e7f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497fc34085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d023335c9bec1c3dfbfc0c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f3a842507417f7b8b84842d695b05443c86aa6ffa6c96dc34fd280656d27eeb0801128166e059b8d36a62d1bf0f1388d0058058dd6e51395f911d75d0620d263d4c795ba0fb8d04b0d5a758a7aec3771a4bf4a54759360ea44a7b29fa529b5095ac2f71d0690692fd2948fcac398b038069e0036496dc34fd281029a4fdd410022502cdc0b371a6d4c5a37f0f0d83109f7b6196dc34fd280654d27eea0801128166e059b8d36a62d1bf76025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5e70f28caa4903607db0bcf3eb32d3320d60b92ba558657db17da85f359ac2a20d07abe94036b681fa58400b4a059b8166e34da98b46ffb52b1a67818fb5243d2335502fdad1d49416cee55c87a7f7f14b7bdae0fe74eac8a5fddad4bdab6a9a725f52f70da3521bfa06a5fc1c46a6bdd09d4d7baf9d4d5c36a9ba1d0353269bea5ed5a14d30f1fe758a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc86496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d023335c2c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c75a839bd9ab6496dc34fd281754d27eea0801128166e059b8d36a62d1bfc40f0d83085a077f0b88ea52d6b0e83772ff589caec3771a4bf4a54759360ea44a7b29fa5291f958731600880fb8007f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89c9cbc16496d07abe940054ca3a940bef814002e001700053168dffc70f0d0130c058b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28aea0754d07f3de017c503aa680b52d6a3f9fb53896c418f5401fb52f9e919aa828355d4b21aa5c87a7ed4d634cf0317f08f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff7f2994e935b77cdff37b5bd0b284d9b7839ec1bbc4107f408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fd1d3f55886a8eb2127b0bf5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd6196dc34fd280654d27eea0801128166e059b8d3ea62d1bf550130798624f6d5d4b27fcbcdf74087f2b4a85adb4d279778a08de091a648d099948065d8c520e40b6c8c92b4d47f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887686a0d34e94d7270f28aea0754d07f3de017c503aa680b52d6a3f9fb53896c418f5401fb52f9e919aa828355d4b21aa5c87a7ed4d634cf031c8c7c6d9db640130c6f8c4c3c2c1ced0fac052848fd24a8f0f138afe42e3a2136f09d77f9f6c96e4593e941094cb6d4a08010a8205c13d700053168dff0f0d83085b07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc54919d29aee30c78f1e17a0d5752c86a9721e96c96df3dbf4a05c521b6650400894006e09ab8d094c5a37ff8ded40f0d83081a6b588ca47e561cc5804d3a20882fff6496c361be940b8a436cca08016540b9702d5c03ea62d1bf6196dc34fd280654d27eea0801128166e059b8d814c5a37fd5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1c26c96e4593e940baa6a225410022504cdc03f71b1298b46ff5f86497ca582211fe3d90f0d837c2e3d588ca47e561cc5819005c79965bf6496c361be940bca6a22541002ca8176e05fb826d4c5a37fc2d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f76196dc34fd280654d27eea0801128166e059b8d854c5a37f5f87352398ac4c697fcedbf8f7e95886a8eb10649cbff7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88e9bfe0eadf0f0d023335c0e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d023335deeff5eeedbfe855840b8f0842ecf1eb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89e7e9dfdbc10f0d0130dddaeb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d9ca6c96c361be940094d27eea080112817ae041719714c5a37f5f87352398ac5754dfeb7f1a942c3ef479d3c3478f397c624fae2f98f0c30c107fe2588ca47e561cc58190b626df7d9f6496dd6d5f4a0195349fba8200595020b8276e01a53168dfc60f0d821099e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88decf6c96dc34fd2800a9b8b5a820044a00171b7ae01f53168dffc2ef7f0293bd7a4aaa96feff13e5f1469bdc5f31e1861820e6588ca47e561cc5804e01a79e745f6496dd6d5f4a002a6e2d6a0801654006e00371a654c5a37fca0f0d840842e03fe6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f28aea0754d07f3de017c503aa680b52d6a3f9fb53896c418f5401fb52f9e919aa828355d4b21aa5c87a7ed4d634cf031e17f019487f76c7936bfc5c7a5bbb28e7fbef61f707c4107e0f3f5d7dfdedd6196dc34fd280654d27eea0801128166e059b8db4a62d1bfdcdbe8eaca7f1b96005f69b8c410cadb658c8e902d09b702f92400c2291dd80f138afe42e3a2136f09d77f9fd70f0d8369d0b5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f6ccedf7ec0f0d023335bfef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e7c0cdddea4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fface7f28d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"880f0d023335ef6c96e4593e941054ca3a941000d2817ee361b8c814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb6196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffd47b8b84842d695b05443c86aa6f55850b8f084e7f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497f7686c58703025c1f4085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"895f911d75d0620d263d4c795ba0fb8d04b0d5a7c3f9f5cd0f0d0130f7f4bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f30f28aea0754d07f3de017c503aa680b52d6a3f9fb53896c418f5401fb52f9e919aa828355d4b21aa5c87a7ed4d634cf031f27f0f94f19c3af226bc7b899eeeda01af8f5367cfb2083ff1c4c0e8f0efee6196dc34fd280654d27eea0801128166e059b8dbea62d1bfedecf9fbdb7f0f97202391a9442906d3ad3e41102d38dc8095b71a79e8c527e90f138afe42e3a2136f09d77f9fe80f0d8369d0b5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cebfddedfacdccc2dccb">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"887f3b842507417fde58a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc46496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d023335c276025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d0233355a839bd9abcfcecdcce2cb55850b8f09907fcac9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e3ccbf6496d07abe940054ca3a940bef814002e001700053168dffc60f0d0234337f0588ea52d6b0e83772ff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031f7f16f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff7f0c95effb8effadbd2d36cbdd67fdbbefd79c5dac9a083f408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fd3cff75886a8eb2127b0bf5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd6196dc34fd280654d27eea0801128166e05ab800a98b46ff550133798624f6d5d4b27fc9ccef7f12968e47c24648f85e295e7c001b4f36f81d6491842318cb52848fd24a8f0f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d83702eb9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca54919d29aee30c78f1e17a0d5752c86a9721e96c96df697e940094d444a820044a01db8db3704ca98b46ff5f8b497ca58e83ee3412c3569fdfd20f0d836801174084f2b124ab04414b414d588ca47e561cc5804f3ad882f3ff6496e4593e940094d444a820059500edc6ddb810a98b46ff6196dc34fd280654d27eea0801128166e05ab801298b46ffd3">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a88d1c46c96d07abe9413ea6a225410022502edc0bb719694c5a37f5f87352398ac5754df5a839bd9ab7b8b84842d695b05443c86aa6f0f0d03363238c5588ba47e561cc581965e0be0776496e4593e940894be522820044a05cb8cbf700fa98b46ffc4408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c3ccc4c3c20f0d83081a6bc9588ca47e561cc58190b4f81c685f6496dd6d5f4a0195349fba8200595000b8cbd700d298b46fc8c16c96c361be940094d27eea080112817ae32e5c644a62d1bf4087f2b5065adb4d2793cda266caee34789f26cf135fdf93d221861820">>, +[ +{<<":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==">>} +] +}, +{ +undefined, +<<"88c2d06c96e4593e94642a6a2254100225000b8205c03ca62d1bff5f86497ca582211fc8c90f0d840baf89efcf588ca47e561cc5819089903adb5f6496df3dbf4a321535112a0801654002e09cb8cb8a62d1bfcec7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c654919d29aee30c78f1e17a0d5752c86a9721e96c96df697e94132a6a2254100225020b8105c680a62d1bffc2cc7f0594e7affdbfa9ff6e78db93c4adc9b33de4430c3041ce0f0d84085e719f4084f2b124ab04414b414d588ca47e561cc5819036eb4fb4e76496e4593e94132a6a22541002ca8105c0b9704f298b46ff6196dc34fd280654d27eea0801128166e05ab801298b46ffce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdc46c96d07abe941094d444a820044a05db8105c684a62d1bff5f8b497ca58e83ee3412c3569f7b8b84842d695b05443c86aa6f5a839bd9ab0f0d8475d0043fc5588ca47e561cc5819036165c79ff6496df697e941094d444a820059502edc0b77190a98b46ffc4408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03333532c36196dc34fd280654d27eea0801128166e05ab806d4c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031f4003703370f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff7f0f95effb8effadbd2d36cbdd67fdbbefd79c5dac9a083f408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fc94085aec1cd48ff86a8eb10649cbf6401305886a8eb2127b0bf5f87352398ac4c697f5b842d4b70dd6196dc34fd280654d27eea0801128166e05ab80694c5a37f550131798624f6d5d4b27fcdd05886a8eb10649cbf4087f2b4a85adb4d27968e47c24648f85e295e7c001b4f36f81d6491842318cb52848fd24a8f0f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d83702eb9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96c361be940094d27eea080112807ee005719754c5a37f6496c361be9403ea693f75040089403f7002b8cbaa62d1bf5f911d75d0620d263d4c1c88ad6b0a8acf520b409221ea496a4ac9b0752252d8b16a21e435537f858cd50ecf5f0f0d83085e7358a7a47e561cc581b032c845f4a576c74189f4a54759360ea44a7b29fa529b5095ac2f71d0690692ff6196dc34fd280654d27eea0801128166e05ab806d4c5a37f4087aaa21ca4498f57842507417f408721eaa8a4498f5788cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e76196dc34fd280654d27eea0801128166e05ab80714c5a37fd0cc7f0188ea52d6b0e83772ff4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbfcf4003703370d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"887f03842507417f5f87352398ac4c697f58a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc26496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d023335c776025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d0233355a839bd9ab6c96e4593e941054ca3a941000d2817ee361b8c814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb6196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffc67b8b84842d695b05443c86aa6f55850b8f09977f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497f7686c58703025c1fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d023335c4cdc2c5cabfc0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89cac1c66496d07abe940054ca3a940bef814002e001700053168dffd20f0d0130d158b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f288afc5b3e45b25fbd05e0ff7f10f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fc66c96e4593e94109486d99410022500fdc6dbb8d094c5a37f5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd6196dc34fd280654d27eea0801128166e05ab80794c5a37f4087f2b4a85adb4d2797680e0a591a948f3f1b8cb4e14a28dc0bed806fbcd006df4087f2b5065adb4d2793d98b3bfbde347cc11db9858b8deae786bd9041550131798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031fc97f0394b2fd17b168d3d2bb2c467e1ab4578e7cb93c4107c9d14085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5886a8eb2127b0bfcac96196dc34fd280654d27eea0801128166e05ab807d4c5a37f550130c6c5c45886a8eb10649cbf7f0b968e47c24648f85e295e7c001b4f36f81d6491842318cb52848fd24a8f0f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03333532cac5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f288afc5b3e45b25fbd05e0ff4003703370f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f7b8b84842d695b05443c86aa6f6c96e4593e94109486d99410022500fdc6dbb8d094c5a37f5f87352398ac4c697f5b842d4b70ddcc7f0a97680e0a591a948f3f1b8cb4e14a28dc0bed806fbcd006df7f1294bd7f5eff4c68e3e3ce6d98735afd3e910c30c107cd798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff5a839bd9abcf6401304085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb54919d29aee30c78f1e17a0d5752c86a9721e96c96df697e940094d444a820044a05db807ee34d298b46ffc8ca7f0694e7affdbfa9ff6e78db93c4adc9b33de4430c3041c30f0d0236344084f2b124ab04414b414d588ca47e561cc5804f3c165e69df6496df3dbf4a019535112a0801654006e01ab8db8a62d1bf6196dc34fd280654d27eea0801128166e05ab807d4c5a37fc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2c46c96e4593e94642a6a225410022502fdc086e05a53168dff5f87352398ac5754dfd17f0593342ea247eadfe27c9b0b2a18cf7910c30c107fca588ca47e561cc58190b4e32c85ff6496dc34fd280129a4fdd41002ca8176e00571a794c5a37fc30f0d03363033cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c10f0d83085b736c96c361be940bca435d8a08007940bd700cdc6da53168df0f13890880f36d05e65a0001768bca54a7d7f4e2e15c4e7f7fc8588ba47e561cc581b0bee34ebb6496e4593e940094ca3a941002ca8172e342b80754c5a37f6196dc34fd280654d27eea0801128166e05ab810298b46ffd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d8365a75c6c96df3dbf4a002a6e2d6a08010a8166e34e5c03ca62d1bf0f138a0b2169e79a75c780007fc2cc588ca47e561cc5804f89a65c71ef6496df697e9403ca6a22541002ca8005c13d719794c5a37fc1408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d830b4e376c96e4593e940b6a5f291410020502fdc6dcb807d4c5a37f0f1389089f134d09f71f0001c6d0588ba47e561cc581b744c804d76496df697e9403ca651d4a08016540bd71b76e36d298b46fc5c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d830ba06f6c96e4593e940b2a681fa504003ea01cb8d3b700e298b46f0f1389089a105f7442700007c94084f2b124ab04414b414d588ca47e561cc5804f3a175d13bf6496df697e940054d444a8200595042b8215c6dd53168dffc9c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d830bad3d6c96d07abe940b2a612c6a080112806ae05cb8db4a62d1bf0f13890b227c2071c0b40003cdc1588ca47e561cc5804fb81640c8bf6496dc34fd281129a88950400b2a01db806ae34253168dffccc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d831042df6c96d07abe94038a65b6a50400854086e09eb82794c5a37f0f13890b207596df740f0000d1c5588ca47e561cc5804f89b6c0d3df6496df697e9403ca6a22541002ca8066e32f5c0bca62d1bfd0cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c10f0d83101c6f6c96c361be940b6a436cca08007940397196ee32d298b46f0f13890882f3af082cb40003768bca54a7d7f4e2e15c4e7f7f588ca47e561cc5804cbef3ed3ad76497df3dbf4a01e521b6650400b2a01ab8dbd71a694c5a37ff6196dc34fd280654d27eea0801128166e05ab810298b46ffd1cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d830baebb6c96dd6d5f4a01c521aec504003ca05cb8d3571a0298b46f0f13890880eb60009e00000fc2cd588ca47e561cc5804d002db4dbdf6496df3dbf4a01e521b6650400b2a0457021b8d3ca62d1bfc1408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca0f0d83136cb96c96dd6d5f4a05d521aec50400854086e09cb800298b46ff0f13890b20640cbedb800001c6d1588ca47e561cc581903efb8dba0f6496d07abe9413ca6a22541002ca8076e099b8d014c5a37fc5c1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd0f0d830b4d376c96dd6d5f4a05a52f948a08007940bf71a76e09e53168df0f13890884f89e680d3c0003c94084f2b124ab04414b414d588ca47e561cc58190804cbc273f6496d07abe9413ca6a22541002ca816ae36edc6dc53168dfc9c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d10f0d84085d79bf6c96df697e941054c258d410022500d5c69ab82754c5a37f0f138a0b227dd7df69c740007fcdc1588ca47e561cc5804f89c75a75bf6496df697e9403ca6a22541002ca8076e01bb826d4c5a37fccc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e76196dc34fd280654d27eea0801128166e05ab810a98b46ff5f87352398ac4c697f798624f6d5d4b27fcc4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf4003703370d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"887f12842507417fc558a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc26496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d023335c876025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d0233355a839bd9ab6c96e4593e941054ca3a941000d2817ee361b8c814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb6196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffcd7b8b84842d695b05443c86aa6f55850b8f09a17f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497f7686c58703025c1fcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d023335c4cdc2c5d1bfc0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89d1c1c66496d07abe940054ca3a940bef814002e001700053168dff6196dc34fd280654d27eea0801128166e05ab810a98b46ff0f0d01307f0d88ea52d6b0e83772ff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d830802cf6c96dc34fd280654d27eea080112806ee34d5c65c53168df0f138a0b2d85f105a75c69e6ff768c86b19272ad78fe8e92b015c34084f2b124ab04414b414d588ca47e561cc58190b6079f65bf6497dd6d5f4a0195349fba820059500ddc699b80714c5a37ffc6c54087f2b5065adb4d2793b6ecd8cd4f77fc4f93c1edd76e6f4886186083d1cc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f288afc5b3e45b25fbd05e0ff4003703370f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fce6c96df3dbf4a01f521b665040089400ae340b82794c5a37f5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd6196dc34fd280654d27eea0801128166e05ab811298b46ff4087f2b4a85adb4d27978dd6647e424b2b447a4680071d69c78b2b8f3e503637d97f06934fb149ed8df9030ddab69dd118b747d7c4107f550131798624f6d5d4b27fd05a839bd9ab5886a8eb10649cbf6401304085aec1cd48ff86a8eb10649cbf0f0d8371b03b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d00f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031fcb7f0593ff6f6af55b26092872b134cf2e2ce7d0e4d041cb7b8b84842d695b05443c86aa6fc06496df3dbf4a002a651d4a05f740a0017000b800298b46ff5886a8eb2127b0bfcccb6196dc34fd280654d27eea0801128166e05ab81654c5a37f550130c8408721eaa8a4498f5788ea52d6b0e83772ffc8c77f0d968e47c24648f85e295e7c001b4f36f81d6491842318cb52848fd24a8f0f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03353337cdc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bf5f87497ca589d34d1f0f0d83134e3fcec6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"2469">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:14:13 GMT">>} +] +}, +{ +undefined, +<<"88c95f8b497ca58e83ee3412c3569f6c96df697e9403ca681fa50400894102e01fb80754c5a37f6196c361be940094d27eea080112816ae320b807d4c5a37f6496dc34fd280654d27eea080112816ae320b807d4c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbd3768344b2970f0d826441408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5584782f34df5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d25f88352398ac74acb37f6c96df697e941054c258d4100225001b8066e34fa98b46ff6196c361be940094d27eea0801128205c033704fa98b46ff6496dc34fd280654d27eea0801128205c033704fa98b46ffc65a839bd9abc60f0d8413416dcfc55584702f34dfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c354919d29aee30c78f1e17a0d5752c86a9721e96c96c361be940094d27eea080112817ae0417196d4c5a37f5f87352398ac5754df7b8b84842d695b05443c86aa6fc4588ca47e561cc58190b626dd783f6496dd6d5f4a0195349fba8200595020b8266e36d298b46f6196dc34fd280654d27eea0801128166e05ab81654c5a37f0f0d023934408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588768586b19272ff0f13a2fe5b95d211f03c020e4009965969a6d971d906571a6da724b8165b0800e34e39fcff6c96df697e94132a6a225410022502ddc65ab82714c5a37f52848fd24a8f5f911d75d0620d263d4c795ba0fb8d04b0d5a7c6cc5889a47e561cc58197000f6196dc34fd280654d27eea0801128166e05ab81694c5a37f0f0d830804f7c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c0ce6c96d07abe940bca65b6a504008940b37022b8dbaa62d1bfc20f138efe4b1b8c902d36d3521240dc07f3c9768dd06258741e54ad9326e61d5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d8313edb7c1c7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c66c96dc34fd280654d27eea0801128172e09bb8d3ea62d1bf6496e4593e9403aa693f7504008940b9704ddc69f53168df0f139f69c7dd75a035840d3acb8fb976edfbcd85eba179a6ef380c0f01f859134fff58a5a47e561cc58196dc69f6beabb63a0c4faa8eb26c1d4894f653f54da84ad617b8e83483497f408df2b1c88ad6b0b59ea90b62c693884bc5908339115b9f0f0d033437317f0c842507417f5f911d75d0620d263d4c1c88ad6b0a8acf520b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cc0f13a1fe5c6dd79c209f08da700c8c6d85b00c2f3cd34d89e65e92e044e8596c226dafe76c96df3dbf4a05b521aec504008140bb700edc13ea62d1bfcb5f87352398ac4c697fd3d9588da47e561cc5804169a69a780007ca0f0d023433d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf0f13a2fe5a249234ec6ec7205b95d6de65e6996e50880e8c81682d5c0b2d840071f7d9fe7f6c96df697e94132a6a225410022502ddc699b81654c5a37fcecdd5db588ca47e561cc58190b6cb800001cc0f0d840884c8bfd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"48826402db40037033709fbdae0fe6f6ad0a69878a9934ef5376f854d392fa9ab86d53269bea69d593f94085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf0f28bf213afb803493c7a66cfb52f9e919aa8292c861b92166b0a542e43d3f6a60f359ac2a20df3dbf4a004b681fa58400b2a059b816ae05b53168dff6a6b1a678180f1fc49d29aee30c0c8931ea5e92c861b92166b0a542e43d2c1ec8d05b3bb1523a23fca89de0659f8a91009f7fe2b2778197fe2a2401f8acde7249005903ce7c109d7dc09b2d2f0f0d0130d0c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88debe640130c0c6db6196dc34fd280654d27eea0801128166e05ab816d4c5a37f550130798624f6d5d4b27fdae4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e20f288afc5b3e45b25fbd05e0ff7f05f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fe06c96df697e940baa65b68504008941337020b8d36a62d1bf5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70ddc54087f2b4a85adb4d279708196a3046e11d7640caf85e0be3148f89f75c6a36de174087f2b5065adb4d2793c17f7784a247f1b78aed2616ea05b8334d041fc6c5e15a839bd9abcac9cb0f0d8371b03b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031fc67f019336bdd77d73dfc44d05d16fd186126b26e9a083c6e8cd6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5886a8eb2127b0bfc6c5cccbcae6c2ce7f05968e47c24648f85e295e7c001b4f36f81d6491842318cbe40f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3fe50f0d03353339c56196dc34fd280654d27eea0801128166e05ab81714c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"d5c5d4d3d20f28bf213afb803493c7a651f6a5f3d23355052590c37242cd614a85c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b3702d5c0b8a62d1bfed4d634cf0310f1fc49d29aee30c0c8931ea5e92c861b92166b0a542e43d2c1ec8d05b3bb1523a23fca89de0659f8a91009f7fe2b2778197fe2a2401f8acde7249005903ce7c109d7dc09b2d2f0f0d0130bedc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5d4d3d20f28b6cbbb06edd93569c97e0bd81966fe1c0edf7da75d7ef059ba06af357dfbad337dd75f17da9ac699e060f64682d9dfed4c694d7aaaa3d75f95497ca589d34d1f649c7620a98326ed4b3cf36fac1fca0f0d0135d1dd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c05f87497ca589d34d1f0f0d03383431c8c0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"841">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:14:16 GMT">>} +] +}, +{ +undefined, +<<"88c70f28ff0db607bfe02ec3373caff03e2bd2f1cd0c30c30c30c3b30430ecc93c83f10c3b667e5da4661861861877bfafbcd0c30c30c36bffb2cd0c30c30ea8b8a785ebba2ec30db773ec87ed4e25b1063d5007ed4be7a466aa05c7375a9721e9fb5340fcad0cc581c640e880007da983cd66b0a88341eafa500cada4fdd61002d28166e05ab81714c5a37fda9ac699e0637f10b6bdae0fe74eac8a5fddad4bdab6a97b86d1a90dfd0352fe0e23537c3906a6ae1b54bbc3729934df53869c8a5ed5a14d30f153269dffcf6495dc34fd2800a994752820000a0017000b800298b46fd75892a8eb10649cbf4a536a12b585ee3a0d20d25f5f95352398ac4c697ec938ec4153064dda9679e6df583fcf0f0d023433d6e2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb0f288afc5b3e45b25fbd05e0ffd3d27b8b84842d695b05443c86aa6fd2e0d0c5cfced6d57f2488ea52d6b0e83772ffcedad9db0f0d8371b03b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac5754df0f0d831019736c96df3dbf4a09f5349fba82001d502fdc03f702053168df0f1389085f71971965b00000768bca54a7d7f4e2e15c4e7f7f4084f2b124ab04414b414d588ca47e561cc58190800dbafbbf6496d07abe9413ca6a22541002ca807ee36edc65953168dfccc47f1393b6ecd8cd4f77fc4f93c1edd76e6f4886186083d5c6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d454919d29aee30c78f1e17a0d5752c86a9721e96c96dc34fd2816d4dc5ad410022500e5c10ae32da98b46ffc6c8d7588ca47e561cc5804eb2d36eb2f76496d07abe940b8a6e2d6a0801654006e05cb8cb4a62d1bfd10f0d03313436c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ca5f88352398ac74acb37f6c96df697e94032a65b6850400894106e05bb8c854c5a37f6196dc34fd280654d27eea0801128066e320b80754c5a37f6496dd6d5f4a01a5349fba820044a019b8c82e01d53168df4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbde768344b2970f0d840beebcef408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f558465b034ff5890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8b5f911d75d0620d263d4c795ba0fb8d04b0d5a7e36c96d07abe940bca65b6a504008940b37022b8dbaa62d1bf52848fd24a8f0f138efe4b1b8c902d36d3521240dc07f3d6768dd06258741e54ad9326e61d5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d8313edb7dfd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff0f13a3fe5e699644575b6dc71a75b69991b95e75c69d959746f0dc92e05969c03cebee39fcff6c96d07abe9413aa436cca0801128176e05fb82714c5a37fc2c4da5a839bd9ab5888a47e561cc581c003e30f0d03373431db">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887684aa6355e7e45f87352398ac4c697f798624f6d5d4b27fde4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf7f28d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"887f24842507417fc558a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc26496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d0233356196dc34fd280654d27eea0801128166e05ab81714c5a37f76025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d023335cc6c96e4593e941054ca3a941000d2817ee361b8c814c5a37fd96196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffcc7b8b84842d695b05443c86aa6f55850b8f09a77f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497f7686c58703025c1fcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f0d023335dfccc2c4d0bfc0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d50f13a2fe650b2eb4e32eb528c2d86313438e47a395f7c6cbee3cebd702cb4e89f699699fe76c96d07abe940814dc5ad410022502e5c13771a654c5a37fd95f87352398ac5754dfc3d5588da47e561cc5804169a69a780007c90f0d830804f77f0d88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d90f13a1fe5a91b28e464928c619647dc138c85f742e8084196403b702cb4e89f699785fcf6c96d07abe940814dc5ad410022502e5c139704253168dffdd0f0d830b6077c1c0cbbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89bf">>, +[ +{<<":status">>, <<"204">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"89d5c6d86496d07abe940054ca3a940bef814002e001700053168dffcc0f0d0130c058b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfd3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f288afc5b3e45b25fbd05e0ff7f13f5bdae0fe6f43a94bfbb5a97b56d52f70daa437f4194bf838994df0e4329af7426535eebe65327184ca64e37cca5ed5a4ca6ae1b54bf833994dd0e8329c34ed329af85d329ab7ed329934df535e3e6a6ad39d4e1a7229af86d530e4d2a5ed5a14d30f153269dea5fc1a14bda77a9af567535edc1fcff408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fcb6c96dd6d5f4a01b521b66504008940b77196ee34ca98b46f5f91497ca589d34d1f649c7620a98386fc2b3d5b842d4b70dd6196dc34fd280654d27eea0801128166e05ab81794c5a37f4087f2b4a85adb4d27972b521231c92cad3adb4069e6c658e36e403af8dc704d8b4087f2b5065adb4d27936f4fa719636876609c6e3bf9b0a3fd3709a083550130e0cbe4dc640130de0f0d8371b03b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c80f28bf45107f321682a4aa525fe7ed4e25b1063d5007ed4d03f2b43316007da983cd66b0a8837cf6fd2800ad94752c17dd028005c002e040a62d1bfed4d634cf031fc77f0194ede0dfee771cf17b9f2f7bb493317cf16bd78820c7d4df6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5886a8eb2127b0bfc7c6c5550131e5d05a839bd9abe27f07968e47c24648f85e295e7c001b4f36f81d6491842318cb52848fd24a8f0f138afe42e3a2136f09d77f9f6c96c361be9413aa693f7504003ea01cb8276e082a62d1bf0f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689bf7b3e65a193777b3f5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d03353338c36196dc34fd280654d27eea0801128166e05ab817d4c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d37f139fbdae0fe6f6ad0a69878a9934ef5376f854d392fa9ab86d53269bea69d593f94085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf0f28b6cbbb06edd93569c97e086171fbf85e7997aeb2cb8cb975e730b30df6df0bb7c4f5fbff6a6b1a678183d91a0b677fb531a535eaaa8f5f5f95497ca589d34d1f649c7620a98326ed4b3cf36fac1fd20f0d0135c27f1c842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c55f87497ca589d34d1f0f0d03383539cac4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"DCLK-AdSvr">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"859">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:14:19 GMT">>} +] +}, +{ +undefined, +<<"88d90f288afc5b3e45b25fbd05e0ffd8d7e4d65f87352398ac4c697fd5c5d37f10941e2ef818efc38f8f39bc68a326dcb7910c30c107d2798624f6d5d4b27fe0cdc4d2c50f0d8371b03b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dc0f28ff0db607bfe02ec3373caff03e2bd2f1cde21861861bb0ecc10c3b364f20fc430ed99f976919861861861defebef3430c30c30dadf2b6186186187545c53c2f5dd176186dbb9f643f6a712d8831ea803f6a5f3d2335502e39bad4b90f4fda9a07e568662c0e3207440003ed4c1e6b3585441a0f57d280656d27eeb08016940b3702d5c0bea62d1bfed4d634cf0317f07b6bdae0fe74eac8a5fddad4bdab6a97b86d1a90dfd0352fe0e23537c3906a6ae1b54bbc3729934df53869c8a5ed5a14d30f153269dffcf6495dc34fd2800a994752820000a0017000b800298b46fc75892a8eb10649cbf4a536a12b585ee3a0d20d25f5f95352398ac4c697ec938ec4153064dda9679e6df583fdb0f0d023433dac6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e60f0d83642f336c96df697e94034a681d8a08007940b971b66e05d53168df0f13890880d38d3edbee8000768bca54a7d7f4e2e15c4e7f7f4084f2b124ab04414b414d588ca47e561cc5819085f7d969df6496e4593e94640a6a22541002ca816ee34cdc138a62d1bfd07f0c88ea52d6b0e83772ff7f0a93b6ecd8cd4f77fc4f93c1edd76e6f4886186083d87b8b84842d695b05443c86aa6f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8bd4d96c96d07abe940bca65b6a504008940b37022b8dbaa62d1bfd80f138efe4b1b8c902d36d3521240dc07f3bf768dd06258741e54ad9326e61d5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d8313edb7d6c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89c3">>, +[ +{<<":status">>, <<"204">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887684aa6355e7d7d0cec44088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fd7d67f10d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88d5d358a1aec3771a4bf4a547588324e5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfd96496c361be94034a436cca05f75e5022b8005c0014c5a37f0f0d023335dc76025153">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d023335e36c96e4593e941054ca3a941000d2817ee361b8c814c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb6196df3dbf4a002a693f7504008940b571905c03ea62d1bf6496e4593e940bea435d8a080002810dc699b800298b46ffdacc55850b8f09b07f58a9aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52bb0fe7d2d617b8e83483497f7686c58703025c1fe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c20f0d023335c3e2c1c4ddbfc0be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"89ddcf5a839bd9ab6496d07abe940054ca3a940bef814002e001700053168dffe60f0d0130d358b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfe5">>, +[ +{<<":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">>} +] +} +]}. +{story_29, [ +{ +undefined, +<<"488264015f92497ca589d34d1f6a1271d882a60e1bf0acf70f1f8f9d29aee30c78f1e17a5152e43d2c7f768dd06258741e54ad9326e61d5dbf4089f2b567f05b0b22d1fa868776b5f4e0df6196dc34fd280654d27eea0801128166e09fb82754c5a37f0f0d820b42">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85f4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5a839bd9ab7b8b84842d695b05443c86aa6f4003703370afbdae0fe74ead2a70d3914bdab429a61e2a6edf0a99f55e52f70da352fe0e23535ee846a6bdd7c6a6ae1b54c9a6fff30f28d0ddb6f63e1bb6c10f0dfab6e0bf936c00f8c583571876c1f17f55d804008821033f6a17cd66b0a88341eafa500cada4fdd61002d28166e09fb827d4c5a37fda921e919aa817a5152e43d3f6a5634cf031408a2d961ec21e4290f6d49f055b303a305d4001738bbda99dd7b180200080100740892c9315621ea4d87a3f86a8eb2127b0bf6196dc34fd280654d27eea0801128166e09fb82794c5a37f0f0d84682e34f7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588aa47e561cc581a644007f5f87352398ac4c697f52848fd24a8f0f138efe5e03c49472b2408c8f06e03f9fcdcc7f06a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f0d023433558375975a6196dc34fd280654d27eea0801128166e09fb827d4c5a37f6c96d07abe9413ea6a22541000ea816ee005702ca98b46ff6496dc34fd280654d27eea0801128266e09cb8cb6a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588fa47e561cc581e71a003eabb63a0c4fc6c50f138efe40ebd21650b240ca4903701fcf768abda83a35ebddbef42077d4c50f0d02343355846596442fc46c96c361be94101486bb14100225041b8c86e09e53168dff6496dd6d5f4a01a5349fba820044a01ab816ae01d53168dfc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003fcbca0f138efe40f3324af3f1b918c8f06e03f9768abb9f868d7af76fbd081ed9ca0f0d83085c1755867d979e13cd7fc96c96df697e941014d03f4a0800794102e05db8cb4a62d1bf6496e4593e940baa65b6850400b2a0837197ae01b53168dfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7cfce0f138efe40ebd21650b240ca4903701fcfc6dccd0f0d023433c5cbc4c3c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2cfce0f138dfe40fb91b2f4817c840dc07f3fc6dccd0f0d033431375586085c6da700dfcc6c96df697e94032a681fa50400854102e322b82794c5a37f6496c361be941054cb6d4a08016540b9700e5c034a62d1bfcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588aa47e561cc581c034f001d3d20f138ffe5f7dd79f95f94651bc4903701fcf768abda83a35ebddbef42073e1d27f198abda83a35ebddbef420730f0d8313a117558565d79f681fd26c96c361be940894d444a820044a05fb8205c1054c5a37ff6496df697e94038a693f750400894035702cdc69f53168dfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c35f88352398ac74acb37fd80f138ffe647248df75f75c2c6f9240dc07f3768abda83a35ebddbef4206fe7d87f048abda83a35ebddbef4206f0f0d83644e0b558465d7c0efd86c96dc34fd280654d27eea0801128015c6dab8d814c5a37f6496dc34fd281029a4fdd4100225002b8dbb71a1298b46ffd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9c3dd0f138ffe5c2086fc8d85d04612481b80fe7fc2ebdcc10f0d8369c69e5584132e3ccfdb6c96df697e94132a6a2254100225042b8d3b700253168dff6496dc34fd281029a4fdd410022500e5c6dab8d36a62d1bfda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d45f89352398ac7958c43d5fe10f138dfe40f884e361959789186e03f9ccefe00f0d83684f3955867d979e13efffdf6c96df697e94081486d994100205000b8066e000a62d1bff6496e4593e940baa65b6850400b2a08371976e36053168dfde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0cae40f138ffe657e579f0351b638df2481b80fe7cff2e3ce0f0d836996c5558469c0b61fe26c96dc34fd280654d27eea0801128005c13f7191298b46ff6496dc34fd281029a4fdd4100225000b8d02e05e53168dffe1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3cde70f138ffe5e699744e32479f8de2481b80fe7ccf5e6cb0f0d83702c875584132c859fe56c96df3dbf4a002a693f75040089413371966e004a62d1bf6496dc34fd281029a4fdd410022500edc002e36e298b46ffe4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6d0ea0f138ffe5b686e342205a7a37c9206e03f9f768abda83a35ebddbef4207bf9ea7f108abda83a35ebddbef4207b0f0d836db10b5584132c81afea6c96c361be940094d27eea0801128215c13371b7d4c5a37f6496dc34fd281029a4fdd410022500edc006e01b53168dffe9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbd5ef0f138ffe656e476572571e8de2481b80fe7fd4fdeed30f0d83680d3d5584132c89cfed6c96df3dbf4a002a693f7504008940bf7197ae05b53168df6496dc34fd281029a4fdd410022500edc002e34ca98b46ffec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ded8f20f138efe5d79f784dc6cc6e3c4206e03f9c5ff01f10f0d83740eb75585640d38f87ff06c96e4593e94642a436cca08010a817ae09db8db4a62d1bf6496e4593e9403aa693f750400894002e361b81794c5a37fef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e15f87352398ac5754dff60f138ffe5c1b4e05e91e6491be4903701fcfe14089f2b567f05b0b22d1fa868776b5f4e0dff6e10f0d84085b69af55846df03ceff56c96c361be940094d27eea0801128205c6deb8d32a62d1bf6496c361be9403ea693f750400894106e01ab8d094c5a37ff4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e6e0fa0f138ffe42f3d23ee848cb91be4903701fcfcdc1f9cc0f0d8365d6d9c8f76c96c361be940094d27eea0801128205c082e32253168dffc7f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e7fcfb0f138efe5e00df134c8e51bc4903701fcfe0c2fadf0f0d8310596f558471a7dc77f96c96c361be940894d444a820044a05fb826ae36ea98b46ff6496c361be9403ea693f7504008940bf704e5c684a62d1bff8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88eae4fe0f138ffe64189b7c6e0072c6f9240dc07f3fe9c5fde80f0d8371d79c55837df703fc6c96dc34fd280654d27eea0801128105c65eb8cb6a62d1bf6496dc34fd281029a4fdd4100225020b8d33704f298b46fffb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ede7ff020f138ffe5918a396475c6de8df2481b80fe7f9c8ff017f148abda83a35ebddbef420770f0d8371e6df558469d69c6bff016c96dc34fd280654d27eea0801128005c0b9704e298b46ff6496dc34fd281029a4fdd4100225000b817ae09b53168dffff00">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f1eb52848fd24a8f0f138efe652965195e6871be4903701fcffecd4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc30f0d83740e39d86196dc34fd280654d27eea0801128166e09fb827d4c5a37f6c96c361be940094d27eea0801128215c65fb82654c5a37fd8408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f6f0c20f138ffe5a8c31beec8420237c9206e03f9ff5d1c1f40f0d840b4f89ef5583138eb9c16c96dc34fd280654d27eea0801128115c699b8d34a62d1bf6496dc34fd281029a4fdd4100225022b8d3571b654c5a37fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ff025f86497ca582211f5a839bd9abc70f138ffe5e04ac85a24a1763749206e03f9f7b8b84842d695b05443c86aa6f768abda83a35ebddbef42077d8c80f0d84132f38d7558513e079c73fc86c96e4593e94642a6a225410022500cdc13d7196d4c5a37f6496df3dbf4a321535112a080165403571a0dc69953168dfc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ff01facc0f138ffe5f23a190427c6cc6f9240dc07f3fff00dbcbfe0f0d8375a7dd55840b4e3c1fcb6c96dc34fd280654d27eea080112807ee043700fa98b46ff6496dc34fd281029a4fdd410022500fdc13571a794c5a37fcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885888a47e561cc58190035f87352398ac4c697f6c96c361be94036a6a225410022502fdc13f704f298b46ffd20f138efe401232dc6414a3649206e03f9f768dd06258741e54ad9326e61d5dbf54012ad36196dc34fd280654d27eea0801128166e09fb8c814c5a37f0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588aa47e561cc581a644007f5f911d75d0620d263d4c795ba0fb8d04b0d5a7d70f138ffe5f0b6f3cf0431c6f464903701fcfc2e6d60f0d83134207558468200bbfc16c96e4593e94036a6e2d6a0801128266e01cb82654c5a37f6496dc34fd280654d27eea080112816ae01bb8db2a62d1bfd6d1d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003f5f88352398ac74acb37fd3dc0f138efe40569f923291b1949186e03f9fd2f7ebdb0f0d83680f0b558579c0b6eb81c66c96c361be9403aa651d4a08010a8266e361b80694c5a37f6496c361be94138a65b6850400b2a081702cdc13ea62d1bfdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588aa47e561cc581c034f001cde00f138efe4640b8e3d1ca46c44186e03f9ffbefdffa0f0d0336353755850b6fb2d3dfca6c96df3dbf4a084a6a22541000fa807ee34e5c65b53168df6496df3dbf4a01e5349fba820044a05db8166e34253168dfdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6cae30f138ffe5e03238df18da71919240dc07f3fd8f2e20f0d84134e320f55867d979e13eeffcd6c96c361be94136a681fa5040089403b702fdc036a62d1bf6496e4593e940baa65b6850400b2a08371976e36ca98b46fe2dddc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9cde60f138efe4028e58dc189f8dd2481b80fe7768abda83a35ebddbef4206ff6e60f0d8471b71d07558513cdbc107fd16c96e4593e94642a6a225410022500ddc65ab8cbca62d1bf6496df3dbf4a321535112a0801654039700e5c0014c5a37fe6e1e0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cdd7e1ea0f138efe5e048f3c37da71919240dc07f3e0dff9e90f0d0237345585780ebaf89bd46c96c361be94136a681fa5040089403b702fdc032a62d1bf6496c361be94009486d9941002ca800dc65db826d4c5a37fe9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d0daed0f138ffe5e03eec8ebef34e3232481b80fe7e2fcec0f0d02343855867d979f75c6ffd76c96c361be94136a681fa5040089403b702f5c65b53168df6496e4593e940baa65b6850400b2a083702cdc136a62d1bfec">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3ff01e7f00f138ffe5b8c8cc92c810bb1ba4903701fcfe6768abda83a35ebddbef42073ff01f00f0d83704cb5558513e079c77fdb6c96e4593e94642a6a225410022500cdc13d7197d4c5a37fe5ef">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d6e0f30f138ffe5e004ae46f91a71919240dc07f3fe84089f2b567f05b0b22d1fa868776b5f4e0dff30f0d830842ef558579c0b4165fde6c96c361be94136a681fa5040089403b702f5c682a62d1bf6496c361be94138a65b6850400b2a08171a05c642a62d1bff3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dae4f70f138efe40eba5946f34e3232481b80fe7768abda83a35ebddbef4207bc2f70f0d0234335586085b75a7dc6fe26c96c361be94136a681fa5040089403b702fdc0094c5a37f6496dc34fd28212996da941002ca816ae059b826d4c5a37ff7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dee8fb0f138ffe5e03eec8ebef34e3232481b80fe7c8c5fa0f0d83085a1755857d979e6400e5cb6496e4593e940baa65b6850400b2a08371976e36053168dff9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e0eafd0f138ffe5e03ce4ad0db69c6464903701fcfcac7fc0f0d820ba2bfe66c96c361be94136a681fa5040089403b702f5c6dd53168dfbffa">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e1e5fe0f138ffe5e005c95d1bad15c74840dc07f3ff3c8fd0f0d826841cee76c96df697e94640a436cca08010a817ee36d5c682a62d1bfcdfbf6f5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e25f87352398ac5754dfff010f138efe5f1ba3944cba58db2481b80fe7f5caff000f0d836da65c558569c109e77fea6c96d07abe9413ea6a2254100225002b8cb7702053168dff6496df697e9413ea6a22541002ca806ee01ab8d32a62d1bfff00">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3dff152848fd24a8f0f138efe401232dc6414a3649206e03f9ff1f04003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f6196dc34fd280654d27eea0801128166e09fb827d4c5a37f0f0d830b8d034085aec1cd48ff86a8eb10649cbf408a224a7aaa4ad416a9933f8365f79f6496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd61009c65d640b6f0800dbedb8f816bcd000000000000010b4203d5a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fc35f92497ca589d34d1f6a1271d882a60b532acf7fc07b8b84842d695b05443c86aa6f7f08afbdae0fe74ead2a70d3914bdab429a61e2a6edf0a99f55e52f70da352fe0e23535ee846a6bdd7c6a6ae1b54c9a6fff30f28cdddb6f63bf068dd009b69c744ffc5f804db4e3a27fe21c3069d58756dd1f6a17cd66b0a88341eafa500cada4fdd61002d28166e09fb8c814c5a37fda921e919aa817a5152e43d3f6a5634cf031f408a2d961ec21e4290f6d49f055b303a305d4001738cbda99dd7b180200b2c800fff40892c9315621ea4d87a3f86a8eb2127b0bfca0f0d83105f77">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"4882640258a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfcb0f1fff339d29aee30c1171a64a52b90f4b045e634bfe5b21204d9697e24340cb40f8acd03ac85df8ad103ed8401f8a2a9a02d4b5a8f84d704e94d6ab30aa2c2a8b0f8f1e17a5152e43d2a8b0c859476d09f15959f0b8d15f9f8b0d2405644268242099095a109c8df0b6d3240b6d492331ba5f8b2a9200b2d85f69f65d0004cfc592c1f08259005971cf2eb8f7c6d2c97a022f4a2a5c87a7e347e61db0337dc64575bbadb2db8e005759704d8b0b6e36eb6e380c177f768dd06258741e54ad9326e61d5dbfe1ce0f28d3d1c325f819bee322baddd6d96dc7002bacb826c585b71b75b71c060bbf1bf864bf007ed490f48cd540bd28a9721e9fb50be6b3585441a0f57d280656d27eeb08016940b3704fdc640a62d1bfed4ac699e063efff010f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bf0f0d0234325f87352398ac4c697f5d9a9d29aee30c22b2ae34c94a5721e960d48e62a18acde4b42f31a5640130d1408721eaa8a4498f57842507417f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"c50f0d01306196dc34fd280654d27eea0801128166e09fb8c814c5a37f0f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c32e342640db01583e42bcc6975886a8eb10649cbfd37686c58703025c1f5f92497ca589d34d1f6a1271d882a60e1bf0acf7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd6c664022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfdb0f138ffe4627d913ae38ec8d364206e03f9fca7f0f8be393068dda78e800020007c50f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885889a47e561cc5802f001f5f8b497ca58e83ee3412c3569fd7de0f138efe40279d90b23b2c6f9240dc07f3d4768dd06258741e54ad9326e61d5c1f54012a0f0d830bc10f55830bae37ca6c96dc34fd280654d27eea080112806ae36f5c6dc53168df6496dc34fd280654d27eea0801128166e320b80694c5a37f7f0e88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c4dde40f138efe5e03a210dd201f78840dc07f3fdac3c20f0d837d969c5583085d07ce6c96df697e940054d27eea08010a817ae01ab807d4c5a37f6496dc34fd280654d27eea0801128166e340b800298b46ffc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c7e0e70f138efe403959786d900fbc4206e03f9fddc6c50f0d84101e03df55830b410fd16c96df697e940054d27eea08010a817ae01ab80714c5a37f6496dc34fd280654d27eea0801128166e32ddc6df53168dfc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbcae3ea0f138ffe5e03e12b4523b2c6f9240dc07f3fe0c9c80f0d83085a1755830884e7d46c96dc34fd280654d27eea080112806ae36f5c6db53168df6496dc34fd280654d27eea0801128166e32fdc034a62d1bfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"deddea0f1fff349d29aee30c117a5152e43d2c11798d2ff96c8481365a5f890d032d03e2b340eb2177e2b440fb61007e28aa680b52d6a3e135c13a535aacc2a8b0aa2c3e3c785e9454b90f4aa2c321651db427c56567c2e3457e7e2c3490159109a09082642568427237c2db4c902db5248cc6e97e2caa4802cb617da7d97400133f164b07c209640165c73cbae3df1a3864bf032fde0bcd3376fbb7aeb8ebf800e099780cb97dabd75c74177e091c012491be475a0b426de8c1dcff00ec0f28d0ddb7445a2065fbc179a66edf76f5d71d7f001c132f01972fb57aeb8e82efda921e919aa808b8d325295c87a7ed42f9acd61510683d5f4a0195b49fbac2005a502cdc13f7190298b46ffb52b1a67818fbd60f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ddeada6c96df3dbf4a080a6a2254100215020b8276e36f298b46ffee0f138efe40d4631965089e94840dc07f3fddff01ed0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7fd70f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cf5f88352398ac74acb37fe8ef0f138efe44fbe37851c858df2481b80fe7e5cecd0f0d841000d39f5583081d6bd96c96c361be940094d27eea080112816ee09eb8d094c5a37f6496dc34fd280654d27eea0801128166e341b8cb8a62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130dbccef6496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e16c96c361be940baa436cca080112816ae09db8db6a62d1bf6196c361be940094d27eea080112817ee32d5c6de53168df6496dc34fd280654d27eea080112817ee32d5c6de53168df4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d023436408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f558471a69d675890aed8e8313e94a47e561cc581e71a003f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128076e001704ca98b46ff768bca54a7d7f4e2e15c42feff7f34cdacf4189eac2cb07f2c78648c567a0c4f4bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a97b86d1a90dfd0352fe0e23537c3906a6ae1b54bbc3729934df53869c8a5ed5a14d30f153269dffcffe7ec4089f2b567f05b0b22d1fa90d06b2c3d8a64a473154c9524b65454ff7c950ae152394c07020034a7f5a32645a1d779812e2fef408bf2b52632c419272ad3993f01310f0d0234324088ea52d6b0e83772ff8649a929ed4c027f1e88cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003ff2fe52848fd24a8f0f138efe405132d3e569c6464903701fcffc768abda83a35ebddbef420777f06868776b5f4e0df7f08a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f0d0239335585780ebaf89c6196dc34fd280654d27eea0801128166e09fb8c854c5a37f6c96c361be94136a681fa5040089403b702f5c69a53168df6496c361be94009486d9941002ca800dc65db826d4c5a37fe7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c30f28e5aed9298a1861860d19edf246adc70e16f1e0a248529d3fee9dfa31b7433c309314bd39c3df46ee9a3478bfcb5b3beff0e5407ed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b3704fdc642a62d1bfed4d634cf031ff64085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff7f06e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f4088f2b5761c8b48348f89ae46568e61a002581f5f9e1d75d0620d263d4c741f71a0961ab4fd9271d882a60c9bb52cf3cdbeb07f798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e09fb8c814c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fc75f92497ca589d34d1f6a1271d882a60b532acf7fc2c17f07afbdae0fe74ead2a70d3914bdab429a61e2a6edf0a99f55e52f70da352fe0e23535ee846a6bdd7c6a6ae1b54c9a6fff30f28d1ddb6f63bf06ed1007e346e804db4e3a27fe2fc026da71d13ff10e1834eac3ab6e8fb50be6b3585441a0f57d280656d27eeb08016940b3704fdc642a62d1bfed490f48cd540bd28a9721e9fb52b1a67818f408a2d961ec21e4290f6d49f055b303a305d7f3e8bbda99dd7b180200880113d40892c9315621ea4d87a3f86a8eb2127b0bfc40f0d830b8e8b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d65f911d75d0620d263d4c795ba0fb8d04b0d5a7d60f138efe403684018da71919240dc07f3f768abda83a35ebddbef42073d5d40f0d033338375586085c6da7422fd36c96c361be94136a681fa5040089403b702fdc034a62d1bf6496c361be941054cb6d4a08016540b9700d5c0bea62d1bffccbca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dbf1cbda0f138efe40dc630be369c6464903701fcfcac1d8d70f0d8369e6855586085c6da6dd176196dc34fd280654d27eea0801128166e09fb8c894c5a37f6c96c361be94136a681fa5040089403b702f5c65e53168df6496c361be941054cb6d4a08016540b9700e5c680a62d1bf7f2188ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e05f87352398ac4c697fe00f138ffe5e046c89b1bad38c8c9206e03f9fc7dedd0f0d830840df558579c0b41683c36c96c361be94136a681fa5040089403b702f5c6df53168df6496c361be94138a65b6850400b2a08171a05c642a62d1bfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffe60f138efe401232dc6414a3649206e03f9f768dd06258741e54ad9326e61d5dbf54012ae5ca0f0d03353632df408a224a7aaa4ad416a9933f033838346496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9cd61038e3ec85e5b784006df6de6995af040f000000000000216dd10bdc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5e27f018364216bc5c0c37f009cd61038065a034b6f0800dbedbadb8b5e69e00000000000042cb4f35fc3eae8de0f0d830b2267">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7c6c5ed0f138efe401232dc6414a3649206e03f9fc4c3eae80f0d830b2cb9e47f0083642d3bc27f009cd6103a2036d36b6f0800dbedbecbeb5e6c4000000000000880dbef7fe0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c9e67f0003343036c9c4c77f0094d6cbaf09f69a5b784006de13acbeb5e6c41138cfc7eeece20f0d03333235">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88f2cff10f138dfe411c8d85a942d0c8c86e03f9c8efee0f0d0238355586089e7da13aefd46c97df697e940b6a65b685040032a05cb8d3f719794c5a37ff6497c361be9403aa65b6a50400b2a01db8d3571b6d4c5a37ffd3e5e4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892aed8e8313e94a47e561cc58190b6cb6fbeffd3cc408cf2b0d15d454addcb620c7abf8769702ec8190bfff40f0d8313a107558665c6df65d07fd96496dd6d5f4a084a6e2d6a08016540377000b800a98b46ffd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892aed8e8313e94a47e561cc58190b60782f3ff5f88352398ac74acb37fd1c2f80f0d837c4207558665c6df65b7bfdd6496dc34fd2820a9b8b5a8200595041b8172e34ca98b46ffdb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892aed8e8313e94a47e561cc58190b2cbc075dfc1d4c5fb0f0d8365c03b558565a000220fe06496dd6d5f4a084a6e2d6a080165410ae005700f298b46ffde">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96c361be940094d27eea080112807ee32ddc65953168df0f139afe42d042fbefbcf352b417ca378417e395f8db64237c8e39fcff52848fd24a8f5f9a1d75d0620d263d4c741f71a0961ab4fda849c7620a982d4cab3df2f30f0d83644e03e4e17f2fc6bdae0fe6f43a94bfbb5a99e1e4a5ee1b46a437f40d4bf8388d4df0e41a9af7423535eebe353271846a64e37c6a6ae1b54bbc3729934df53869c8a5ed5a14d30f153269dffcff">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d023335e7e4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f13a1fe5975d904dbb28a41144fb4f85c0b4c900e3e16824091bb81644f3acbc10b5fcf6c96e4593e9403ca612c6a080112820dc6dbb81694c5a37fc30f0d023433e45886a8eb10649cbfc2e9e6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96dc34fd280654d27eea0801128166e04171b1298b46ff4085aec1cd48ff86a8eb10649cbf408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fc3408442469b51851000a6acdf5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60b532acf7ffd0f0d0338383976824ca5fd58ada8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd2959d095893949d6007d295d855893949d6007f6496dc34fd280654d27eea0801128166e09fb8c894c5a37ff1ee">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ed4089f2b26c1d48191263d58c69f925684ecaeb4c95b7647b6c96dc34fd280654d27eea0801128166e09fb8c894c5a37f6496df697e94642a681d8a05f782a01bb8005c0014c5a37fc758ada8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd295d855893949d6007d2959d095893949d6007f0f28c99ad2a1311a483b8556610b2d85f69f65d136ebac85b71cfb53079acd61510683d5f4a32b693f758400b4a059b827ee32253168dff6a6b1a67818fb52f9e919aa8174f832525b1721e9f55a839bd9ab0f0d023635c5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886c96c361be940094d27eea080112807ee34f5c0b2a62d1bf0f139afe63032e0dd7c2f042596523ee3d1ca48da6651b9238f841fcffd25f92497ca589d34d1f6a1271d882a60b532acf7f7b8b84842d695b05443c86aa6fc10f0d83744d0bf9f6d2588faed8e8313e94a47e561cc5802f001f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e09fb8cb4a62d1bf768586b19272ff6c96dc34fd280654d27eea0801128172e09eb82714c5a37f6496e4593e9403aa693f7504008940b9704f5c138a62d1bf0f139d6822109a859132d6079e844eb8069c79965913a1004176e86f397c30c358a5a47e561cc58196db7590fd576c74189f551d64d83a9129eca7ea9b5095ac2f71d0690692ff408df2b1c88ad6b0b59ea90b62c693884bc5908339115b5f0f0d03343731408721eaa8a4498f57842507417f5f911d75d0620d263d4c1c88ad6b0a8acf520b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88be409221ea496a4ac9b0752252d8b16a21e435537f85ba6a8767af0f0d830becbd7f0184bd41d05f">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"application/ocsp-response">>}, +{<<"content-transfer-encoding">>, <<"Binary">>}, +{<<"content-length">>, <<"1938">>}, +{<<"connection">>, <<"Close">>} +] +}, +{ +undefined, +<<"88c7c6c5c40f139d6822109a859132d6079e844eb8069c79965913a1004176e86f397c30c3c3c20f0d03343731c1c0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fd8cbcd64022d31cb768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c01e0dbef4089f2b567f05b0b22d1fa868776b5f4e0dfe16196dc34fd280654d27eea0801128166e09fb8cb6a62d1bf0f0d8413c00bdf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128072e34f5c6da53168df768bca54a7d7f4e2e15c42feff7f27cdacf4189eac2cb07f2c78648c567a0c4f4bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a97b86d1a90dfd0352fe0e23537c3906a6ae1b54bbc3729934df53869c8a5ed5a14d30f153269dffcffe35f87352398ac4c697f7f0490d06b2c3d8a64a473154c9524b65454ff7c950ae152394c070200054feb464c8b43aef3025c5fdf408bf2b52632c419272ad3993f01310f0d0234324088ea52d6b0e83772ff8649a929ed4c027f0e88cc52d6b4341bb97f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003f5f86497ca582211fdef10f138ffe5e016324ad85b14602481b80fe7fdbcdcaed0f0d8371d0bb55850804e3817fca6c96d07abe941094d444a820044a0457197ee34ea98b46ff6496df697e941094d444a820059502e5c0bf702e298b46ff7f0488ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c35f901d75d0620d263d4c741f71a0961ab4ffe3f60f138efe4017db1c6db628c04903701fcfe0d2cff20f0d8379c6df55850804e38177cf6c96d07abe941094d444a820044a04571a15c65a53168dff6496df697e941094d444a820059502e5c0bf702f298b46ffc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bff2ce6c96df3dbf4a080a6a2254100215020b8276e36f298b46fffb0f138efe40d4631965089e94840dc07f3f768dd06258741e54ad9326e61d5dbfd57f12a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7fd50f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cb5f87352398ac5754dfeb52848fd24a8f0f138ffe5d03a375a191b14602481b80fe7fe9dbd8fb0f0d837d979fc6d76c96d07abe941094d444a820044a04571a15c0bea62d1bffc5c9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cec0edbf0f138ffe6501641c6f46d8a301240dc07f3feadcd9fc0f0d8365d69f55850804e38d37d96c96d07abe941094d444a820044a04571a0dc134a62d1bff6496df697e941094d444a820059502e5c0bd71b0298b46ffcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d1fb5f89352398ac7958c43d5ff1e1eee0dfde4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbfc408cf2b0d15d454addcb620c7abf8769702ec8190bffdfbfde0f0d83684f396c96e4593e94642a6a225410022504cdc0b971b714c5a37fc60f138ffe5f6c2eb619051c91ba4903701fcf">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692f4085aec1cd48ff86a8eb10649cbfdde66c96d07abe940bca65b68504008540bf700cdc65d53168dfc90f138ffe4627d913ae38ec8d364206e03f9fcc4001738be393068dda78e800020007e30f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7c3f5f88352398ac74acb37f768abda83a35ebddbef42077c6e7cf7f028abda83a35ebddbef420770f0d033737335585682e3aebbfe86496dc34fd280654d27eea0801128176e34cdc03ea62d1bfda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f79ffc3c2caebd3c10f0d8369d69d558471f7dd07eb6496e4593e9403aa693f7504008940bd700cdc0b4a62d1bfdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cac9e8f1c8d30f138ffe4627d913ae38ec8d364206e03f9fd67f048be393068dda78e800020035ed0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034265f0b9fc7768abda83a35ebddbef4206fcff0d87f018abda83a35ebddbef4206f0f0d8469b089bf558369d7c3f16496df3dbf4a01e5349fba820044a01fb8db7700053168dfe3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313ea91f95873160642db2e0000f0f0d846840701f5f911d75d0620d263d4c795ba0fb8d04b0d5a75a839bd9abdc0f138efe4232086595a70237c840dc07f37b8b84842d695b05443c86aa6ffa7f20dcbdae0fe61cf9d4c9a6fa97f76b52f6adaa437f4297b5693a97b86d52f70dc75327184ea64e37cea6bdd0a9af75f537c3914df8339d4d5c36a9ba1d0752f69dea5ed5a14c9a77a9a61e2a6ad39d4d78f9a9af6e0535f0daa70d393f9f4083ee91cd8d13afb8071c644d80000000007ff9558665f79d6de73f6196dc34fd280654d27eea0801128166e09fb8cb8a62d1bf6c96df697e941094d27eea08010a820dc6dfb80714c5a37f6496e4593e940bca6e2d6a080165403f71a7ee36053168dfed">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130fcedd96496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffe80f138efe401232dc6414a3649206e03f9feb54012aebc60f0d03393534df408a224a7aaa4ad416a9933f831000f76496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c27040ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffe36496dc34fd2816d4d27eea08007940b97000b800298b46ff7f0fe6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28f61d5d20cd2db03d2e277ff9aef79b3cff6047ff3fe951678bfd7957760e2c4f565356d61d9c622e6e9fe3fd63083233bb76475f3f9feff8a317fe93ffcfb52b1a67818fb50be6b358544186c37d2800ad84b1ac20059502cdc13f719714c5a37fda921e919aa8171c957942e43d3f6a634a6bd5551ebf5f92497ca589d34d1f6a1271d882a60b532acf7fce0f0d03363135">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bf5f87497ca589d34d1fd5640130d56196dc34fd280654d27eea0801128166e09fb8cb6a62d1bf408721eaa8a4498f57842507417f0f0d03333831">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f87352398ac4c697f0f0d02343256034745546496df697e94038a693f75040089403571b0dc6dc53168dfd67f0288ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbf0cac9c80f28f61d5d20cd2db03d2e277ff9aef79b3cff6047ff3fe951678bfd7957760e2c4f565356d61d9c622e6e9fe3fd63083233bb76475f3f9feff8a317fe93ffcfb52b1a67818fb50be6b358544186c37d2800ad84b1ac20059502cdc13f719714c5a37fda921e919aa8171c957942e43d3f6a634a6bd5551ebf0f0d023433c1d7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c5dcc4db4086f2b5281c86938e640003cfb2f3ebb200004d38207fd8c30f0d83109f07">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ed0f0d84680ebcffc16496df3dbf4a01e5349fba820044a08371b76e34053168df6196dc34fd280654d27eea0801128166e09fb8cbaa62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e00f0d84101e00bfc36496d07abe94036a693f75040089403971905c684a62d1bfbfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f71eff1e7f84089f2b567f05b0b22d1fa868776b5f4e0df7f10a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fe80f0d836990bf55830ba077c36496df3dbf4a01e5349fba820044a059b8005c65e53168dfc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85d701ff6f5408cf2b0d15d454addcb620c7abf8769702ec8190bffc3c2f50f0d836d910755840b4f899fc76496df3dbf4a01e5349fba820044a01fb8172e36d298b46fcb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7dcffa768abda83a35ebddbef42073c2c7c67f318abda83a35ebddbef420730f0d8369c037558469c65b7bcc6496df3dbf4a01e5349fba820044a00171972e36da98b46fd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f137f5f88352398ac74acb37fc3c7cccbc20f0d83680fbb558471a65a6bd06496e4593e9403aa693f7504008940bf7196ee36f298b46fd4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c880007fc1c6cacfcec50f0d8369c7c55584644f361fd36496df3dbf4a01e5349fba820044a01ab8215c038a62d1bfd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85d6dafc4c9cdd2d1c80f0d83136db755840b4f89afd66496df3dbf4a01e5349fba820044a01fb8172e34ea98b46fda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85d6defc7ccd0d5d4cb0f0d8368027355846da79f07d96496e4593e9403aa693f75040089410ae04171a6d4c5a37fdd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7ddfca768abda83a35ebddbef42077d4d9d87f108abda83a35ebddbef420770f0d8369b79f5585680c800effde6496dc34fd280654d27eea080112820dc64571a754c5a37fe2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7c1fcfc2d8dddcc10f0d8365a75c5584784113ffe16496e4593e9403aa693f7504008940b571a05c65e53168dfe5">>, +[ +{<<":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">>} +] +}, +{ +1365, +<<"3fb60a8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85e65ff5f88352398ac74acb37f768abda83a35ebddbef42073408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f7f0a8abda83a35ebddbef420730f0d836df13b55846d969b6f6196dc34fd280654d27eea0801128166e09fb8cbaa62d1bf6496e4593e9403aa693f75040089410ae32e5c0054c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7d9fc8768abda83a35ebddbef4207bc7c6c57f058abda83a35ebddbef4207b0f0d8369f003558479979977c46496e4593e9403aa693f7504008940b57022b81654c5a37fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7ddfcdcccbcac9c80f0d8369a103558479e0381fc76496e4593e9403aa693f7504008940b37001b8db2a62d1bfc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f901d75d0620d263d4c1c892a56426c28e90f0d831080ff56034745546496df3dbf4a01e5349fba820044a05fb8276e36da98b46fcbc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f785fd3c8d1d0cfc70f0d836da7dc55847190ba0fcd6496e4593e9403aa693f7504008940bf71b72e09f53168dfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7c3f5f88352398ac74acb37fcc408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fce0f0d8365a6c1558479f6db6b6196dc34fd280654d27eea0801128166e09fb8cbaa62d1bf6496e4593e9403aa693f75040089408ae32e5c6da53168df408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7c1fc6768abda83a35ebddbef42073c6c5c44001738abda83a35ebddbef420730f0d83109d0f55847c4fb81fc46496e4593e9403aa693f750400894086e340b80714c5a37fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cbcac1c9c8c7c00f0d8368007f558479c642d7c66496e4593e9403aa693f7504008940b371905c6da53168dfc5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f79ffcd768abda83a35ebddbef4206fcdcccb7f058abda83a35ebddbef4206f0f0d8365d75f558479c740f7cb6496e4593e9403aa693f7504008940b3704d5c0bca62d1bfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f75cfd2768abda83a35ebddbef4207bd2d1d07f038abda83a35ebddbef4207b0f0d8364216f558471f0bce7d06496e4593e9403aa693f7504008940bd702e5c03aa62d1bfcf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce5f88352398ac74acb37f768abda83a35ebddbef42077408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f7f068abda83a35ebddbef420770f0d8369e71d5584780e09af6196dc34fd280654d27eea0801128166e09fb8cbaa62d1bf6496e4593e9403aa693f7504008940b7700ddc69953168df408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7d9fc8c7c6c5c4c30f0d836c2f3b55850b40136cffc26496df697e94038a693f75040089410ae321b8dbaa62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f71cfcbcac9c8c7c60f0d836c4d3555850b40782effc56496df697e94038a693f75040089410ae085700e298b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f643fcecdcccbcac90f0d8365e03b5585640cbeeb3fc86496d07abe94036a693f750400894006e005702da98b46ffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f75dfd1768abda83a35ebddbef42073d0cfce7f0e8abda83a35ebddbef420730f0d83682cb755850b4cbccb7fcd6496df697e94038a693f750400894106e321b8dbea62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f699f5f88352398ac74acb37fc3408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc50f0d836c0fb9558471a0b4ff6196dc34fd280654d27eea0801128166e09fb8cbaa62d1bf6496e4593e9403aa693f7504008940bf7197ee32153168df408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f79efc6768abda83a35ebddbef4207bc6c5c47f0c8abda83a35ebddbef4207b0f0d8365e0075585089b13adffc46496e4593e9403aa693f75040089400ae341b8c814c5a37fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f7c1fcb768abda83a35ebddbef4206fcbcac97f038abda83a35ebddbef4206f0f0d8369a7df55850b4d05e17fc96496df697e94038a693f750400894106e09cb826d4c5a37fc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d023335ccca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85f4085aec1cd48ff86a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7f5a839bd9ab64022d317b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c01c7408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0dfca6196dc34fd280654d27eea0801128166e09fb8d094c5a37f0f0d84132d34ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003f5f86497ca582211fc952848fd24a8f0f138efe4129637db75b8c44903701fcffc8c7c2ce0f0d836df6855585742e81a6ffc26c96e4593e94134a6a225410022502e5c659b8d3ca62d1bf6496dc34fd282714d444a820059500e5c0bd71b754c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c45f901d75d0620d263d4c741f71a0961ab4ffcfc30f138efe412bf2b2d34e4622481b80fe7fcdccc7d30f0d8379b13d5585742e81a6bfc76c96e4593e94134a6a225410022502e5c681704e298b46ff6496dc34fd282714d444a820059500e5c0bd71b794c5a37fc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c85f87352398ac5754dfd3c70f138ffe5f71e1ba37db6c51809206e03f9fd1d0cb4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d83782d3f55850804e38d87cc6c96d07abe941094d444a820044a04571a0dc680a62d1bff6496df697e941094d444a820059502e5c0bd71b0a98b46ffc7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bf4085aec1cd48ff86a8eb10649cbf5f87352398ac4c697f6c96df3dbf4a080a6a2254100215020b8276e36f298b46ffcf0f138efe40d4631965089e94840dc07f3f768dd06258741e54ad9326e61d5dbf4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e09fb8d094c5a37f0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003fc55f89352398ac7958c43d5f5a839bd9ab64022d317b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c01d1408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f408cf2b0d15d454addcb620c7abf8769702ec8190bffcad3c80f0d83684f396c96e4593e94642a6a225410022504cdc0b971b714c5a37f52848fd24a8f0f138ffe5f6c2eb619051c91ba4903701fcf">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd1d0c76c96d07abe940bca65b68504008540bf700cdc65d53168dfc00f138ffe4627d913ae38ec8d364206e03f9fcf4001738be393068dda78e800020035cd0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffc40f138efe401232dc6414a3649206e03f9fd354012ad2d10f0d033935344085aec1cd48ff86a8eb10649cbf408a224a7aaa4ad416a9933f831000f76496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c27040d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8c15f87352398ac4c697fd2c8ca0f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf7f098be393068dda78e8000200076196dc34fd280654d27eea0801128166e09fb8d094c5a37f0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588eaed8e8313e94a47e561cc5804d7f5f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559ef5a839bd9abc34085a4649cd5178ddda43f3f3f3f3f3f3f3f2db22f4087b0b5485b126a4b8f085813020044a3d702d5c0b2a43a3f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d8465a7dd0f55023339c56c96c361be940094d27eea080112816ee05ab81654c5a37f6496dc34fd280654d27eea0801128166e34d5c0094c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffd06496dc34fd2816d4d27eea08007940b97000b800298b46ff4003703370e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28f91d5d20cd2db03d2e267cc17bcd9e7fb023ff9ff4a8b3c5febcabbb071627ab35afb58767188b9ba7f8ff58c20c8ceedd91db80f18fdffebfbc5fe7f666bf67cdf6a5634cf031f6a17cd66b0a8830d86fa50015b096358400b2a059b827ee34ca98b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d75f92497ca589d34d1f6a1271d882a60b532acf7f6196dc34fd280654d27eea0801128166e09fb8d32a62d1bf0f0d03353134">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313e94a47e561cc581d75d6da71d5f91497ca582211f6a1271d882a60b532acf7fcd768dd06258741e54ad9326e61d5dbfcdcccb0f0d8413a2103f5585109c69f7ffc26c96e4593e94642a6a2254100225042b826ee36253168dff6496df697e9413ea651d4a080165410ae09bb8d854c5a37fca408cf2b0d15d454addcb620c7abf8769702ec8190bff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885885aed8e8313f0f0d830b4e375f87352398ac5754df52848fd24a8fc554012a7f038712e05db03a277f4089f2b567f05b0b22d1fa868776b5f4e0df558475d69b07cc6c96df3dbf4a01c53716b5040089403371a15c0b8a62d1bf6496c361be940b8a693f7504008940b771b7ae36d298b46f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bf5f87497ca589d34d1f5a839bd9ab6401307b8b84842d695b05443c86aa6f4086f2b5281c86938e640003cfb4d01713efbecb4f34f7d57f05842507417f0f0d03353134">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ce5f88352398ac74acb37fd4cccbca0f0d8365f65c55830b8e356196dc34fd280654d27eea0801128166e09fb8d32a62d1bf6c96df3dbf4a002a693f750400894086e36e5c684a62d1bf6496dc34fd280654d27eea080112816ae32ddc0054c5a37fca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d3c2768dd06258741e54ad9326e61d5dbfd1d0cf0f0d8369c69c55830b8db3c26c96c361be940094d27eea0801128015c685704d298b46ff6496dc34fd280654d27eea0801128176e05ab8d014c5a37fce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c60f0d840b4ebc0f56034745546496c361be9403ea693f75040089403571a6ee36d298b46fc6d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d023433c6d04085aec1cd48ff86a8eb10649cbf6496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885885aed8e8313fcdc854012a408cf2b0d15d454addcb620c7abf8712e05db03a277f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d84682171bfcfce6c96c361be940094d27eea0801128015c6c5719694c5a37f6496dc34fd280654d27eea080112816ae321b8dbea62d1bf7f1488ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d0233356196dc34fd280654d27eea0801128166e09fb8d32a62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264025885aec3771a4b5f92497ca589d34d1f6a1271d882a60b532acf7f0f1fbe9d29aee30c52b8e4abca1721e962944a921cfd4c59c7549416cff13007e09068e192faacc8cbf782f34cddbeedebae3afe0038265e032e5f6af5d71d05df768dd06258741e54ad9326e61d5dbfc9c84003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc30f0d023133">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffd16496dc34fd2816d4d27eea08007940b97000b800298b46ff7f01e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28bd41508803f6a5634cf031f6a17cd66b0a88375b57d280696d27eeb0801128166e09fb8d32a62d1bfed490f48cd540b8e4abca1721e9fb531a535eaaa8f5d1c70f0d023433">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f88352398ac74acb37fc4d0cfce0f0d8374407355830bce87c96c96df697e94640a6a225410022502fdc106e080a62d1bff6496dc34fd280654d27eea080112816ae34e5c0b2a62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885885aed8e8313fc2c854012a408cf2b0d15d454addcb620c7abf8712e05db03a277f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d8313ccb355836990bfd06c96e4593e94642a6a2254100225001b8215c65d53168dff6496dc34fd280654d27eea0801128166e36edc0baa62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c5c9cfc4c3c20f0d83682d07c86196dc34fd280654d27eea0801128166e09fb8d32a62d1bf6c96df3dbf4a002a693f75040089403f702d5c0b8a62d1bf6496dc34fd280654d27eea080112816ae34edc134a62d1bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588eaed8e8313e94a47e561cc581c0035f92497ca589d34d1f6a1271d882a60b532acf7f5a839bd9ab6496dc34fd280654d27eea0801128166e32fdc69953168df7b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61d5dbf4085a4649cd5178ddda43f3f3f3f3f3f3f3f2d89ff4087b0b5485b126a4b8f08586581002251cb827ee34ca90e8f4089f2b585aa42d893525f8702e00baa20a447cec90f0d8371d7c1ca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d15f88352398ac74acb37fc2d1d0cf0f0d83744e355583699107cb6c96c361be940094d27eea0801128015c69bb8cb2a62d1bf6496dc34fd280654d27eea0801128166e34edc684a62d1bfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313e94a47e561cc581d75d7000075f87352398ac5754dfcac77f078ddda43f3f3f3f3f3f3f3f2db22f7f078f085813020044a3d702d5c0b2a43a3f4089f2b567f05b0b22d1fa868776b5f4e0df0f0d83640f335584109d08036196dc34fd280654d27eea0801128166e09fb8d34a62d1bf6c96e4593e94642a6a2254100225042b826ae34ca98b46ff6496df697e9413ea651d4a080165410ae09ab8d32a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff408cf2b0d15d454addcb620c7abf8769702ec8190bff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313e94a47e561cc581d75d6df79f5f91497ca582211f6a1271d882a60b532acf7f5a839bd9abd3c9c8c70f0d033633315585109d0b4d7fc66c96e4593e94642a6a2254100225042b8266e36053168dff6496df697e9413ea651d4a080165410ae099b8d3ea62d1bfc5c4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885885aed8e8313fd3768dd06258741e54ad9326e61d5dbf54012a7f088712e05db03a277fce0f0d836d971c5583105c7fcd6c96df3dbf4a002a693f75040089413371a72e01b53168df6496dc34fd280654d27eea080112816ae099b8cb6a62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313e94a47e561cc581d75d6df7835f9c1d75d0620d263d4c795ba0fb8d04b0d5a7ed424e3b1054c16a6559efcac5cdd30f0d836c226fc9d16c96e4593e94642a6a2254100225042b8266e34153168dff6496df697e9413ea651d4a080165410ae099b8d054c5a37fd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c85f88352398ac74acb37fc8c7c64089f2b567f05b0b22d1fa868776b5f4e0df0f0d8465e6da6b55830b8e356196dc34fd280654d27eea0801128166e09fb8d34a62d1bf6c96c361be940094d27eea0801128015c69cb81794c5a37f6496dc34fd280654d27eea080112816ae322b800298b46ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885891aed8e8313e94a47e561cc581d75d6df705c85a839bd9abd07f0f8769702ec8190bffc60f0d8471e69a775585109d03ce7fc56c96e4593e94642a6a2254100225042b826ae082a62d1bff6496df697e9413ea651d4a080165410ae09ab820298b46ffc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf5f92497ca589d34d1f6a1271d882a60b532acf7fc464022d317b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61d5dbf4085a4649cd5178ddda43f3f3f3f3f3f3f3f2d89bf4087b0b5485b126a4b8f08586581002251cb827ee34d290e8f4089f2b585aa42d893525f8702e0032a20a447d16196dc34fd280654d27eea0801128166e09fb8d32a62d1bf0f0d8308997bcd4085aec1cd48ff86a8eb10649cbf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c7bec6ccc5c4c37f038ddda43f3f3f3f3f3f3f3f2d81ffc20f28b5f66ae025c27bfb5243d233550528a9721e9fb50be6b3585441b869fa50205b49fbac20044a05ab827ee34d298b46ffb52b1a67818f7f028702e071d5105223d5d30f0d03313338d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fc1c9cfc8c7768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c014090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934fd34089f2b567f05b0b22d1fa868776b5f4e0dfc06196dc34fd280654d27eea0801128166e09fb8d38a62d1bf0f0d84136e320f6c96e4593e94642a6a225410022504cdc0b971b714c5a37f52848fd24a8f0f138ffe5f6c2eb619051c91ba4903701fcf">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfcb5f87352398ac4c697f6c96df3dbf4a080a6a2254100215020b8276e36f298b46ffc10f138efe40d4631965089e94840dc07f3fd2c44003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e09fb8d3aa62d1bf0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd0c264022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfc60f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf4001738be393068dda78e800020007c30f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b0342136f39f5f88352398ac74acb37f768abda83a35ebddbef42073408cf2b0d15d454addcb620c7abf8769702ec8190bffcfc87f038abda83a35ebddbef420730f0d033831385585644169e7bfc96497dd6d5f4a01a5349fba820044a05db8cb571a6d4c5a37ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ff52848fd24a8f0f138efe401232dc6414a3649206e03f9fcb54012ad1d00f0d033935344085aec1cd48ff86a8eb10649cbf408a224a7aaa4ad416a9933f830befb96496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c270405a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fc35f87352398ac4c697f64022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfc80f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf7f118be393068dda78e8000200376196dc34fd280654d27eea0801128166e09fb8d3aa62d1bf0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffca6496dc34fd2816d4d27eea08007940b97000b800298b46ff4003703370e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28fe1d5d20cd2db03d2e271e56f79b3cff6047ff3fe951678bfd7957760e2c4f565d73b58767188b9ba7f8fc3a30b5738ff6d4fcd8785b3a70ff4b6df01da3fff2dc9ff9ff7c7f7ed4ac699e063ed42f9acd6151061b0df4a002b612c6b08016540b3704fdc69d53168dff6a487a466aa05c7255e50b90f4fda98d29af55547a5f92497ca589d34d1f6a1271d882a60b532acf7fc30f0d830b4e33">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf408aa924396a4ad416a9933f023432ca648872e09fb8d0948747c840874d8327535531a49a66391c7a3908b04af85668202ad1c8f8961bcdbe1648079f0b5f4089f2b567f05b0b22d1fa868776b5f4e0dfc8cf0f0d023534">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130c8408721eaa8a4498f5788ea52d6b0e83772ff4085aec1cd48ff86a8eb10649cbf6496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d023335cec3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f0dc6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff588ba6d4256b0bdc741a41a4bf6496d07abe94036a693f7504008940b3704fdc69e53168df0f28ff1c949059da3c0ceb3db5b5aa5eef62f37f062c7941bc54eb2a5ced82c9fde58ff043fc061e3cdeb732de4c9e78cbdf469cdc5bedb75efd98f1eac365fbb83ce7f592cfd5ba67db7e2b19f04589b1dc3b7355937e6e7ef533ef9f16c524f99a93760b34beb60267d50a7b03ed4be7a466aa05d36d952e43d3f6a60f359ac2a20df3dbf4a004b681fa58400b2a059b827ee34f298b46ffb5358d33c0c75f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e09fb8d3aa62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c6c5cb5f91497ca589d34d1f649c7620a98386fc2b3dc158a0aec3771a4bf4a547588324e5fa52a3ac849ec2fd294da84ad617b8e83483497f6196dc34fd280654d27eea0801128166e09fb8d3ca62d1bf0f0d83682d0bcfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887f10842507417f58b5aec3771a4bf4a523f2b0e62c00fa52a3ac419272fd2951d6424f617e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692f6495dc34fd2815328ea50400014006e003700053168dff6c95dc34fd2815328ea50400014006e003700053168dff4085aec1cd48ff86a8eb10649cbf768986434beb716cee5b3f5f87352398ac4c697f0f0d0234350f28dd4401fa17cb607db091a27cb3b1aa0d8fce8f18be6cfdf45097c5fe75d5d64efbb2f5f65713ab4738bc4107cfda958d33c0c7da85f359ac2a20d07abe94032b693f758400b4a059b827ee34f298b46ffb5243d2335500e5f410af5153f77f10d9acf4189eac2cb07f33a535dc6181c8b8e5f410af5152c5761bb8c9e97f34d1fcfd297b5c1fca9a756452feed6a69c97d486fe81a97f0711a9af7423535eebe353570daa6adfb46a64d37d4bdab429a61e2a6edf0a9ab7defe7">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"488264025894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffc36496dc34fd2816d4d27eea08007940b97000b800298b46ff7f02e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28bd41508803f6a5634cf031f6a17cd66b0a88375b57d280696d27eeb0801128166e09fb8d3ea62d1bfed490f48cd540b8e4abca1721e9fb531a535eaaa8f50f1fb29d29aee30c58ba6db2a5c87a58b188e4ff24909007e2b349036d7c13b96c803f169a481975b6dc68416d979c65a7df7df17f6196dc34fd280654d27eea0801128166e09fb8d3ea62d1bf0f0d01305f96497ca589d34d1f6a1271d882a60c9bb52cf3cdbeb07f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"887689c540d08c2644ea77677f03c6acf4189eac2cb07f2c473b1e192315b35afe69a3f9fa52f6b83f9d3ab2297f76b52f6adaa69c97d4bdc368d4bf8388d4d7ba11a9ab86d52ef0dca5ed5a14d30f153269dffcff0f28deae38ac4c7117bc0259b65b69c0aec85f699036e32d81b081f0b6ebeb81702e165b0bed3ed85a71a77ed4be7a466aa05c87a925f29f058d721e9fb53079acd615106eb6afa500cada4fdd61002ca8166e321b8db4a62d1bfed4d634cf031f40872785905b3b96cf87a261ac3aeb7002589caec3771a4bf4a523f2b0e62c00fa52a3ac419272fd2951d6424f617f64022d315f95352398ac4c697ec938ec4153064dda9679e6df583f5b842d4b70dd798624f6d5d4b27f6196dc34fd280654d27eea0801128166e321b8db4a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"cd5892ace84ac49ca4eb003e94aec2ac49ca4eb0035d89ac7626a2d8bce9a68f5f87497ca589d34d1fcb6496d07abe94138a65b68502fbeea806ee001700053168df6c96dc34fd280654d27eea0801128166e09fb8d3ea62d1bf0f1fa89d29aee30c124a9745674f924e3aa62ae43d2c52590c36133db4c6862b3792d0c566f25a1798d2ff7f0babbdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa64d37d4e1a72297b568534c3c5486fe81ff34085aec1cd48ff86a8eb10649cbf76ad86b19272b025c4b882a7f5c2a379fed4a4f2448450c09712e20a9aab2d5bb767600bbebbc55a535685ac9cb4370f28ff6cac7626a2d8b0202e9ad3ef40334dd61e1b35610f7e1de6f7eef61068cbe3ad78adc2cf2f58bf095ddcdabf73f3cf95515d545876e54e2f2eeac7e88ecbe78c9aaea383546ef2697f4d7b67a19b2bdde19ddc03cfa6ad38bf42d3a1b346a1e2ad9929efbcf4f0aedd4d9c9ca9ebe6ec2d766eacc8e5fb297f5cd79ff7ca3c19ec5e2484d34ecc9abc61bafef95515d94b18386b14b313bd1b70ecdf9756c85cb43e32ce0b1ad5b19ced2a2bacfe63708eeaeda1566ffda85f359ac2a20dd6d5f4a0195b40ec58400b2a059b827ee34fa98b46ffb52b1a67818fb5243d2335502e8ace9f249c754c55c87a7f4082492a8424e7310b7b86a8b31d261a4bc9408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264020f1fca9d29aee30c58ba6db2a5c87a58b18252860d2300624908c058acd2301798b4d231fe4c73cd416298d2417a1c1bb064dfb594e7c14649bce9409be9ef8bda2407c4c73cd41622772d90076196dc34fd280654d27eea0801128166e09fb8d3ea62d1bfc46496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a1271d882a60e1bf0acf7768abc73f53154d0349272d90f0d826400408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3768586b19272ff589baed8e8313e94a47e561cc581907d295d87f3e96b0bdc741a41a4bfcecb7f0d99bdae0fe6f70daa437f429ab86d534eadaa6edf0a9a725ffe7f0f28cc34048e42362906b46cc8d2cd4aebeb464740b3211064001c964947f6a17cd66b0a88341eafa500cada4fdd61002d28166e09fb8d3ea62d1bfed4ac699e063ed490f48cd540b9eb2d5e57a8a90f0d0234337f09842507417f5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c8769186b19272b025c4bb2a7f578b52756efeff4089f2b567f05b0b22d1fa88d78f5b0daecaecff7f03afbdae0fe74eac8a5ee1b46a437f40d4bf8388d4df0e41a9ab86d52ef0dca64d37d4e1a72297b568534c3c54c9a77ff30f28cbaed4c410bcdc0c85f699036e32d81b081f0b6ebff6a17cd66b0a8839164fa50025b28ea58400b2a059b827ee34fa98b46ffb52b1a67818fb5243d2335502f65b19887aabb0fd0a44ae43d30f0d0234394088ea52d6b0e83772ff8f49a929ed4c0c83e94a47e607df03bf7f0488cc52d6b4341bb97fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cd769186b19272b025c4b884a7f5c23b6a4dbfdf7f0390d78f5b0daecae102c1b63b6a4dacaed74085aec1cd48ff86a8eb10649cbf58acaec3771a4bf4a523f2b0e62c00fa52a3ac419272fd2948fcac398b03ce34007d294da84ad617b8e83483497fc90f28dfa3a26c4c70172fab38f4cbc11464f5a6cd80d1bf9f8d3bf40b4ef843a73c20d37f933c731f0c381fef74932acdffb50be6b3585441badabe94032b693f758400b2a059b827ee34fa98b46ffb52b1a67818fb5243d2335502f41ba192b90f4f0f0d0234336496dd6d5f4a01a5349fba820044a059b827ee34fa98b46fc9c8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f07c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc3cb0f0d0234336196dc34fd280654d27eea0801128166e09fb8d3ca62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1c0bfc40f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71a7d4c5a37fda9ac699e063fcc0f0d0234336196dc34fd280654d27eea0801128166e09fb8d3ea62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1c0c50f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71a7d4c5a37fda9ac699e063fcd0f0d023433be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1c0c50f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71a7d4c5a37fda9ac699e063fcd0f0d023433be">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8876871c83ad3dd80ae0cec90f28ff01b131df1a46083f9ea5f5026db2ab9dc745a58190bed3206dc65b036103e16dd7ee17cd66b0a885306e1a7fde93f7ff6107fb036ab3089f55985a7ffdebddbffd880115c644b5e3d358d268e82c09b2d2ff3f7ac699e063eef9e919aa8171c83ad74f7fbc1e6b3585441a0f57d280656d27eeb08016940b3704fdc69f53168dff0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c352848fd24a8f0f1392e4c7f220bed3ab0596c2f01e64410001fcff6c96df3dbf4a002a693f75040089410ae05eb8d054c5a37f5f88352398ac74acb37f0f0d84105f69dfc37f0d88ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c376b686b19272b025c4bb4a7f5c2a379fed4bf0f1604a5279224228604b897694d5596addbb3b005df5dd1a949e48a51a12498cc09769717f0f28c6d7c2eedc1be1db8b06f81e144169a71b6dd65e7fed490f48cd5415db1d234988b90f4fda85f359ac2a20df697e94032b693f758400b6a059b827ee34fa98b46ffb52b1a678180f0d01317f08e2bdae0fe74eac8a5fddad4bdab6a99e1e4a5ee1b5486fe83a97f0713a9be1c87535ee84ea6bdd7cea64e309d4c9c6f9d4c79371d4d5bf59d4d5c36a9ba1d0752ef0dca70d3914bdab429a61e2a64d3bd4bf834297b4ef5376f854d7b70299f55efe7f5894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffcd7f02842507417f5f87497ca589d34d1f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c97df3dbf4a09c5340fd2820042a05bb8dbf719714e1bef7f0f0d0234335f87352398ac4c697f588aa47e561cc5802f0996dd6196dc34fd280654d27eea0801128166e09fb8d814c5a37fc8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c27f07b5acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3c16496dc34fd280654d27eea0801128166e09fb8d814c5a37f5895a47e561cc5801f4a547588324e5fa52a3ac849ec2f4085aec1cd48ff86a8eb10649cbfc20f0d023433cc0f28b6bda2fdf83ee43d23355010681d05a4b2186b90f4fdd634cf031f65f359ac2a20dd6d5f4a01a5349fba820044a059b827ee36053168df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c67f02c7acf4189eac2cb07f33a535dc61848e65c72525a245c87a58f0c918ad9ad7f34d1fcfd297b5c1fcebdd09d4d7baf9d4d5c36a9ba1d0a6adfb54bbc37297f76b521cf9d4bdab6ff3bf5886a8eb2127b0bf6496d07abe94138a65b68502fbeea806ee001700053168df0f0d023335c7c5cf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885a839bd9ab5283a8f5175899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fcac8c17f04cbacf4189eac2cb07f33a535dc61894d4150b8e48ec324ab90f4b1e192315b35afe69a3f9fabdae0fe74eac8a6bdd0a9af75f53570daa64d37d4e1a7229a61e2a5fc1a14ddbe15356fbdfcff7688fcd7831c6c05717f0f28e2b2314178db335de84068e9cdbd3e7a79f2989cefe301b07bd1e756fd9ef45fe02d1ef878d3bf078d5bf0074fbebb21d9f6a5634cf031f6a487a466aa05c7247619255c87a7ed42f9acd6151061b0df4a002b612c6b08016540b3704fdc6c0a62d1bf0f0d023539">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1c0cccac3bfbe0f28e3b2314178dc335df783ce8dfa1ad3ef67375e8e55ac7aee49f47bd1bfa8347b843a7a680e8bfc3ce8bfd7ce9de46f04383ed4ac699e063ed490f48cd540b8e48ec324ab90f4fda85f359ac2a20c361be940056c258d61002ca8166e09fb8d814c5a37ff0f0d023539">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fc75f92497ca589d34d1f6a1271d882a60b532acf7fc464022d317b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c014090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0dfc16196dc34fd280654d27eea0801128166e09fb8d854c5a37f0f0d84134c89ef6c96e4593e94642a6a225410022504cdc0b971b714c5a37f52848fd24a8f0f138ffe5f6c2eb619051c91ba4903701fcf">>, +[ +{<<":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\"">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003f5f86497ca582211fd2c00f138dfe5e03e40bcf371889206e03f9cac9c3c60f0d8375d1335585742eb2e35f6196dc34fd280654d27eea0801128166e09fb8d894c5a37f6c96e4593e94134a6a225410022502e5c65bb807d4c5a37f6496dc34fd282714d444a820059500e5c0b371a794c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c45f901d75d0620d263d4c741f71a0961ab4ff5a839bd9abc70f138efe40f32d32cb4e4622481b80fe7fd1d0cacd0f0d84085a7dbf5585742eb2e33fc46c96e4593e94134a6a225410022502e5c65fb8dbca62d1bf6496dc34fd282714d444a820059500e5c0b371a7d4c5a37fc3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692f4085aec1cd48ff86a8eb10649cbf5f87352398ac4c697f64022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfcf0f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf4001738be393068dda78e800020033d30f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d05f87352398ac5754dfc9d20f138dfe5a8e3215f0b91889206e03f97b8b84842d695b05443c86aa6f768dd06258741e54ad9326e61e5c1f4089f2b567f05b0b22d1fa868776b5f4e0df4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d84081f705fccd26c96e4593e94134a6a225410022502e5c65eb8cb2a62d1bfcbd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfcac96c96df3dbf4a080a6a2254100215020b8276e36f298b46ff52848fd24a8f0f138efe40d4631965089e94840dc07f3fc8c34003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e09fb8d894c5a37f0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88588ca47e561cc58190b6cb80003fc95a839bd9abc20f138efe492b2592591d6e311240dc07f3c9c8c7c60f0d831000d75585742eb2e35fc16c96e4593e94134a6a225410022502e5c65db821298b46ff6496dc34fd282714d444a820059500e5c0b371a794c5a37f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffc90f138efe401232dc6414a3649206e03f9f768dd06258741e54ad9326e61d5dbf54012acac90f0d033935354085aec1cd48ff86a8eb10649cbf408a224a7aaa4ad416a9933f831000f76496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c27040cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b03207dc75ef5f88352398ac74acb37f768abda83a35ebddbef42077408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f4001738abda83a35ebddbef420770f0d84138cb8ff5584704c805f6196dc34fd280654d27eea0801128166e09fb8d894c5a37f6496df697e94038a693f750400894082e04571a794c5a37fd1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fcc5f87352398ac4c697f64022d316c96d07abe940bca65b68504008540bf700cdc65d53168df52848fd24a8f0f138ffe4627d913ae38ec8d364206e03f9fd27f078be393068dda78e8000200356196dc34fd280654d27eea0801128166e09fb8d854c5a37f0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81c10bfce768abda83a35ebddbef4207bcdcccb7f028abda83a35ebddbef4207b0f0d8469b65f6bcac96496e4593e9403aa693f7504008940bf71a7ae32253168df408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ff4085aec1cd48ff86a8eb10649cbf6496dc34fd2816d4d27eea08007940b97000b800298b46ff7f12e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28ff101d5d20cd2db03d2e26ffdfff97bcd9e7fb023ff9ff4a8b3c5febcabbb071627ab37ff02d61d9c622e6e9fe3f0e8c2d5ce3fdb53f361e16ce9c3fd2db7c07afff9caf8bfebff260ff65b337f1fc7cd3fe6e83fda3bf6fb52b1a67818fb50be6b358544186c37d2800ad84b1ac20059502cdc13f71b1298b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d7f5f92497ca589d34d1f6a1271d882a60b532acf7fd10f0d830b2f87">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f02c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff588ba6d4256b0bdc741a41a4bf6496d07abe94036a693f7504008940b3704fdc6c4a62d1bf0f28ff1b94906bf185bc5961b1fdf8f539807c7afaeae55438814d0f1d9a0b740ffa2d096f4a1a0f37adccb793279e32f7d1a73716fb6dd7bdc262f3beaba2cd97a7ac58bb7ef17f5bafbacf822c4d8ee1db9aac9bf373f7a99f7cf8b62927ccd49bb059a5f5b0133ea853d81f6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b1298b46ffb5358d33c0c7f5f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e09fb8d894c5a37f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"488264027f07afbdae0fe74eac8a5ee1b46a437f40d4bf8388d4df0e41a9ab86d52ef0dca64d37d4e1a72297b568534c3c54c9a77ff36496df3dbf4a002a651d4a05f740a0017000b800298b46ff0f28a0ae00ad26ba75eb6dbcad4a0ddf7ac699e063eef9e919aa817b2534f6c6b90f4f0f1fc79d29aee30c1a35c7255e50b90f4b15f9e9fe4669242d9005ef8416681975e7001f8191263d5020a9b4d223faff4e3a2744d85f6c4d3227df71a7ffd7d7faff5fdfdfc58590d6410f0d0130">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfcecdcccb0f28ff111d5d20cd2db03d2e276fe3bde6cf3fd811ffcffa5459e2ff5e55dd838b13d59bfbf2d61d9c622e6e9fe3f0e8c2d5ce3fdb53f361e16ce9c3fd2db7c07afff9caf8bfebff260ff65b3438ee6d7ecbfc7fa260fda6e9b6f3fb52b1a67818fb50be6b358544186c37d2800ad84b1ac20059502cdc13f71b1298b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d70f0d0234335f87352398ac4c697fc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130c2408721eaa8a4498f5788ea52d6b0e83772ffd06496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d023335c7c2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfce4085aec1cd48ff86a8eb10649cbf5f91497ca589d34d1f649c7620a98386fc2b3dcb58a0aec3771a4bf4a547588324e5fa52a3ac849ec2fd294da84ad617b8e83483497fca0f0d83682d0bc5cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"c9768c86b19272ad78fe8e92b015c37f0ac6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc30f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b654c5a37fda9ac699e063fc90f0d0234336196dc34fd280654d27eea0801128166e09fb8db2a62d1bf0f1fad9d29aee30c495d2bc85a642f95ea2a583468b9256692065d6fe24aedb4d240c85f699036e32d81b081f0b6ebff798624f6d5d4b27f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"cec2c1c0c50f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b654c5a37fda9ac699e063fcb0f0d023433bf0f1fa99d29aee30c24732178e8b4bd4665c87a584192561a69f7ffc34903217da640db8cb606c207c2dbafffbe">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c2c1c0c50f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b3704fdc6d953168dff6a6b1a67818fcb0f0d023433bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"886197dc34fd28a0195349fba820044a059b827ee36ca98b46ff7f0c842507417f7689861e458f716cee5b3f7f05b1acf4189eac2cb07f33a535dc618f1e3c2e3907277320f62f5152c78648c56cd6bf9a68fe7eaf6b83f9d3ab229a725ffe7f0f0d0232315f901d75d0620d263d4c741f71a0961ab4ff0f28d61c7000000aacc3bcba5dc606993fe77ca0c520323fb7d9bab5ebcd71f9dfdd9ddf6a5f3d2335502e3907277320f62f5153f6a60f359ac2a20dc34fd28a0195349fba820059502cdc13f71b654c5a37fda9ac699e063f">>, +[ +{<<":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=/">>} +] +}, +{ +undefined, +<<"488264027f01ccacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a69c97d4bdc368d486fe81a97f0711a9af7423535eebe353570daa6e8740d4bbc3729af86d52f6ad0a69878a9934effe7f408290889aa06b48442ccac15cd524b6543a1790b4c85f2b90f4a815df5c220f28d190b4c85f3009a034f3cf3cf81a0b40136fb82001c105c6dc7c2275c642d3acb7f7ac699e063eef9e919aa81790b4c85f2bd454fde0f359ac2a20df3dbf4a0195b49fbac20084a099b8cbb719654c5a37ff6496df3dbf4a002a651d4a08007d4002e001700053168dff58bba8eb10649cbf551d6424f617ea9b5095ac2f71d0690692fd523f2b0e62c00faaec3f9f4b585ee3a0d20d25faa8eb26c1d4894f653f55d86ee3497f4085aec1cd48ff86a8eb10649cbf0f1fbd9d29aee30c495d2bc85a642f95ea2a5890b490f54abf4ae6ff0a9b868d0aba490691dc92b349032eb7f12576da6920642fb4c81b7196c0d840f85b75ff0f0d01307691ca54a7d7f4eae25c4bf7100200880dff7f">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88c37f039ba06b48442ce2ccae6a925b2a1d0bc85a642f95c87a540aefae117f0f28d192ba60134069e79e79f034168026df704003820b8db8f844eb8c85a7596fef58d33c0c7ddf3d2335502f2574af216990be57a8a9fbc1e6b3585441be7b7e94032b693f75840109413371976e32ca98b46fc25f88352398ac74acb37fc2c140824251024f4b0f0d03333038c1">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"c7768c86b19272ad78fe8e92b015c37f08c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc50f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b654c5a37fda9ac699e063f0f1fd09d29aee30c20b3525a92b566f25a17355dcc92d2590c35c87a5841531563b13516c8ad349fe563b13516cc97e06802f842088886449bb9600fc563b13516ce192fc0c85f699036e32d81b081f0b6ebff798624f6d5d4b27f6196dc34fd280654d27eea0801128166e09fb8db2a62d1bf">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"ccc2c1c0c70f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b654c5a37fda9ac699e063f0f1fad9d29aee30c495d2bc85a642f95ea2a583468b9256692069d07c495db69a48190bed3206dc65b036103e16dd7ffbfbe">>, +[ +{<<":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">>} +] +}, +{ +2730, +<<"3f8b1588cb7f069ba06b48442ce2cd2e6a925b2a1d0bc85a642f95c87a540aefae117f0f28d192ba60134069e79e79f034168026df704003820b8db8f844eb8c85a7596fef58d33c0c7ddf3d2335502f2574af216990be57a8a9fbc1e6b3585441be7b7e94032b693f75840109413371976e32ca98b46fca5f87352398ac4c697fcac9c50f0d023432c8">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"cec00f28bc31e296c2f6b4b513d41f7ac699e063eef9e919aa80d577324b496430d721e9fbc1e6b3585441be7b7e940056ca3a960bee814002e001700153168dff6496df3dbf4a002a651d4a05f740a0017000b800298b46ffca7f05e4acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe756fc8a5fddad4bdab6a90dfd07537c390ea6bdd09d4d7baf9d4bdab49d4d5c36a9ba1d075356fda75376fd6a70d3914d7c36a97b568534c3c54c9a77a97f0685376f854d7b70299f55efe7f5886a8eb10649cbf0f1fcb9d29aee30c1295e65e43db1d0525062755ea2a58acde4b47f931cf35058aa34901aaee649692c861fc4c73cd4162253f131cf35058a7a60fdc525447b9c7b62327cebd7a19ccf51a7c41070f0d0130408721eaa8a4498f57842507417f7691ca54a7d7f4eaecae15fb8801081903bfdf">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"d30f1fc49d29aee30c4cb566f25a17355dcc92d2590c35c87a589a91a49396cff2639e6a0b14c6920bd0e0dd8327ebbeaea060137c2dcade0e17f2209613e2639e6a0b113b96c8036196dc34fd280654d27eea0801128166e09fb8db4a62d1bfcf6496c361be940054ca3a940bef814002e001700053168dff5892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a1271d882a60e1bf0acf7768abc73f53154d0349272d90f0d03323933408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c30f28bc31e296c2f6b4b513d41f7ac699e063eef9e919aa80d577324b496430d721e9fbc1e6b3585441be7b7e940056ca3a960bee814002e001700153168dffc8d4c9c7c60f0d023433c5c4">>, +[ +{<<":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)">>} +] +}, +{ +undefined, +<<"88cfcecdd40f28c6b4d240cb61136d884fbccb61759089f73ed4be7a466aa05c76c862d4429bb2e43d3f6a60f359ac2a20df3dbf4a004b681fa58400b2a059b827ee36d298b46ffb5358d33c0c7fc90f0d023433cb">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfcecdd40f28c6b4d240cbc17c2e32d3eebe27d965d13acfda97cf48cd540b8ed90c5a8853765c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b3704fdc6da53168dff6a6b1a67818fc90f0d023433c3">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3769186b19272b025c4bb2a7f578b52756efeff7f09d8bdae0fe74eac8a5fddad4bdab6a97b86d521bfa0ea5fc1c4ea6bdd09d4d7baf9d4d5c36a9ba1d0752ef0dca70d3914d30f1fe7e94acf4189eac2cb07f33a535dc61848e642f1d1697a8ccb90f4b1e192315b35afe69a3f9fd66496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5895a47e561cc5801f4a547588324e5fa52a3ac849ec2f0f28b98fac8483c484fb50be6b3585441a0f57d280656be522c20044a059b827ee36d298b46ffb52b1a67818fb5243d2335502f1d1697a8ccb90f4ff40878faac82d9dcb67839591370f0d023632ce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81c0bbfd7768abda83a35ebddbef4207b408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df7f06a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f4001738abda83a35ebddbef4207b0f0d8469f7dd6f5584704c81afcf6496e4593e9403aa693f7504008940bf71a7ae09d53168df7f1388ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b0340109a7bfe0768abda83a35ebddbef42073c6c5c47f048abda83a35ebddbef420730f0d846da101cfc3d46496e4593e9403aa693f750400894086e36ddc65e53168dfc2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034069913ffe4cac9c8c7c60f0d8465a089ffc5d66496e4593e9403aa693f75040089408ae320b817d4c5a37fc4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81c107f5f88352398ac74acb37f768abda83a35ebddbef42077cdcccb7f058abda83a35ebddbef420770f0d846401743f5584704c819fdc6496e4593e9403aa693f7504008940bf71a7ae32253168dfca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b0342684f3bfc3d2d1d0cfce0f0d8464400bdfc0de6496e4593e9403aa693f7504008940bd7002b8dbca62d1bfcc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034275a137fc5c4d3d2d1c30f0d84134179bfc2e06496e4593e9403aa693f7504008940bd71b6ee05c53168dfce">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b009d105d6bfc7d6d5d4d3d20f0d846597da67c4e26496d07abe94036a693f75040089413371a76e34da98b46fd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b03226de743fc9cfd7d6d5ce0f0d846c4cb6cfd3e46496df697e94038a693f7504008940b571a15c682a62d1bfd2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c802dbdfcbdad9d8d7d60f0d8413eeb2e7d56196dc34fd280654d27eea0801128166e09fb8db4a62d1bf6496e4593e9403aa693f7504008940bf71a05c69e53168dfd5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81f135fcedddcdbdad90f0d840b8d36ffd8c06496e4593e9403aa693f7504008940bf71b66e32d298b46fd7">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b032f880267fd0dfdedddcdb0f0d840b8f3cf7cdc26496e4593e9403aa693f75040089403f700ddc0b4a62d1bfd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d2d1d0dfdeddcf0f0d8465f0b2d7cec3cdd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81c0b9fd2d1e0dfded00f0d840bce38cfcfc4dbda">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88bed2768abda83a35ebddbef4206fe1e0df7f128abda83a35ebddbef4206f0f0d84109b69bfd1c6dddc">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b03207dc781fd5c0408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc20f0d8469e75a73d5ca6496df697e94038a693f750400894082e04571b0a98b46ffe1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b032075a6d9fda768abda83a35ebddbef4207bc3c2c17f068abda83a35ebddbef4207b0f0d84644e36e7d9ce6496df697e94038a693f75040089403f7196ee34d298b46f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f00bfdfc2c7c6c5c10f0d8369a75955840b8eb4f7d26496df3dbf4a01e5349fba820044a01eb8d3f700f298b46fc1">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b03427da7c5fe2768abda83a35ebddbef42073cbcac97f068abda83a35ebddbef420730f0d836c4cbf5584109d6c1fd76496df3dbf4a01e5349fba820044a01cb827ae36e298b46fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034271f741f5f88352398ac74acb37fcbd0cfceca0f0d8369d79a5584109d6c3fdb6497df3dbf4a01e5349fba820044a01bb8d3971b654c5a37ffca">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f69afc1d6d3d2d1d50f0d8365e69955846c0d3edfde6496e4593e9403aa693f750400894133704edc132a62d1bfcd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c842d33fc4d9d6d5d4d80f0d83680dbd55846c0db41fe16496e4593e9403aa693f750400894133702cdc0b8a62d1bfd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85d703fc7768abda83a35ebddbef42077dad9d87f0d8abda83a35ebddbef420770f0d83644f87558479a740cf6196dc34fd280654d27eea0801128166e09fb8db4a62d1bf6496e4593e9403aa693f7504008940b371b6ae044a62d1bfd6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c81c107fcde2dfdedde10f0d8465a69b7f5584704c805fc16496e4593e9403aa693f7504008940bf71a7ae32ca98b46fd9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bf4085aec1cd48ff86a8eb10649cbf5f87352398ac4c697f6c96df3dbf4a080a6a2254100215020b8276e36f298b46ff52848fd24a8f0f138efe40d4631965089e94840dc07f3f768dd06258741e54ad9326e61d5dbfe6e50f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e09fb8db6a62d1bf0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffc30f138efe401232dc6414a3649206e03f9fc254012a4003703370a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc30f0d03393534c8408a224a7aaa4ad416a9933f830befb96496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c270405a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fcdcc64022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfcc0f138ffe4627d913ae38ec8d364206e03f9fcb7f188be393068dda78e800020039cb0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffd16496dc34fd2816d4d27eea08007940b97000b800298b46ff7f09e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28ff191d5d20cd2db03d2e26b77ff09dfa58c7f80d7fd7cc36dd5adf9f998373f3261bdfff701bfd310ecf1879eafff3bcf8f6b3bb76476e0108fc0f51ff08ffd7f9ef9a3e5877ff9bc3abffed1ffe1f670afb68f38f3f5ff5d7affedd63fef26dedf6a5634cf031f6a17cd66b0a8830d86fa50015b096358400b2a059b827ee36e298b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d75f92497ca589d34d1f6a1271d882a60b532acf7f6196dc34fd280654d27eea0801128166e09fb8db8a62d1bf0f0d830b4d3b">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f03c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff588ba6d4256b0bdc741a41a4bf6496d07abe94036a693f7504008940b3704fdc6dc53168df0f28ff1a94900a5a381463bfb8687bceac80c9e3f3bee6efd767e0f3bdbdec8639dfd7eb0ea665dbcdeb732de4c9e78cbdf469cdc5bedb75ef647601dcdc01e9c3456ecf7b7c7ef1cb76c67c11626c770edcd564df9b9fbd4cfbe7c5b1493e66a4dd82cd2fad8099f5429ec0fb52f9e919aa8174db654b90f4fda983cd66b0a8837cf6fd28012da07e961002ca8166e09fb8db8a62d1bfed4d634cf0315f95497ca58e83ee3412c3569fb24e3b1054c1c37e159e798624f6d5d4b27fce7b8b84842d695b05443c86aa6fd8">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cedddccdccda0f138ffe4627d913ae38ec8d364206e03f9fd97f0c8be393068dda78e800020037d90f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88cfdeddcecddb0f138ffe4627d913ae38ec8d364206e03f9fda7e8be393068dda78e80002000bda0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b032cba1137f5f88352398ac74acb37f768abda83a35ebddbef4207b408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0dfda7f048abda83a35ebddbef4207b0f0d8469d680ff5584704c819f6196dc34fd280654d27eea0801128166e09fb8db4a62d1bf6496df697e94038a693f7504008940bb71b05c0b8a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130e4be4085aec1cd48ff86a8eb10649cbf6496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88d4d3c15f91497ca589d34d1f649c7620a98386fc2b3de058a0aec3771a4bf4a547588324e5fa52a3ac849ec2fd294da84ad617b8e83483497fd70f0d83682d0bc4d0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c802dbdfcd768abda83a35ebddbef4206fcccb7f18a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f7f0c8abda83a35ebddbef4206f0f0d84680d38d7cbca6496e4593e9403aa693f7504008940bf71a05c69f53168dfc9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbfc9c6e5768dd06258741e54ad9326e61d5c1f7f03a7bdae0fe74ead2a5fddad4bdab6a97b86d1a9af742a6bdd7d4d5c36a97786e534c3c54ddbe1fe7fd26196dc34fd280654d27eea0801128166e09fb8db6a62d1bf0f0d023433d9">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfcdca6c96df3dbf4a080a6a2254100215020b8276e36f298b46ff52848fd24a8f0f138efe40d4631965089e94840dc07f3f768dd06258741e54ad9326e61d5dbfd6c80f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7fe40f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffc20f138efe401232dc6414a3649206e03f9fc154012acc6196dc34fd280654d27eea0801128166e09fb8dbaa62d1bf0f0d83085c17d5408a224a7aaa4ad416a9933f83138f376496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd61038e042cb4b6f0800db6f32fb6b5e74000000000000084010035a839bd9ab">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fdad764022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfcb0f138ffe4627d913ae38ec8d364206e03f9fca7f148be393068dda78e800020037c60f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1dddac0bfcc0f138ffe4627d913ae38ec8d364206e03f9fcb7e8be393068dda78e8000200356196dc34fd280654d27eea0801128166e09fb8db8a62d1bf0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c3dfdcc2c1ce0f138ffe4627d913ae38ec8d364206e03f9fcdc0c80f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"880f0d83132d39c80f1f9f9d29aee30c200b8a992a5ea2a58ee62f81c8c32e342640db01583e42bcc697d4df7689bf7b3e65a193777b3f5f87497ca589d34d1fc6">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f6c96df697e9403ca681fa50400894102e01fb80754c5a37f6196c361be940094d27eea080112816ae320b807d4c5a37f6496dc34fd280654d27eea080112816ae320b807d4c5a37f4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb768344b2970f0d826441408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f5584784ebcf75890aed8e8313e94a47e561cc581e71a003f7b8b84842d695b05443c86aa6fd0">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e86c96df3dbf4a09a5340fd2820044a0817022b8db8a62d1bf6196c361be940094d27eea0801128205c6c3700053168dff6496dc34fd280654d27eea0801128205c6c3700053168dffc6c50f0d840b8cbeffc455846df7d97bc3c2d4">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130d8408721eaa8a4498f5788ea52d6b0e83772ff4085aec1cd48ff86a8eb10649cbf6496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf5f87352398ac4c697f">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e5c1bee4e30f138efe40d4631965089e94840dc07f3fe24089f2b567f05b0b22d1fa868776b5f4e0df7f29a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e09fb8dbca62d1bf0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4e3e2e60f138efe401232dc6414a3649206e03f9fe5e1bf6196dc34fd280654d27eea0801128166e09fb8dbea62d1bf0f0d03393533c57f21830befb9e07f209bd6103a265a6995b784006db038fb2b5e13e0000000000003c27040df">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88dec7c4dddce90f138ffe4627d913ae38ec8d364206e03f9fe87f1b8be393068dda78e800020039c20f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffc96496dc34fd2816d4d27eea08007940b97000b800298b46ff7f06e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f7f1501300f28ff1a1d5d20cd2db03d2e217ffcb09dfa58c7f80d7fd7cc36dd5adf9f998373f325d8b3e037fa621d9e30f3d5ffe779f1ed6776ec8edc0211f8193a9e1d44ffdffafff3f8fcb550ecf9fff9be1d20c18afeeffbdb56af2f4deae3a9a797b07261ef5f6a5634cf031f6a17cd66b0a8830d86fa50015b096358400b2a059b827ee36fa98b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d7f5f92497ca589d34d1f6a1271d882a60b532acf7fc60f0d03353339">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e4cdcae3e252848fd24a8f0f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbfe3c90f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88e6cfcce5e4bf0f138ffe4627d913ae38ec8d364206e03f9fbe7f068be393068dda78e800020033c90f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bfe15a839bd9ab640130d94086f2b5281c86938e640003cfb4d01713efbecb4f34f7ce7f16842507417f0f0d03353038">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f0ac6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fd80f28c2b4d240c85f699036e32d81b081f0b6ebff6a5f3d2335502e9b6ca9721e9fb53079acd615106f9edfa50025b40fd2c20059502cdc13f71b7d4c5a37fda9ac699e063fd50f0d023433d2">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"890f0d0130d1d9d8d7d6d5">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfd9d66c96df3dbf4a080a6a2254100215020b8276e36f298b46ffca0f138efe40d4631965089e94840dc07f3fc9d6d50f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e320b800298b46ff0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffce0f138efe401232dc6414a3649206e03f9fcd54012adad80f0d03393534df7f18831000f76496c361be940054ca3a940bef814002e001700053168dffd8cd">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fe2df64022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfd40f138ffe4627d913ae38ec8d364206e03f9fd37f138be393068dda78e800020037de0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c1e5e2c0bfd50f138ffe4627d913ae38ec8d364206e03f9fd47e8be393068dda78e800020035df0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88c24085aec1cd48ff86a8eb10649cbfe4c2c1d70f138ffe4627d913ae38ec8d364206e03f9fd67f008be393068dda78e800020007cb0f0d023432">>, +[ +{<<":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">>} +] +}, +{ +undefined, +<<"88ddbfdcdbda0f28ff231d5d20cd2db03d2e273ae2277e9631fe035ff5f30db756b7e7e660dcfcc97fbb980dfe9887678c3cf57ff9de7c7b59ddbb23b700847e064a0191887ff500ac4ffdffbfeeb6bfc6ffc9725bfff35fef5475b9e7fbc9aac63e747ffda7fb47b1fff9f3303981ed9c66c7f6a5634cf031f6a17cd66b0a8830d86fa50015b096358400b2a059b8c82e000a62d1bfed490f48cd540b8e4abca1721e9fb531a535eaaa8f5fd9cb0f0d03353336">>, +[ +{<<":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>}, +{<<"content-type">>, <<"text/html; charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:00 GMT">>}, +{<<"content-length">>, <<"536">>} +] +}, +{ +undefined, +<<"88d55f87497ca589d34d1fd5d47b8b84842d695b05443c86aa6f7f158e640003cfb2f3ebb200004d3e10ffe4d40f0d83109f17">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-store">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"expires">>, <<"0">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-msadid">>, <<"300089389.300024911">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:29:59 GMT">>}, +{<<"connection">>, <<"close">>}, +{<<"content-length">>, <<"2292">>} +] +}, +{ +undefined, +<<"88ce0f28bc31e296c2f6b4b513d41f7ac699e063eef9e919aa80d577324b496430d721e9fbc1e6b3585441be7b7e940056ca3a960bee814002e001700153168dff6496df3dbf4a002a651d4a05f740a0017000b800298b46ffc35f87352398ac4c697f7f15e4acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe756fc8a5fddad4bdab6a90dfd07537c390ea6bdd09d4d7baf9d4bdab49d4d5c36a9ba1d075356fda75376fd6a70d3914d7c36a97b568534c3c54c9a77a97f0685376f854d7b70299f55efe7f5886a8eb10649cbf0f0d023433d87691ca54a7d7f4eaecae15fb8801081903bfdf">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:00 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)">>} +] +}, +{ +undefined, +<<"890f0d0130d37f1a88ea52d6b0e83772ffc86496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfc4">>, +[ +{<<":status">>, <<"204">>}, +{<<"content-length">>, <<"0">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:00 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">>} +] +}, +{ +undefined, +<<"88d8cac4d7e30f138efe40d4631965089e94840dc07f3fe24089f2b567f05b0b22d1fa868776b5f4e0df7f05a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f0f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e320b800a98b46ff0f0d023432">>, +[ +{<<":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:01 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"88d8d7d6e60f138efe401232dc6414a3649206e03f9fe5d5bf6196dc34fd280654d27eea0801128166e320b801298b46ff0f0d03393534ced5d44086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c27040e4">>, +[ +{<<":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:30:02 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">>} +] +}, +{ +undefined, +<<"88d4cfc9d3d252848fd24a8f0f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf7f118be393068dda78e800020039c30f0d023432">>, +[ +{<<":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:30:01 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"88d7d2ccd6d5c00f138ffe4627d913ae38ec8d364206e03f9fbfd1c30f0d023432">>, +[ +{<<":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:01 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"88d7d2ccd6d5c00f138ffe4627d913ae38ec8d364206e03f9fbfd3c30f0d023432">>, +[ +{<<":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:30:01 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffd36496dc34fd2816d4d27eea08007940b97000b800298b46ff7f07e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28ff291d5d20cd2db03d2e2083613bf4b18ff01affaf986dbab5bf3f3306e7e64bdd29c06ff4c43b3c61e7abffcef3e3daceedd91db80423f032500c8c43ffa805627feffdff75b5fe37fe4b92dfff9aff7aa3adc7a0093cf3c1d755e56384da5e001a6b84f8fbfbfe15d1ffc237ff9b39fefda958d33c0c7da85f359ac2a20c361be940056c258d61002ca8166e320b801298b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d75f92497ca589d34d1f6a1271d882a60b532acf7fc70f0d03353535">>, +[ +{<<":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=8fG10Qcvjr/?0P(*AuB-u**g1:XICjmEi\'/AQwFYO^vhHR3SSI7:0ssX1dl0I/A@=2rt>+)p4?5?fIu>}, +{<<"content-type">>, <<"text/html; charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 GMT">>}, +{<<"content-length">>, <<"555">>} +] +}, +{ +undefined, +<<"48826402c8d20f0d0130ce76afa522604bb8b897134e36a6e2d6a09a5040089410ae0837196942f8b16acde4b42de42a56691407976365f5190b6d37d17f03bdbdae0fe74eac8a5fddad4bdab6a9a725f52f70da3521bfa06a5fc1c46a6bdd08d4d7baf8d4d5c36a97786e52f6ad0a64d3bd4d5bef29af86d5376f87f90f28d0b6d34903607db091b1ac3702eacc8a37968caeb8b46194a379a91c7dc97ed490f48cd540bd234ce91ccb90f4fda958d33c0c7da85f359ac2a20dd6d5f4a0195b49fbac20059502cdc641700253168dff0f1fba9d29aee30c23d5445e91a6748e65c87a5847aa88c1a99bfca53117c9a4802cfc52988be6d349032eb6db8d082db2f38cb4fbefbe2f8a698a3a89">>, +[ +{<<":status">>, <<"302">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"0">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"server">>, <<"mt2/2.6.2.2465 Sep 24 2012 22:21:34 ewr-pixel-x1 pid 0x7b39 31545">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"">>}, +{<<"set-cookie">>, <<"uuid=50951c5a-a617-32b8-be76-b1fea84d696f; domain=.mathtag.com; path=/; expires=Sun, 03-Nov-2013 13:30:02 GMT">>}, +{<<"location">>, <<"http://sync.mathtag.com/sync/img?mt_exid=13&mt_exuid=3755642153863499992&mm_bnc">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bfd95a839bd9ab640130da7f1a95640003cf3ef01713efbed3e00bab89f7de79c03cdfcf7f15842507417f0f0d83138f35">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-store">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"expires">>, <<"0">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-msadid">>, <<"300088980.299949017.299886085">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:01 GMT">>}, +{<<"connection">>, <<"close">>}, +{<<"content-length">>, <<"2684">>} +] +}, +{ +undefined, +<<"885f88352398ac74acb37f0f0d8465971e6756034745546496c361be9403ea693f75040089403571a72e36253168dfd2d8">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"content-length">>, <<"33683">>}, +{<<"allow">>, <<"GET">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 04:46:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"c8d2dc0f0d023433d876afa522604bb8b897134e36a6e2d6a09a5040089410ae0837196942f8b16acde4b42de5c52b348a03cb3211c502dbc16bdbc70f28cda531527ae00b3702cb617da7da00bfe040000ae0596c2fb4fb4017da921e919aa817a4699d2399721e9fb52b1a67818fb50be6b3585441a0f57d280656be522c20044a059b8c82e004a62d1bff0f1fb59d29aee30c24732178e8b4bd4665c87a5841925604fb4f7f869206c0fb612363586e05d599146f2d195d7168c32946f35238fb92ff">>, +[ +{<<":status">>, <<"302">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"server">>, <<"mt2/2.6.2.2465 Sep 24 2012 22:21:34 ewr-pixel-x6 pid 0x3dc6 15814">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA\"">>}, +{<<"set-cookie">>, <<"mt_mop=13:1351949402|10002:1351949402; domain=.mathtag.com; path=/; expires=Mon, 03-Dec-2012 13:30:02 GMT">>}, +{<<"location">>, <<"http://tags.bluekai.com/site/2948?id=50951c5a-a617-32b8-be76-b1fea84d696f">>} +] +}, +{ +undefined, +<<"887684aa6355e7d4de798624f6d5d4b27fdb4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbfe07f0dd2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 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\"">>} +] +}, +{ +undefined, +<<"890f0d0130dadfbfdedde3">>, +[ +{<<":status">>, <<"204">>}, +{<<"content-length">>, <<"0">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:01 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">>} +] +}, +{ +undefined, +<<"88d9769186b19272b025c4bb2a7f578b52756efeff7f00d8bdae0fe74eac8a5fddad4bdab6a97b86d521bfa0ea5fc1c4ea6bdd09d4d7baf9d4d5c36a9ba1d0752ef0dca70d3914d30f1fe7e94acf4189eac2cb07f33a535dc61848e642f1d1697a8ccb90f4b1e192315b35afe69a3f9fc16496dd6d5f4a01a5349fba820044a059b8c82e004a62d1bf5890a47e561cc581e71a003e94aec3771a4b0f28b88fac8483c484fb50be6b3585441a0f57d280656be522c20044a059b8c82e004a62d1bfed4ac699e063ed490f48cd540bc745a5ea332e43d340878faac82d9dcb67832c8c930f0d0236325f87352398ac4c697f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:02 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">>, <<"Sun, 04 Nov 2012 13:30:02 GMT">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"set-cookie">>, <<"bkdc=wdc; expires=Mon, 03-Dec-2012 13:30:02 GMT; path=/; domain=.bluekai.com">>}, +{<<"bk-server">>, <<"ed3c">>}, +{<<"content-length">>, <<"62">>}, +{<<"content-type">>, <<"image/gif">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfc6bf6c96df3dbf4a080a6a2254100215020b8276e36f298b46ffdf0f138efe40d4631965089e94840dc07f3fdee4e30f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7fe10f0d023432">>, +[ +{<<":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:02 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fc8c164022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfe20f138ffe4627d913ae38ec8d364206e03f9fe17f218be393068dda78e8000200376196dc34fd280654d27eea0801128166e320b801298b46ff0f0d023432">>, +[ +{<<":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:30:02 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"88c2ccc5c1c0e40f138ffe4627d913ae38ec8d364206e03f9fe37f008be393068dda78e8000200336196dc34fd280654d27eea0801128166e320b80654c5a37f0f0d023432">>, +[ +{<<":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:30:03 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"88c4cec7c3c252848fd24a8f0f138ffe4627d913ae38ec8d364206e03f9f768dd06258741e54ad9326e61d5dbf7f028be393068dda78e800020007c30f0d023432">>, +[ +{<<":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:02 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"890f0d0130c17f1b88ea52d6b0e83772ffd26496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bfcd">>, +[ +{<<":status">>, <<"204">>}, +{<<"content-length">>, <<"0">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:03 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">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25fd5408a224a7aaa4ad416a9933f830befb95f92497ca589d34d1f6a5e9c7620a982d4cab3df6496c361be940054ca3a940bef814002e001700053168dffc64086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c2704054012a7f18a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fcb5a839bd9ab0f0d03393534">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache, must-revalidate">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cteonnt-length">>, <<"1996">>}, +{<<"content-type">>, <<"text/html; Charset=utf-8">>}, +{<<"expires">>, <<"Fri, 01 Jan 1990 00:00:00 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/7.5">>}, +{<<"x-radid">>, <<"P10723443-T100550693-C29000000000082620">>}, +{<<"access-control-allow-origin">>, <<"*">>}, +{<<"p3p">>, <<"CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\"">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:03 GMT">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"954">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ffdd6496dc34fd2816d4d27eea08007940b97000b800298b46ff7f02e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28ff311d5d20cd2db03d2e26fffeffe49dfa58c7f80d7fd7cc36dd5adf9f998373f3261fef96037fa621d9e30f3d5ffe779f1ed6776ec8edc0211f81928064621ffd402b13ff7feffbadaff1bff25c96fffcd7fbd51d6e3d0049e79b24f7c3fdb7fff17f9d20c18b02fffb397f8f1d87d7667ab763e6d0bfd45a7ed4ac699e063ed42f9acd6151061b0df4a002b612c6b08016540b371905c032a62d1bfed490f48cd540b8e4abca1721e9fb531a535eaaa8f55f92497ca589d34d1f6a1271d882a60b532acf7fd10f0d03353334">>, +[ +{<<":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`$cvjr/?0P(*AuB-u**g1:XIF)WEi\'/AQwFYO^vhHR3SSI7:0ssX1dl0I/A@=2rt>+)p4?5?fIu>}, +{<<"content-type">>, <<"text/html; charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:03 GMT">>}, +{<<"content-length">>, <<"534">>} +] +}, +{ +undefined, +<<"885886a8eb2127b0bf5f87497ca589d34d1fc56401307b8b84842d695b05443c86aa6f4086f2b5281c86938e640003cfb4d01713efbecb4f34f7d67f13842507417f0f0d03353039">>, +[ +{<<":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:30:03 GMT">>}, +{<<"connection">>, <<"close">>}, +{<<"content-length">>, <<"509">>} +] +}, +{ +undefined, +<<"887f07ccacf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a69c97d4bdc368d486fe81a97f0711a9af7423535eebe353570daa6e8740d4bbc3729af86d52f6ad0a69878a9934effe7f408290889aa06b48442cd2c25cd524b6543a1790b4c85f2b90f4a815df5c220f28d192ba60134069e79e79f034168026df704003820b8db8f844eb8c85a7596fef58d33c0c7ddf3d2335502f2574af216990be57a8a9fbc1e6b3585441be7b7e94032b693f75840109413371976e32ca98b46f6496df3dbf4a002a651d4a08007d4002e001700053168dffe358bba8eb10649cbf551d6424f617ea9b5095ac2f71d0690692fd523f2b0e62c00faaec3f9f4b585ee3a0d20d25faa8eb26c1d4894f653f55d86ee3497f4085aec1cd48ff86a8eb10649cbf40824251024f4b0f0d0234327691ca54a7d7f4eae25c4bf7100200880dff7f">>, +[ +{<<":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-4-2.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)">>} +] +}, +{ +undefined, +<<"88588da8eb10649cbf4a54759093d85fc1ccd1e4c8768dd06258741e54ad9326e61e5c1f408ef2b0d15d454d3dc8b772d8831eaf03342e30408bf2b5a35887a6b1a4d1d05f8cc9820c124c5fb24f61e92c014090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb408bf2b4b60e92ac7ad263d48f89dd0e8c1ab6e4c5934f408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0dfc16196dc34fd280654d27eea0801128166e320b80694c5a37f0f0d84138fbee76c96e4593e94642a6a225410022504cdc0b971b714c5a37f52848fd24a8f0f138ffe5f6c2eb619051c91ba4903701fcf">>, +[ +{<<":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:30:04 GMT">>}, +{<<"content-length">>, <<"26996">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 23:16:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"etag">>, <<"\"951751d2bdb7cd1:0\"">>} +] +}, +{ +undefined, +<<"8858a1aec3771a4bf4a547588324e5fa52bb0fe7d2d617b8e83483497e94a8eb2127b0bfcc5f87352398ac4c697f6c96df3dbf4a080a6a2254100215020b8276e36f298b46ffc10f138efe40d4631965089e94840dc07f3f768dd06258741e54ad9326e61d5dbfc5e00f28b9874ead37b1e6801f6a487a466aa022f4a2a5c87a7ed42f9acd615106fb4bf4a01c5b49fbac20044a059b827ee32053168dff6a5634cf031f7f6196dc34fd280654d27eea0801128166e320b806d4c5a37f0f0d023432">>, +[ +{<<":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:05 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"885899a8eb10649cbf4a54759093d85fa529b5095ac2f71d0690692fd1c264022d316c96d07abe940bca65b68504008540bf700cdc65d53168dfc60f138ffe4627d913ae38ec8d364206e03f9fc24001738be393068dda78e800020037c90f0d023432">>, +[ +{<<":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:30:04 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"885892a8eb10649cbf4a536a12b585ee3a0d20d25f5f92497ca589d34d1f6a5e9c7620a982d4cab3df6c96c361be94036a6a225410022502fdc13f704f298b46ffca0f138efe401232dc6414a3649206e03f9fc654012a7f1da9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3fc70f0d03393534d9408a224a7aaa4ad416a9933f831000f76496c361be940054ca3a940bef814002e001700053168dff4086f2b58390d27f9bd6103a265a6995b784006db038fb2b5e13e0000000000003c270405a839bd9ab">>, +[ +{<<":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:30:05 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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034271f79ef5f88352398ac74acb37f768abda83a35ebddbef42073d7d6c57f0b8abda83a35ebddbef420730f0d8413afb6cf5585640cb6fb3fd06496dd6d5f4a01a5349fba820044a099b8d3971a0298b46f408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=426988">>}, +{<<"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">>, <<"27953">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:05 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 23:46:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b0341700e3dfc4768abda83a35ebddbef4206fdddccb7f048abda83a35ebddbef4206f0f0d84684f05afc3d56496dd6d5f4a01a5349fba820044a08171a6ae34053168dfc2">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=416068">>}, +{<<"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">>, <<"42814">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:05 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 20:44:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d5e8d9d4d3db0f138ffe4627d913ae38ec8d364206e03f9fd77f008be393068dda78e80002000bd70f0d023432">>, +[ +{<<":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:30:05 GMT">>}, +{<<"content-length">>, <<"42">>} +] +}, +{ +undefined, +<<"885894a8eb2127b0bf4a547588324e5fa52bb0ddc692ff4085aec1cd48ff86a8eb10649cbf6496dc34fd2816d4d27eea08007940b97000b800298b46ff7f12e6acf4189eac2cb07f33a535dc61824952e392af285c87a58f0c918acf4189e98ad9ad7f34d1fcfd297b5c1fce9d5914bfbb5a97b56d521bfa14d7ba13a9af75f3a9ab86d3a9ba1d0753869da75356fda752ef0dca5ed5a14d30f152fe0d0a6edf0a9af6e0fe7f408cf2b794216aec3a4a4498f57f01300f28ff3a1d5d20cd2db03d2e2671fffc277e9631fe035ff5f30db756b7e7e660dcfcc979effe6037fa621d9e30f3d5ffe779f1ed6776ec8edc0211f81928064621ffd402b13ff7feffbadaff1bff25c96fffcd7fbd51d6e7ff9ffae5fef4f89bc527561bddcdfedbfff8bfce9064b7fdbfcffd72ffaf0cefcfff9efff9cd291bd79b57fbfb52b1a67818fb50be6b358544186c37d2800ad84b1ac20059502cdc641700da98b46ffb5243d2335502e392af285c87a7ed4c694d7aaaa3d75f92497ca589d34d1f6a1271d882a60b532acf7fdd0f0d03363037">>, +[ +{<<":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=8fG3H+)p4?5?fIu>}, +{<<"content-type">>, <<"text/html; charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:05 GMT">>}, +{<<"content-length">>, <<"607">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e320b80714c5a37f768bca54a7d7f4e2e15c42feff0f28cff129bb9653772920784fb328cb1acf3e175668007167db8c8b0a46c523449052b927deb1a67818fbbe7a466aa05fc36d917a8a9fbc1e6b3585441a0f57d280656d27eeb05a502cdc641700e298b46f7f03daacf4189eac2cb07f33a535a2e30c11285fc36d917a8a9608962b66b8ab3d0627a8ac2cabf9a68fe7e94bdae0fe7869c8a6be1b54bdab429934ef5376f854d5bef29bb7eb53570daa5ee1b54df0e43a97b56d52feed6a69d593f95886a8eb2127b0bfe44089f2b567f05b0b22d1fa90d06b2c3d8a64a473154c9524b65454ff0f0d0234327c950ae15129a80e04006d4feb464c8b43aef3025c5fdf4088ea52d6b0e83772ff8649a929ed4c027f1188cc52d6b4341bb97f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"server">>, <<"Jetty(6.1.22)">>}, +{<<"set-cookie">>, <<"wfivefivec=8293faeb-8917-4006-95bc-2d52d4cd2f6d;Path=/;Domain=.w55c.net;Expires=Mon, 03-Nov-14 13:30:06 GMT">>}, +{<<"p3p">>, <<"policyref=\"https://cts.w55c.net/ct/p3p_policy_ref.xml\", CP=\"UNI PUR COM INT STA OTC STP OUR CUR TAIo COR DSP NOI\"">>}, +{<<"cache-control">>, <<"no-store">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"x-powered-by">>, <<"Mirror Image Internet">>}, +{<<"content-length">>, <<"42">>}, +{<<"via">>, <<"1.1 ttn061005 (MII-APC/2.2)">>}, +{<<"keep-alive">>, <<"timeout=2">>}, +{<<"connection">>, <<"Keep-Alive">>} +] +}, +{ +undefined, +<<"88c25f87497ca589d34d1fd96401307b8b84842d695b05443c86aa6f4086f2b5281c86938e640003cfb4d01713efbecb4f34f76196dc34fd280654d27eea0801128166e320b806d4c5a37f7f04842507417f0f0d826c21">>, +[ +{<<":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:30:05 GMT">>}, +{<<"connection">>, <<"close">>}, +{<<"content-length">>, <<"511">>} +] +}, +{ +undefined, +<<"885f961d75d0620d263d4c7441eafb50938ec415305a99567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb0f0d023335c1d9">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"application/json; charset=utf-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-length">>, <<"35">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:05 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"890f0d0130c1d9d26496d07abe940054ca3a940bef814002e001700053168dff58b0aec3771a4bf4a547588324e5fa52a3ac419272c1b8a95af1cfd4c5fa52a3ac849ec2fd295d87f3e96b0bdc741a41a4bf5f87352398ac4c697f">>, +[ +{<<":status">>, <<"204">>}, +{<<"content-length">>, <<"0">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:05 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">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b0341780207fe2768abda83a35ebddbef42077408cf2b0d15d454addcb620c7abf8769702ec8190bff7f10868776b5f4e0df7f13a9bdae0fe6ef0dca5ee1b54bdab49d4c3934a9938df3a9ab4e753570daa6bc7cd4dd0e83a9bf0673ff3f7f1d8abda83a35ebddbef420770f0d84682c843fe4d66496dd6d5f4a01a5349fba820044a083702edc0b2a62d1bfe3">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=418020">>}, +{<<"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">>, <<"41311">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 21:17:13 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034271c783f5f88352398ac74acb37fe3c4c3c2e20f0d8469d69f6f5585640cb6fb3fda6496dd6d5f4a01a5349fba820044a099b8d06e32d298b46f7f0f88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=426681">>}, +{<<"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">>, <<"47495">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 23:41:34 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85f79bfc2768abda83a35ebddbef4207bc9c8c77f078abda83a35ebddbef4207b0f0d84138fbef7558565e6d9701fe06496dd6d5f4a01a5349fba820044a005704edc0854c5a37fc3">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=431985">>}, +{<<"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">>, <<"26998">>}, +{<<"age">>, <<"385360">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:27:11 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85e6c3fc7768abda83a35ebddbef42073cecdcc7f038abda83a35ebddbef420730f0d8413adb41f5585644ebceb9fe56496dd6d5f4a01a5349fba820044a05eb8266e002a62d1bfc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=431851">>}, +{<<"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">>, <<"27541">>}, +{<<"age">>, <<"327876">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 18:23:01 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85b741fccd3d2d1d0cf0f0d846802003f5585640cb6f8bf6196dc34fd280654d27eea0801128166e320b80714c5a37f6496d07abe94036a693f750400894006e019b80694c5a37fcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=431570">>}, +{<<"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">>, <<"40200">>}, +{<<"age">>, <<"303592">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Mon, 05 Nov 2012 01:03:04 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034271f79efd0768abda83a35ebddbef4206fd7d6d57f078abda83a35ebddbef4206f0f0d84642fb8efd1c26496dd6d5f4a01a5349fba820044a099b8d3971a0a98b46fd0">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=426988">>}, +{<<"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">>, <<"31967">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 23:46:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85b137fd4dbdad9d8d70f0d8469b79a67c5c46496d07abe94036a693f750400894006e005702fa98b46ffd2">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=431525">>}, +{<<"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">>, <<"45843">>}, +{<<"age">>, <<"303592">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Mon, 05 Nov 2012 01:02:19 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034c85b7dbfd6dddcdbdad90f0d84682dbe0fd5c66496d07abe94036a693f750400894006e019b82794c5a37fd4">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=431595">>}, +{<<"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">>, <<"41590">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Mon, 05 Nov 2012 01:03:28 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8858aaaed8e8313e94a6d4256b0bdc741a41a4bf4a5761fcfa5ac2f71d0690692fd2948fcac398b034271971bfd8c5dedddcc40f0d8469c740e7d7c86496dd6d5f4a01a5349fba820044a099b8cb9702f298b46fd6">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"public, must-revalidate, proxy-revalidate, max-age=426365">>}, +{<<"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">>, <<"46706">>}, +{<<"age">>, <<"303593">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:30:06 GMT">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 23:36:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +} +]}. +{story_30, [ +{ +undefined, +<<"488264026196dc34fd280654d27eea0801128166e32fdc036a62d1bf768586b19272ff0f1f919d29aee30c78f1e17abd24d4950b90f4b10f0d82101d408721eaa8a4498f57842507417f5f95497ca589d34d1f6a1271d882a60320eb3cf36fac1f">>, +[ +{<<":status">>, <<"302">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:05 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"location">>, <<"http://www.nytimes.com/">>}, +{<<"content-length">>, <<"207">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html; charset=iso-8859-1">>} +] +}, +{ +undefined, +<<"88bfc1768dd06258741e54ad9326e61c5c1f4003703370a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f4089f2b567f05b0b22d1fa868776b5f4e0df408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:05 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">>} +] +}, +{ +undefined, +<<"88c5c7c3c2c1c00f0d0131bfbe">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:05 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">>} +] +}, +{ +undefined, +<<"88c64087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df697e940094d444a820044a099b8cb371b754c5a37f52848fd24a8f5a839bd9ab0f0d83081b6b5f86497ca582211f588faec3771a4bf4a523f2b0e62c02685f6496dc34fd280654d27eea0801128166e34cdc03ca62d1bf6196dc34fd280654d27eea0801128166e32fdc038a62d1bf7f0f88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 02 Oct 2012 23:33:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1054">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=242">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:43:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0c7c66c96dc34fd28069486d994100225041b817ee01c53168dffc5c40f0d03393135408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0eb6d0456496dd6d5f4a01a5349fba820044a0417196ee36f298b46fc4c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"915">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=75412">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:35:58 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d5cccb6c96dc34fd28069486d994100225041b817ae05b53168dffcac90f0d03353633c2c85891aec3771a4bf4a523f2b0e62c0eb6cb8f7f6496dd6d5f4a01a5349fba820044a0417196ee05a53168dfc7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"563">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=75368">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:35:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d8cf6c96df3dbf4a042a6a225410022502cdc0bb71b0298b46ffcd0f0d836da659c55f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0e85965a6496dd6d5f4a01a5349fba820044a01fb827ae000a62d1bfcbca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 13:17:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"5433">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=71334">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:28:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dcd3d26c96df697e940094d444a820044a099b8cb371b0a98b46ffd1d00f0d840842f83fc9c8588faec3771a4bf4a523f2b0e62c026dbf6496dc34fd280654d27eea0801128166e34cdc1054c5a37fcecd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 02 Oct 2012 23:33:51 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11190">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=255">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:43:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dfd6d56c96dc34fd280654d27eea080112806ee003700253168dffd4d30f0d03343134cccb588faec3771a4bf4a523f2b0e62c01135f6496dc34fd280654d27eea0801128166e341b810298b46ffd1d0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:01:02 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"414">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=124">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e2d9d86c96c361be940894d444a820044a00171905c65e53168dffd7d60f0d830b4e03cfd5588faec3771a4bf4a523f2b0e62c01683f6496dc34fd280654d27eea0801128166e341b82754c5a37fd4d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 00:30:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1460">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=141">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:27 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e5dc6c96dc34fd28069486d994100225041b817ae05953168dffda0f0d03353933d2d85890aec3771a4bf4a523f2b0e62c0eb6d0996496dd6d5f4a01a5349fba820044a04171972e01f53168dfd7d6dedb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"593">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=75423">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:36:09 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e8dfde6c96c361be940894d444a820044a00171905c69953168dffdddc0f0d840b400b5fd4588faec3771a4bf4a523f2b0e62c01783f6496dc34fd280654d27eea0801128166e342b80754c5a37fdad9d7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 00:30:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14014">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=181">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:42:07 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88ebe2e16c96df3dbf4a042a6a225410022502cdc645704253168dffe0df0f0d8313ce35d8d05890aec3771a4bf4a523f2b0e62c0e85975d6496dd6d5f4a01a5349fba820044a01fb827ae34ca98b46fdddc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 13:32:22 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2864">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=71377">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:28:43 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88eee5e46c96c361be940b4a681fa504008140b7700fdc640a62d1bfe3e20f0d830880d7dbd35890aec3771a4bf4a523f2b0e62c0d042d036496dd6d5f4a01a5349fba820044a003700d5c69c53168dfe0df">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 15:09:30 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1204">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=41140">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:04:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f1e8e76c96e4593e940b4a6e2d6a08010a820dc139704ea98b46ffe6e50f0d830b2c83de5f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0269f6c2cf6496df697e94038a693f750400894082e36edc65f53168dfe4e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 14 Sep 2011 21:26:27 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1330">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=249513">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 10:57:39 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f5ec6c96df3dbf4a09e532db52820044a05fb8005c6d953168dfea0f0d83089c0fe2c1c0bfe5e4ece9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 28 Jun 2012 19:00:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1261">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=249513">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 10:57:39 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88f6edec6c96df3dbf4a002a681d8a0801128176e059b826d4c5a37febea0f0d846590b40fe3e2588faec3771a4bf4a523f2b0e62c01107f6496dc34fd280654d27eea0801128166e341b80754c5a37fe8e7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Mar 2012 17:13:25 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"33140">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=121">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:07 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f9f0ef6c96c361be940b4a681fa504008140b571a7ee05d53168dfeeed0f0d023735c55891aec3771a4bf4a523f2b0e62c0cb4f3ae036496e4593e9403aa693f7504008940b57190dc69c53168dfebeae8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:49:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"75">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348760">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:31:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272fff4f36c96dc34fd28069486d994100225041b817ee01b53168dfff2f10f0d03373639eae95890aec3771a4bf4a523f2b0e62c0e32e89f6496dd6d5f4a01a5349fba820044a01db820dc0b6a62d1bfefee">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"769">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=63729">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:21:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c1f7f66c96e4593e94134a6a2254100225042b8076e042a62d1bfff5f40f0d83132cb7edcc5891aec3771a4bf4a523f2b0e62c0d802f003f6496c361be9403ea693f75040089403f7002b82754c5a37ff2f1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 24 Oct 2012 22:07:11 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2335">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=501801">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 09:02:27 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4faf96c96df697e94036a65b6a504008940b57040b800a98b46fff8f70f0d836c0e37f05f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0165f001cf6496d07abe94036a693f750400894035702ddc6c4a62d1bff6f5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 05 Jun 2012 14:20:01 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5065">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=139006">>}, +{<<"expires">>, <<"Mon, 05 Nov 2012 04:15:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c84087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a002a693f7504008940bd71905c038a62d1bf52848fd24a8f5a839bd9ab0f0d837dc0bff05891aec3771a4bf4a523f2b0e62c0d34fbe16b6496df3dbf4a01e5349fba820044a05eb8cbb71a0298b46f6196dc34fd280654d27eea0801128166e32fdc038a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 18:30:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9619">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=449914">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 18:37:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d2c7c66c96df3dbf4a002a693f75040089410ae01fb8d32a62d1bfc5c40f0d837da6d9bff65891aec3771a4bf4a523f2b0e62c0d38cb22176496df3dbf4a01e5349fba820044a0857041b80794c5a37fc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 22:09:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9453">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=463322">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 22:21:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32fdc036a62d1bfd66496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf0f28c9dba325f8000765004001082e38069d8ca57c00147f6a60f359ac2a20dd6d5f4a0195349fba820059502cdc65fb806d4c5a37fda9ac699e063ed4be7a466aa05eaf49352542e43d3f7f0f289a1c9e488816fb52b1a67818fb5243d2335502f57a49a92a1721e97b83c67427408a224a7aaa4ad416a9933f850bad38273f7f09842507417f5f92497ca589d34d1f6a1271d882a60e1bf0acf7ce798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:05 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"RMID=007f010022166047bee9002b; Expires=Sun, 03 Nov 2013 13:39:05 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"set-cookie">>, <<"adxcs=-; path=/; domain=.nytimes.com">>}, +{<<"vary">>, <<"Host">>}, +{<<"cteonnt-length">>, <<"174626">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html; charset=UTF-8">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88ded36c96c361be940094d27eea0801128205c6c571b694c5a37fd10f0d84081c6c3fcb5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db4f01c676496c361be9403ea693f750400894106e36cdc13ea62d1bfd0cfd6d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 20:52:54 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"10651">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=548063">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 21:53:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e2d7d66c96c361be940094d27eea0801128005c03d704fa98b46ffd5d40f0d837dd0b3cfc15891aec3771a4bf4a523f2b0e62c0d3c10342f6496c361be9403ea693f750400894033702e5c13ca62d1bfd3d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 00:08:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9713">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=481042">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 03:16:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e5dad96c96df3dbf4a05953716b50400894106e36f5c0b6a62d1bfd8d70f0d840b2cbeeff05890aec3771a4bf4a523f2b0e62c0d80207b6496dd6d5f4a01a5349fba820044a019b8cb5702d298b46fd6d5d4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 13 Sep 2012 21:58:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"13397">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=50108">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:34:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88e8dddc6c96e4593e94642a6a225410022502d5c137700ca98b46ffdbda0f0d84081b7dcfd5c75890aec3771a4bf4a523f2b0e62c0d32275c6496dd6d5f4a01a5349fba820044a00371a05c1094c5a37fd9d8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 14:25:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10596">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=43276">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:40:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ebe0df6c96df3dbf4a05953716b50400894106e36f5c132a62d1bfdedd0f0d03383537d8f6c3c2dad9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 13 Sep 2012 21:58:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"857">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=50108">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:34:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ece1e06c96c361be940094d27eea0801128215c102e32153168dffdfde0f0d84132d89cfd9cb588eaec3771a4bf4a523f2b0e62c0e036496dc34fd280654d27eea0801128166e340b80714c5a37fdddc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 22:20:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"23526">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=60">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88efe46c96c361be940094d27eea080112817ee09cb8d38a62d1bfe20f0d837da759dcce5891aec3771a4bf4a523f2b0e62c0db617d97b6496c361be9403ea693f75040089410ae36f5c034a62d1bfe0dfe6e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 19:26:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9473">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=551938">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 22:58:04 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88f2e7e66c96df3dbf4a002a693f750400894102e36d5c13ea62d1bfe5e40f0d836c0d3ddf5f911d75d0620d263d4c795ba0fb8d04b0d5a75891aec3771a4bf4a523f2b0e62c0e32eb4f7f6496dd6d5f4a01a5349fba820044a01db820dc65a53168dfe4e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:54:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5048">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=63748">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:21:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f6ebeaf9e8e70f0d8365a13d5f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0cb4f3a17f6496e4593e9403aa693f7504008940b57190dc036a62d1bfe7e6e5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:49:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3428">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348719">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:31:05 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f9eeed6c96c361be940094d27eea0801128215c13571a7d4c5a37feceb0f0d837d975ae6d85891aec3771a4bf4a523f2b0e62c0db6071b736496c361be9403ea693f75040089410ae32e5c684a62d1bfeae9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 22:24:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9374">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=550656">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 22:36:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88fcf1f06c96dc34fd280654d27eea080112800dc0b7702053168dffefee0f0d837dc6dce9db5891aec3771a4bf4a523f2b0e62c0db816d96b6496dc34fd281029a4fdd4100225001b8cbd700053168dffedec">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 01:15:10 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9656">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=561534">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 01:38:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272fff56c96dc34fd280654d27eea0801128005c13b71b1298b46fff30f0d84080410ffeddf5891aec3771a4bf4a523f2b0e62c0db8d322776496dc34fd281029a4fdd4100225002b826ae32ca98b46fff1f0f7f4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 00:27:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"10211">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=564327">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 02:24:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c1f8f76c96dc34fd280654d27eea0801128015c03371a714c5a37ff6f50f0d837dd10bf0e25891aec3771a4bf4a523f2b0e62c0db8f09f6f6496dc34fd281029a4fdd410022500cdc64171a0a98b46fff4f3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:03:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9722">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568295">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:30:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4fbfa6c96c361be940094d27eea0801128266e361b80754c5a37ff9f80f0d837d9745e55891aec3771a4bf4a523f2b0e62c0db6db6f036496c361be9403ea693f75040089413371b7ae34e298b46ff7f6f5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 23:51:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9372">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=555580">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 23:58:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c74087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd282754d444a820044a05db816ae36153168dff52848fd24a8f5a839bd9ab0f0d84109d79cffaec5891aec3771a4bf4a523f2b0e62c0db6fb6d036496dc34fd281029a4fdd4100225001b806ae34e298b46ff6196dc34fd280654d27eea0801128166e32fdc038a62d1bf7f3488ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 27 Oct 2012 17:14:51 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"22786">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=559540">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 01:04:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3c05f87497ca589d34d1ffbfaf9c4f4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88d2c8c76c96dc34fd280654d27eea080112800dc13d719654c5a37fc6c50f0d837df685408725453d44498f57842507417ff45891aec3771a4bf4a523f2b0e62c0db8d3227b6496dc34fd281029a4fdd4100225002b826ae32d298b46ffc5c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 01:28:33 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9942">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=564328">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 02:24:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d6cccb6c96dc34fd280654d27eea0801128015c6dab8d054c5a37fcac90f0d837d971ac1f75891aec3771a4bf4a523f2b0e62c0db8f36ebd6496dc34fd281029a4fdd410022500cdc65bb82694c5a37fc8c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:54:41 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9364">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568578">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:35:24 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d9cf6c96dc34fd280654d27eea0801128072e01fb80794c5a37fcd0f0d837da035c4fa5891aec3771a4bf4a523f2b0e62c0dbaf084f76496dc34fd281029a4fdd410022500e5c0b9702d298b46ffcbcad1ce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 06:09:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9404">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=578228">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:16:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88dcd2d16c96df3dbf4a002a693f75040089410ae32f5c65f53168dfd0cf0f0d840804177fc75f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0d3af362676496c361be9403ea693f75040089400ae32d5c13ea62d1bfcfce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 22:38:39 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10217">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=478523">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 02:34:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e0d6d56c96dc34fd280654d27eea080112800dc0bf7190a98b46ffd4d30f0d837c0d8bc15891aec3771a4bf4a523f2b0e62c0db8f320776496dc34fd281029a4fdd410022500cdc64171b654c5a37fd2d1cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 01:19:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9052">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568307">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:30:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88e3d9d86c96c361be940094d27eea0801128266e00171a6d4c5a37fd7d60f0d837d975fcec45891aec3771a4bf4a523f2b0e62c0db6c8441f6496c361be9403ea693f750400894133702edc69d53168dfd5d4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 23:00:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9379">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=553121">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 23:17:47 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e6dcdb6c96c361be940094d27eea080112817ee00571a7d4c5a37fdad90f0d837df79fd1c75891aec3771a4bf4a523f2b0e62c0db2f01b7b6496c361be9403ea693f7504008940bf700e5c69a53168dfd8d7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 19:02:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9989">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=538058">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 19:06:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e9df6c96df3dbf4a002a693f75040089410ae32e5c0bea62d1bfdd0f0d84081f6c1fd4ca5891aec3771a4bf4a523f2b0e62c0db2169d6b6496c361be9403ea693f7504008940bb702edc0014c5a37fdbdae1de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 22:36:19 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"10950">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=531474">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 17:17:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88ece2e16c96c361be940094d27eea0801128172e085719794c5a37fe0df0f0d840859783fd7cd5891aec3771a4bf4a523f2b0e62c0d89f71b0f6496c361be9403ea693f7504008940b971a72e32ea98b46fdedd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 16:22:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11381">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=529651">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 16:46:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88efe5e46c96c361be940094d27eea080112817ae001700fa98b46ffe3e20f0d84081910bfd05891aec3771a4bf4a523f2b0e62c0db2d3a0676496c361be9403ea693f7504008940bd7020b8d3ea62d1bfe1e0dc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 18:00:09 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10322">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=534703">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 18:10:49 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f2e8e76c96c361be940094d27eea0801128176e043700ea98b46ffe6e50f0d84109c699fddd35891aec3771a4bf4a523f2b0e62c0db2eb61676496c361be9403ea693f7504008940bd71b76e32fa98b46fe4e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 17:11:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"22643">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=537513">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 18:57:39 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f5ebea6c96df3dbf4a002a693f750400894102e36fdc6c2a62d1bfe9e80f0d8379c0bbe0d65891aec3771a4bf4a523f2b0e62c0d36f81e0f6496df3dbf4a01e5349fba820044a0837020b82754c5a37fe7e6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:59:51 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8617">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=459081">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 21:10:27 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f8eeed6c96c361be940094d27eea080112817ee09fb8cb6a62d1bfeceb0f0d840802e35fe3d95891aec3771a4bf4a523f2b0e62c0db2fbe10f6496c361be9403ea693f7504008940bf71976e32ea98b46feae9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 19:29:35 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10164">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=539911">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 19:37:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272fff26c96c361be940094d27eea080112806ee08571a794c5a37ff00f0d837da75ce7dd5891aec3771a4bf4a523f2b0e62c0d3cf3e2076496c361be9403ea693f750400894037704edc69c53168dfeeedf4f1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 05:22:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9476">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=488920">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 05:27:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c1f5f46c96c361be940094d27eea0801128215c13f702053168dfff3f20f0d837c0ebbeae05891aec3771a4bf4a523f2b0e62c0db6179c7b6496c361be9403ea693f75040089410ae36e5c6da53168dff1f0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 22:29:10 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9077">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=551868">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 22:56:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4f8f76c96c361be940094d27eea0801128176e34cdc69c53168dff6f50f0d84081c003fe35891aec3771a4bf4a523f2b0e62c0db4069b076496c361be9403ea693f7504008940bf71a72e32e298b46ff4f3ef">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 17:43:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10600">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=540450">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 19:46:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c74087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96c361be940094d27eea0801128205c645702d298b46ff52848fd24a8f5a839bd9ab0f0d837de7dcf4ea5891aec3771a4bf4a523f2b0e62c0db4e8597f6496c361be9403ea693f750400894106e32f5c036a62d1bf6196dc34fd280654d27eea0801128166e32fdc038a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 20:32:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9896">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=547139">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 21:38:05 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0c6c56c96c361be940b4a681fa504008140b7700fdc642a62d1bfc4c30f0d03353732f95f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0d042d076496dd6d5f4a01a5349fba820044a003700d5c69d53168dfc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 15:09:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"572">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=41141">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:04:47 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d4ca6c96df697e9413ca435d8a08007d40bd702f5c1094c5a37fc80f0d03343034408725453d44498f57842507417fc25890aec3771a4bf4a523f2b0e62c0d042d3d6496dd6d5f4a01a5349fba820044a003700d5c6da53168dfc7c6cdca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Tue, 28 Apr 2009 18:18:22 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"404">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=41148">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:04:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d8cecd6c96c361be940b4a6e2d6a080112810dc08ae09f53168dffcccb0f0d8313cd37c1c55890aec3771a4bf4a523f2b0e62c0e32f0416496dd6d5f4a01a5349fba820044a01db8215c65c53168dfcac9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 Sep 2012 11:12:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2845">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=63810">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:22:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbd1d06c96df3dbf4a05953716b504008940b971a7ee36e298b46fcfce0f0d83644d39c85890aec3771a4bf4a523f2b0e62c0e34071c6496dd6d5f4a01a5349fba820044a01db8272e36253168dfcdccc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 13 Sep 2012 16:49:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3246">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=64066">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:26:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88ded4d36c96df3dbf4a002a693f75040089410ae34ddc036a62d1bfd2d10f0d840bcd89dfc75f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0d85e7996496dd6d5f4a01a5349fba820044a01ab8066e34fa98b46fd1d0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 22:45:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"18527">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=51883">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:49 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801fcfd26496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3f4085aec1cd48ff86a8eb10649cbf7689aa6355e5802eeaedbf0f0d023433d5">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e7dddc6c96dc34fd28069486d994100225041b817ae082a62d1bffdbda0f0d826802d05f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e05e0356496dd6d5f4a01a5349fba820044a01cb8d3f702053168dfdad9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"402">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=61804">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 06:49:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ebe16c96dc34fd28069486d994100225041b817ee36ca98b46ffdf0f0d830840f7d4d85890aec3771a4bf4a523f2b0e62c0cb2c85f6496dc34fd280654d27eea0801128215c6dab826d4c5a37fdddc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1108">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=33319">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 22:54:25 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88eee46c96c361be940b4a681fa504008140b571b05c132a62d1bfe20f0d83642167db5891aec3771a4bf4a523f2b0e62c026c0f34df6496df697e94038a693f750400894086e05fb8d854c5a37fe0df">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:50:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"3113">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=250845">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:19:51 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f1e76c96dc34fd28069486d994100225041b817ee36253168dffe50f0d820b22de5890aec3771a4bf4a523f2b0e62c0f0800076496dd6d5f4a01a5349fba820044a045704ddc69c53168dfe3e2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"132">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=82000">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:25:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f4eac0e70f0d820b20e05890aec3771a4bf4a523f2b0e62c0d3411356496dd6d5f4a01a5349fba820044a00371b6ae32053168dfe5e4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"130">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=44124">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:54:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f6eceb6c96dc34fd280654d27eea0801128115c10ae36fa98b46ffeae90f0d831004ef5f911d75d0620d263d4c795ba0fb8d04b0d5a7588faec3771a4bf4a523f2b0e62c01683f6496dc34fd280654d27eea0801128166e341b82754c5a37fe9e8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 12:22:59 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2027">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=141">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:27 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88faf0ef6c96dc34fd28069486d994100225041b817ee01a53168dffeeed0f0d836dc65cc15890aec3771a4bf4a523f2b0e62c0cbee0596496dd6d5f4a01a5349fba820044a0017197ee05f53168dfeceb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5636">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39613">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96dc34fd280654d27eea0801128015c6ddb81794c5a37ff20f0d837d9659f5dd5891aec3771a4bf4a523f2b0e62c0dbe27997f6496dc34fd281029a4fdd4100225020b817ee34da98b46fff0ef">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:57:18 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9333">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592839">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:45 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c16c96dc34fd280654d27eea080112806ae01ab8d3aa62d1bff50f0d840899781feae05891aec3771a4bf4a523f2b0e62c0dbad05c6f6496dc34fd281029a4fdd410022500ddc03d7190a98b46fff3f2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:04:47 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"12380">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=574165">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:08:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c46c96dc34fd280654d27eea0801128066e361b8cbca62d1bff80f0d840b4d89cfede35891aec3771a4bf4a523f2b0e62c0dbad05c676496dc34fd281029a4fdd410022500ddc03d704fa98b46fff6f5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 03:51:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"14526">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=574163">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:08:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c76c96dc34fd280654d27eea080112807ee32edc0bca62d1bf52848fd24a8f0f0d8413acb2f7f1e7c7c6f8f7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 09:37:18 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"27338">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592839">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:45 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c96c96dc34fd280654d27eea0801128066e083700f298b46ffbf0f0d840bae3af7f2e8c2c1f9f8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 03:21:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"17678">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=574163">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:08:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ca4087aaa21ca4498f57842507417fddc00f0d840b6079cf5f89352398ac7958c43d5f5890aec3771a4bf4a523f2b0e62c0d3ae8996496dd6d5f4a01a5349fba820044a00571b6ae09f53168df6196dc34fd280654d27eea0801128166e32fdc038a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"15086">>}, +{<<"content-type">>, <<"image/x-icon">>}, +{<<"cache-control">>, <<"private, max-age=47723">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:54:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0c37b8b84842d695b05443c86aa6f6c96d07abe940b6a6a2254100225040b8cbd702e298b46ffc75a839bd9ab0f0d840b410bfffbe85890aec3771a4bf4a523f2b0e62c0cbce8836496dd6d5f4a01a5349fba820044a001704d5c13aa62d1bfc4c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 15 Oct 2012 20:38:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14119">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=38721">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:24:27 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d5c8c26c96df3dbf4a042a6a2254100225042b8266e32153168dffcbc10f0d840b6065ef408725453d44498f57842507417fdd5890aec3771a4bf4a523f2b0e62c0eba06416496dd6d5f4a01a5349fba820044a0437002b8db8a62d1bfc8c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 22:23:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15038">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=77030">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 11:02:56 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d9ccc66c96dc34fd28069486d994100225041b817ee09953168dffcfc50f0d840b606c3fc1e05890aec3771a4bf4a523f2b0e62c0cbee05c6496dd6d5f4a01a5349fba820044a0017197ee084a62d1bfcbca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15051">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39616">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dc6c96dc34fd280654d27eea0801128066e362b8cb8a62d1bfd20f0d837df0b5d0fbd8d7cccb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 03:52:36 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9914">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=574165">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:08:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dd6c96dc34fd280654d27eea080112806ae09cb827d4c5a37fd30f0d840b2cbcf7c55f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0dbad0596f6496dc34fd281029a4fdd410022500ddc03d700153168dffd0cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:26:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"13388">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=574135">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:08:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e16c96df3dbf4a002a693f750400894102e36d5c69953168dfd7cfcdd5e85890aec3771a4bf4a523f2b0e62c0d36f89a6496dd6d5f4a01a5349fba820044a005704d5c640a62d1bfd30f0d84759034e7d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:54:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=45924">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:24:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:06 GMT">>}, +{<<"content-length">>, <<"73046">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e46c96dc34fd28069486d994100225041b817ee01d53168dffdad2d0d8eb5890aec3771a4bf4a523f2b0e62c0cbee0036496dd6d5f4a01a5349fba820044a0017197ee05c53168df6196dc34fd280654d27eea0801128166e32fdc0b6a62d1bf0f0d830ba167d6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39601">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:15 GMT">>}, +{<<"content-length">>, <<"1713">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e8db6c96d07abe941094d444a820044a083704e5c036a62d1bffde0f0d83089a735f86497ca582211f5890aec3771a4bf4a523f2b0e62c0d3610bd6496dd6d5f4a01a5349fba820044a0057021b81654c5a37fc2dad9d7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:26:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1246">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=45118">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:11:13 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:15 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88ecdfd9d0e1d70f0d837de75dd3f2c4c3c2da">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9877">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39601">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:15 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ecdfd9f8e1d70f0d03333238d35f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0e32eba26496dd6d5f4a01a5349fba820044a01db8215c03ca62d1bf6196dc34fd280654d27eea0801128166e32fdc0b8a62d1bfde">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"328">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=63772">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:22:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbff7bf6496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4085aec1cd48ff86a8eb10649cbf7688aa6355e580ae05c10f28ff6babd256a600617b03381c0bf870dd684213a0c38305d71b7e185c034cbbf0580cb8596da659780007c26032e107c7780cb83e288285c4daeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb07e2a80cb8be2680cb83e0b64065c2cb617da7df6dcf8ef64142ed2e05c0b81707c5764142ed2e15c0b81707c77ae032e0f89a58285c205d60aeb057582bac15d60aeb057582bac15d60aeb07ed42f9acd615106f9edfa50025b49fbac2005d502cdc65fb81714c5a37fda958d33c0c7da921e919aa817abd24d4950b90f4f0f0d82085ae2">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=0F8E3E619FFB422270FEEB659AA60437&e=i.1354338000&t=i.10&v=i.0&l=l.25.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.0.0.0.0&pr=l.4.1.0.0.0&vp=i.0&gf=l.10.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:16 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"114">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f4e76c96dc34fd28069486d994100225041b817ae044a62d1bffea0f0d03343234c95890aec3771a4bf4a523f2b0e62c0f05f71b6496dd6d5f4a01a5349fba820044a045704ddc1054c5a37fc5e5e4e2de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"424">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=81965">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:25:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f7eae4c0ece20f0d03353034decbbfbec5e5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"504">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=81965">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:25:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f7ea6c96c361be94136a681d8a08010a817ee32edc0b8a62d1bfed0f0d023638c95892aec3771a4bf4a523f2b0e62c0103cf01c77f6496c361be940b8a693f75040089403371b66e34d298b46f6196dc34fd280654d27eea0801128166e32fdc0baa62d1bfe9e8e6e2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 25 Mar 2011 19:37:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"68">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=1088067">>}, +{<<"expires">>, <<"Fri, 16 Nov 2012 03:53:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88fbc1f00f0d8365a10be2cc5891aec3771a4bf4a523f2b0e62c0275f13c0f6496df697e94038a693f7504008940bf702cdc6dc53168dfcbebf0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Fri, 25 Mar 2011 19:37:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"3422">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=279280">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:13:56 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272fff1ebc7f3e90f0d03333638e5d25890aec3771a4bf4a523f2b0e62c0f0800776496dd6d5f4a01a5349fba820044a045704e5c034a62d1bfc3ee">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"368">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=82007">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:26:04 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c06c96dc34fd28069486d994100225041b817ee01b53168dfff6eeecf45f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0cbee0056496dd6d5f4a01a5349fba820044a0017197ee05e53168dfd20f0d8379d13df2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39602">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"content-length">>, <<"8728">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4f7f16c96df3dbf4a002a693f750400894102e34f5c6de53168dffaf00f0d83740207ecc1c0bfd3f3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:48:58 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"7020">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39602">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5f8f26c96c361be940b4a681fa504008140b571a7ee05d53168dffbf10f0d03313933edd75891aec3771a4bf4a523f2b0e62c0cb4fb807f6496e4593e9403aa693f7504008940b571a72e01c53168dfcbf6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:49:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"193">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349609">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8fbf56c96c361be940b4a681fa504008140b771905c69b53168df52848fd24a8ff50f0d03313933f1dbc1c0cdf8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 15:30:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"193">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349609">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ca4087aaa21ca4498f57842507417ff86c96dc34fd282754c258d410020500cdc659b8cb2a62d1bfc0f70f0d820be2f3ddc3c2cffa">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 27 Feb 2010 03:33:33 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"192">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349609">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccbff9c4c0f70f0d820be2f3ddc3c2cffa">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:49:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"192">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349609">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccbff96c96dc34fd280654d27eea080112806ee360b8db8a62d1bfc1f80f0d8465b0859fec5891aec3771a4bf4a523f2b0e62c0dbe2784ff6496dc34fd281029a4fdd4100225020b817ee34e298b46ffd2408721eaa8a4498f5788ea52d6b0e83772fff7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:50:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"35113">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d0c36c96dc34fd280654d27eea080112806ee34f5c6dc53168dfc50f0d8413ed38eff8f0c1c0d4bf7b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:48:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"29467">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d3c6bf6c96dc34fd280654d27eea080112806ee361b8d814c5a37fc8bf0f0d840b8f099ff3c4c3d7c2fb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:51:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"16823">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d4c76c96dc34fd28069486d994100225041b817ae05953168dffc90f0d03353530e9d4d3d8c3c1c0408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"550">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=82007">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:26:04 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d6c96c96dc34fd280654d27eea080112806ee362b811298b46ffcb0f0d840b8f845fbff6c7c6dac5c3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:52:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"16912">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d7cac36c96dc34fd280654d27eea080112806ee34fdc0bea62d1bfccc30f0d841360135fc0f7c8c7dbc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:49:19 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"25024">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d8cbc46c96dc34fd280654d27eea080112806ee34fdc69e53168dfcdc40f0d84134d36d7c1f8c9c8dcc7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:49:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"24454">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d9ccc56c96dc34fd280654d27eea080112806ee360b816d4c5a37fcec50f0d84640d360fc2f9cac9ddc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:50:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"30450">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dacdc66c96dc34fd280654d27eea080112806ee361b82654c5a37fcfc60f0d840bec801fc3facbcadec9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:51:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"19300">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=592829">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 10:19:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbcec76c96dc34fd282754d444a820044a0457196ae34253168dffd0c70f0d840800c8bffb5891aec3771a4bf4a523f2b0e62c0db2e3ce396496c361be9403ea693f7504008940bd71a76e01953168dfe1ccc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 27 Oct 2012 12:34:42 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10032">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=536866">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 18:47:03 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88ded16c96dc34fd280654d27eea0801128066e001700fa98b46ffd30f0d837d903bc75f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8e3a20f6496dc34fd281029a4fdd410022500cdc035719794c5a37fe5d0cecd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 03:00:09 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9307">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=566721">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:04:38 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e2d5ce6c96dc34fd280654d27eea080112806ae36f5c680a62d1bfd7ce0f0d837d96dacbc15891aec3771a4bf4a523f2b0e62c0dbacbad336496dc34fd281029a4fdd410022500ddc006e34053168dffe8d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:58:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9354">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573743">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 05:01:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e5d8d16c96c361be9403ca65b6a504008940bf704d5c6c2a62d1bfdad10f0d023439cef75891aec3771a4bf4a523f2b0e62c0cb4fb810f6496e4593e9403aa693f7504008940b571a72e01e53168dfebd6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 08 Jun 2012 19:24:51 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"49">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349611">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887f17842507417fec768dd06258741e54ad9326e61c5c1f4003703370a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3f54012a4089f2b567f05b0b22d1fa868776b5f4e0df5f87497ca589d34d1f0f0d8369c6da0f28dad7b6b241ff31f8ed363becf2b81ff98ece7e31dfc40b81ff98ece7df1dfc41b82ff9ff5f721e919aa8072217ace6a9361e8a1721e9fb52b1a67818fb50be6b3585441a0f57d280656d27eeb08016940b37197ee05d53168dff7f">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 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">>, <<"4654">>}, +{<<"set-cookie">>, <<"PRpc=|HwqgHD3W:1|HrYwHDG0:1|HrYvHDG1:2|#;domain=ads.pointroll.com; path=/; expires=Mon, 03-Nov-2014 13:39:17 GMT;">>} +] +}, +{ +undefined, +<<"88eee1da6c96dc34fd28069486d994100225041b817ee36253168dffe3da0f0d033138365f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0e880f336496dd6d5f4a01a5349fba820044a01fb8d02e34053168dff5e0da">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"186">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=72083">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:40:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f2e5dec1e6dd0f0d023436dac05890aec3771a4bf4a523f2b0e62c0d3607056496dd6d5f4a01a5349fba820044a0057020b817d4c5a37ff7e2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"46">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=45062">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:10:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f4e76c96dc34fd28069486d994100225041b817ee36ca98b46ffe90f0d03313838c35890aec3771a4bf4a523f2b0e62c0f01d71b6496dd6d5f4a01a5349fba820044a045700ddc1094c5a37ffae5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"188">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=80765">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:05:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c0f7eaeb0f0d023734dfc55890aec3771a4bf4a523f2b0e62c0d3616816496dd6d5f4a01a5349fba820044a0057021b8cbaa62d1bf6196dc34fd280654d27eea0801128166e32fdc0baa62d1bfe8">>, +[ +{<<":status">>, <<"200">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"74">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=45140">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:11:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885f8b497ca58e83ee3412c3569f5889a47e561cc58022003f0f139ffe5a2332c601ca579b71d1bad80b2086028da7cae3ed352c630b91ca007f3fe84089f2b20b6772c8b47ebf921d66416cee62150b0c00697eb679917a8a9f408df2b585ed695095a3193a96a93f8721ea4d87a1239b4089f2b10f54a69961cc5f8268004089f2b10649cab4e64a3f8208194084f2b0e62f03333737ecc50f0d84138cb41fef">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"cache-control">>, <<"max-age=1200">>}, +{<<"etag">>, <<"\"4c3fb0afe8567a750ed2a0ea49e6944fba16bf00\"">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-served-by">>, <<"apiservices-a004.krxd.net">>}, +{<<"x-request-backend">>, <<"controltag">>}, +{<<"x-config-age">>, <<"400">>}, +{<<"x-cache-hits">>, <<"103">>}, +{<<"x-age">>, <<"377">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"content-length">>, <<"26341">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272fff5cbf60f0d023634d05891aec3771a4bf4a523f2b0e62c0d3ecbcdff6496dd6d5f4a01a5349fba820044a019b8215c1094c5a37fc8f2f0efec">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"64">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=49385">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:22:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c36196dc34fd280654d27eea0801128166e32fdc0bca62d1bfd66496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbff4798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88c6fdf66c96c361be94036a6a225410022502edc65eb8c854c5a37f52848fd24a8ff70f0d83105b67da5890aec3771a4bf4a523f2b0e62c0cb606416496dc34fd280654d27eea0801128266e099b80794c5a37fc6fcf6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 05 Oct 2012 17:38:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2153">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=35030">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 23:23:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fc75f8b1d75d0620d263d4c7441ea7f2688ea52d6b0e83772ff7f2387d78f5b0dae25df0f0d03313539">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"159">>} +] +}, +{ +undefined, +<<"88cbcae2c9c8c7fdc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88c1cac0bfbe0f0d836dc133">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"5623">>} +] +}, +{ +undefined, +<<"88ce4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96d07abe941094d444a820044a083704edc69f53168dffc75a839bd9ab0f0d023335fee45890aec3771a4bf4a523f2b0e62c0f080c8b6496dd6d5f4a01a5349fba820044a045704e5c13ca62d1bf6196dc34fd280654d27eea0801128166e32fdc0b8a62d1bfc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"35">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=82032">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:26:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:16 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887684aa6355e7d2e8cec74088ea52d6b0e83772ff8749a929ed4c0207d2d0d17f2fd2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 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\"">>} +] +}, +{ +undefined, +<<"88d86c96df697e940054d03b14100215042b8db5700e298b46ffcf0f0d83101d7b408725453d44498f57842507417fec5891aec3771a4bf4a523f2b0e62c0275f13ccf6496df697e94038a693f7504008940bf702d5c0054c5a37fd8cdcb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Tue, 01 Mar 2011 22:54:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"2078">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=279283">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:14:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88dc6c96df3dbf4a0195340ec504008540bf71915c0b2a62d1bfd30f0d03353933c15f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0275f13c2f6496df697e94038a693f7504008940bf702d5c0014c5a37fdcd1cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"593">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=279282">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:14:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88e0c1d60f0d83081c17c4c0bfbedcd1cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1062">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=279282">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:14:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88e0c1d60f0d03383330c4c05891aec3771a4bf4a523f2b0e62c0275f13cdf6496df697e94038a693f7504008940bf702d5c032a62d1bfded3d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"830">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=279285">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:14:03 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88e2d1d06c96d07abe940b4a693f7504008540bf7022b8d814c5a37fd9cf0f0d83089907c7f55891aec3771a4bf4a523f2b0e62c0c840cb22f6496e4593e9403aa693f75040089403371b0dc640a62d1bfe1d6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 14 Nov 2011 19:12:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1230">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=310332">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 03:51:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e5f8db0f0d023436c9f7e46496dd6d5f4a01a5349fba820044a019b8215c132a62d1bfe2d7d5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"46">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=49385">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:22:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"88e6c7dc0f0d03333139d5f8c5c4e2d7ca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"319">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=279282">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 19:14:00 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f0ec6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fe20f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b37197ee05e53168dff6a6b1a67818ffb0f0d023433e5">>, +[ +{<<":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:39:18 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>} +] +}, +{ +undefined, +<<"887f1b842507417fe6768dd06258741e54ad9326e61c5c1f7f1c868776b5f4e0df5f911d75d0620d263d4c795ba0fb8d04b0d5a70f0d023635e664022d31e8">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"content-length">>, <<"65">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>} +] +}, +{ +undefined, +<<"88eedddc6c96dc34fd28069486d994100225041b817ee01c53168dffe5db0f0d830bee3dd3c05890aec3771a4bf4a523f2b0e62c0cbee01a6496dd6d5f4a01a5349fba820044a0017197ee084a62d1bfede2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1968">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39604">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"880f28ff4fb1288a1861860d19d0cbb471b0985b63f73f672cf55678f5e4b39e6c9b34eeef747e9b2fe53d6820fb6fde6ce7d45b7671fc3b182c31f84ef4bc3c6894a4e1351db1ec9adc375ad7fb1f6e92de6368597cfaba9753fd69065d73eba61a3f31fec91e6172e183247872e9361d7b69d97cf3487c941cb28b0caf4321b66f933f2e8fbbdbc5deb7a8bcf5d632d118f01f469cecb8061b45623c3bc0f73fb52f9e919aa817b0bdd0432f5153f6a60f359ac2a20dd6d5f4a0195b49fbac20059502cdc65fb81794c5a37fda9ac699e0634088f2b5761c8b48348f89ae46568e61a00258227f09e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349eeed6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7eee2e4f2">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs37lVrcF5/ZLq6rynLbPIrYKIQNSvBay5eXmklcaqTTiLoOeuQVXo/ErioUh8fUwMfecUglqHQguFB4PZbqjfC/R139oOkeO9km0JPhPmAlXHZdbK2WUEIbFJNiFPRmQDogdoIloef2Ff8AdiQTdLWj97qwBkClC8B/JlbaEoMNL360/5sp2oAT08Y; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:18 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas02-12">>}, +{<<"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:39:18 GMT">>} +] +}, +{ +undefined, +<<"88ca6196dc34fd280654d27eea0801128166e32fdc0bea62d1bfca7f03a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3fca408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 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">>} +] +}, +{ +undefined, +<<"88fbcaf1e9e7eaccc9c8f70f0d840844f8bfecdf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39604">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-length">>, <<"11292">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"884088f2b0e9f6b1a4585fb4bf46840df6f543af7021cf53f7e4366c52c98cfdef6816fef963071d97a46bcbf870b4d5f65be0ff38f572d3570cd9b9eccef3ff408cf2b0e9f6b585ed6950958d278d79f79dbd7441ba2bd85f7af5ef6196dc34fd280654d27eea0801128166e32fdc1014c5a37f5887a47e561cc58020eb6c96dc34fd280654d27eea0801128166e32ddc13ea62d1bf0f139afe5e136d322706cbedb217648dd8c2fbadb8d4a37992b4eb9fcff69f0f0d847c416dbf76868691fb3d5b99">>, +[ +{<<":status">>, <<"200">>}, +{<<"x-amz-id-2">>, <<"DlMsa95OAPS0ALn9DdiKGfdHovCM2TvJb0VQCd4x9FF44D35U9YbOWNnUKKYQL89">>}, +{<<"x-amz-request-id">>, <<"8987CB21B2CF98CC">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:20 GMT">>}, +{<<"cache-control">>, <<"max-age=10">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:35:29 GMT">>}, +{<<"etag">>, <<"\"8254326a395317db7b197564fa83e476\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"">>}, +{<<"content-length">>, <<"92155">>}, +{<<"server">>, <<"AmazonS3">>} +] +}, +{ +undefined, +<<"88768586b19272ffd1f8f0eef1d35890aec3771a4bf4a523f2b0e62c0cbee019d0ca0f0d03363435f4e7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39603">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"content-length">>, <<"645">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88bff2f1d2f9ef0f0d83702eb5e7d4bed0caf4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"6174">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=39603">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 00:39:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"4803333033d8cbd7d60f1fff87036242206dd734bd820000047fddbe91dba828a6270cf7a624221798d2ff92111616435852260089cf890884d13c00f890884d1de007c48444834c0165b0bed3efb6fb817fe2422106ae0f1e3c2f57a49a92a1721e9f89088b6c340c7c72deb90f14b005902e113ebb8f2eeb2b09c780103ef09a5d9009b7dc6dcf8e5bd7ee989069200b205c227d771e5dd656138f00207de134bb20136fb8db8b8596c2fb4fbedbee081f1cb7afdd314b1268ef003e396f5d3ee059af8e5bd78e781ff8e5bd7b6880b52dc377c72deb924804d7c72deba2c802cb8e7975c7be396f5fa1e0e6547c72deba4d06f9caa881a4be1510399eceaa881bcd4950a880b2a205db0a3ea6aa65440d25f08fa5440e47b28915103497c2151015138a881a2da126a4b2187f1cb7afd110732a3e396f5fa77802bbbf1cb7ae44c16d5d6a3f8abe396f5e3440fbed7971a7fe396f5e5341a4ff1cb7ae9ef005702eefc72debc94400f8e5bd72a20f1e3c2f57a49a92a1721e963e396f5fdc52c6483e396f5c93455418cf496b1cc5f8e5bd7f715849aa8319e92d6398bf1cb7afee29ab4c18cf496b1cc5f8e5bd7f7155e92883e396f5fdc557a4c907c72debfb8aca4d240003b280200084171c034ec652be000a3f8e5bd7b3bc00f8e5bd7a49117bc1f1cb7afdd314b12689e007c72debf74c52c52401f8e5bd7ee98a5891007e396f5fba629621c01f8e5bd7ee98a5803f0f0d01300f28ff0286f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186ec30c30d39fc430e42168e37b1e3af8ec876430c38e7c70c37b1e3af8ec9fcb9c78430c30c30adf6a5634cf031f6a17cd66b0a8837cf6fd28102d7ca458400b6a041704edc65a53168df7f0bb7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3f">>, +[ +{<<":status">>, <<"303">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"location">>, <<"/dcsa5pgfq10000c9zuysqk0lm_6i8y/dcs.gif?dcsredirect=126&dcstlh=0&dcstlv=0&dcsdat=1351949959619&dcssip=www.nytimes.com&dcsuri=/&WT.co_f=130.129.68.73-2680109824.30259656&WT.vt_sid=130.129.68.73-2680109824.30259656.1351949959620&WT.vt_f_tlv=0&WT.tz=-4&WT.bh=9&WT.ul=en-US&WT.cd=24&WT.sr=1366x768&WT.jo=Yes&WT.ti=The%20New%20York%20Times%20-%20Breaking%20News,%20World%20News%20%26%20Multimedia&WT.js=Yes&WT.jv=1.7&WT.ct=unknown&WT.bs=994x649&WT.fi=No&WT.tv=1.0.7&WT.dl=0&WT.es=www.nytimes.com/&WT.z_fbc=&WT.cg_n=Homepage&WT.z_rcgn=Homepage&WT.z_gpt=Homepage&WT.z_nyts=&WT.z_nytd=&WT.z_rmid=007f010022166047bee9002b&WT.rv=0&WT.mc_ev=&WT.vt_f_tlh=0&WT.vt_f_d=1&WT.vt_f_s=1&WT.vt_f_a=1&WT.vt_f=1">>}, +{<<"content-length">>, <<"0">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAABAAAAmLwAAIcelVCHHpVQAQAAAHhHAACHHpVQhx6VUAAAAAA-; path=/; expires=Thu, 10-Dec-2015 10:27:34 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>} +] +}, +{ +undefined, +<<"88d9ccd8d70f28ff0386f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186ec30c30d39fc430e42168e37b1e3af8ec876430c38e7c70c37b1e3af8ec9fcb9c78430c30c30adf6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32fdc0bea62d1bffbe4085aec1cd48ff86a8eb10649cbfd65886a8eb10649cbf5f87352398ac4c697f0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAABAAAAmLwAAIcelVCHHpVQAQAAAHhHAACHHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:39:19 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88c4f76c96d07abe9413aa436cca080112820dc10ae01e53168dff52848fd24a8f0f0d033433305f86497ca582211f5890aec3771a4bf4a523f2b0e62c0d3606416496dd6d5f4a01a5349fba820044a005700fdc69f53168dfd47f2288ea52d6b0e83772ff7b8b84842d695b05443c86aa6f5a839bd9abf4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 27 Aug 2012 21:22:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"430">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=45030">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:09:49 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cc4087aaa21ca4498f57842507417fc06c96d07abe941094d444a820044a083704edc69e53168dffc6c00f0d830840cff6c85890aec3771a4bf4a523f2b0e62c0f080cbb6496dd6d5f4a01a5349fba820044a045704e5c65c53168dfdbc4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1103">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=82037">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:26:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0c16c96dc34fd28069486d994100225041b817ae05953168dffc90f0d830bae39c85890aec3771a4bf4a523f2b0e62c0d3616596496dd6d5f4a01a5349fba820044a0057021b8c894c5a37fdec7c6c5fb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1766">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=45133">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:11:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:19 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d30f13a1fe42dbcd80adb328196da6992b7246e4a27a575b1be408c9702cb61704cb4277f96c96df697e94640a6a225410022502f5c6ddb80694c5a37fcce9c7c65889a47e561cc58022003f6196dc34fd280654d27eea0801128166e32fdc0bca62d1bf0f0d840bacbe1fca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"etag">>, <<"\"15850e53f035443e5db6f28f75a9c1ac:1351623427\"">>}, +{<<"last-modified">>, <<"Tue, 30 Oct 2012 18:57:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cache-control">>, <<"max-age=1200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"content-length">>, <<"17391">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8ce588eaed8e8313e94a47e561cc581c0035f95497ca58e83ee3412c3569fb24e3b1054c16a6559efc06c96dc34fd280654d27eea0801128166e321b81714c5a37f768dc17b729fd513d8c3576fbdfdff408442469b51851000a6acdfce4085f2b10649cb034849540f0d837de75f">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"public, max-age=600">>}, +{<<"content-type">>, <<"text/javascript;charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:18 GMT">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:31:16 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BD8)">>}, +{<<"status">>, <<"200 OK">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"9879">>} +] +}, +{ +undefined, +<<"88d4588aa47e561cc581c034f001d76196dc34fd280654d27eea0801128166e32fdc1094c5a37f6496dc34fd281029a4fdd410022502cdc65fb821298b46ff6c96df697e94642a65b68504008941337002b8dbaa62d1bf768cc17b729fd513d8c3577087fbc30f0d023335">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=604800">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:22 GMT">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 13:39:22 GMT">>}, +{<<"last-modified">>, <<"Tue, 31 Jul 2012 23:02:57 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BF1)">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"35">>} +] +}, +{ +undefined, +<<"88e10f13a1fe656c4c8e37c6d3ef36179e71d942220c4d4acbe5900f3b702c840dbaeba16bf96c96e4593e940b2a65b68504008540bb7020b8d814c5a37fdadcd5d4cb6196dc34fd280654d27eea0801128166e32fdc1054c5a37f0f0d840b4200bfd7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"etag">>, <<"\"f523ab9a498518867f12ca24f39ed087:1310577714\"">>}, +{<<"last-modified">>, <<"Wed, 13 Jul 2011 17:10:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"cache-control">>, <<"max-age=1200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:21 GMT">>}, +{<<"content-length">>, <<"14202">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88db5887a47e561cc5801f5f8b497ca58e83ee3412c3569f6196dc34fd280654d27eea0801128166e32fdc134a62d1bf0f139ffe5e7da79e0b6cb6dbce32d806db45202570afb4ebaf94acb64105c7e393f94084f2b0e62f01307f0a044d4953534089f2b10649cab4e64a3f01304085f2b75b4d2787c90e56f67692bf408df2b585ed695095a3193a96a93f87b505b2290691ff4089f2b20b6772c8b47ebf921d66416cee62150b0c0012fd6cf322f5153f0f0d820801e0">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:24 GMT">>}, +{<<"etag">>, <<"\"894881535586350a54ec0f6e94779ee35c2169bd\"">>}, +{<<"x-age">>, <<"0">>}, +{<<"x-cache">>, <<"MISS">>}, +{<<"x-cache-hits">>, <<"0">>}, +{<<"x-kuid">>, <<"IAJ5Qqdp">>}, +{<<"x-request-backend">>, <<"user_data">>}, +{<<"x-served-by">>, <<"apiservices-a002.krxd.net">>}, +{<<"content-length">>, <<"100">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130e7c57f2be9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7ee0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee09a53168dff6a487a466aa05fad9e645ea2a7f408af2b585ed695095926a4b92bf009b0289802cb617da7df71a69c6de08bf7f028e8ca321ea58600097eb679917a8a9e4">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:24 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:24 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=250 t=1351949964465812">>}, +{<<"x-served-by">>, <<"beacon-a002.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887f25842507417f6196dc34fd280654d27eea0801128166e32fdc136a62d1bf768dd06258741e54ad9326e61c5c1ffd4089f2b567f05b0b22d1fa868776b5f4e0dffd0f0d0131fcfb">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:25 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">>} +] +}, +{ +undefined, +<<"88e6ec5890aed8e8313e94a47e561cc581c034f0015f90497ca582211f649c7620a982d4cab3dfd16c96dc34fd280654d27eea0801128105c68371b654c5a37f768dc17b729fd513d8c3575fbbfdffdbebda0f0d846da702df">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"public, max-age=604800">>}, +{<<"content-type">>, <<"text/css;charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:21 GMT">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 10:41:53 GMT">>}, +{<<"server">>, <<"ECS (lhr/4B9B)">>}, +{<<"status">>, <<"200 OK">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"54615">>} +] +}, +{ +undefined, +<<"88f8e9eb6c96dc34fd28069486d994100225041b817ee36253168dfff1eb0f0d820b21f35891aec3771a4bf4a523f2b0e62c0e32f3afff6496dd6d5f4a01a5349fba820044a01db826ae01d53168df6196dc34fd280654d27eea0801128166e32fdc13ca62d1bff0408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"131">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=63879">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:24:07 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:28 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88fdeef0c2f5ef0f0d820b20bef75890aec3771a4bf4a523f2b0e62c0d05e6da6496dd6d5f4a01a5349fba820044a003702edc0094c5a37fc1f3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"130">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=41854">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:17:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:28 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cc6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfcbca0f28ff0386f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186ec30c30d39fc430e5c05a38dec78ebe3b21d90c30e39f1c30dedb8ebe3b27f2e71e10c30c30c2b7da958d33c0c7da85f359ac2a20d07abe94032b693f758400b4a059b8cbf704fa98b46fffdfc64022d31fcfb0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAABAAAAmLwAAJEelVCHHpVQAQAAAHhHAACRHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:39:29 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"4803333033768586b19272ffc15f87497ca58ae819aad17f0f87d78f5b0dae25df0f0d01307b83c674270f1fff769d29aee30c78f1e17abd24d4950b90f4b1350798d57f9c36e48274a6bb8c31e3c785eaf49352542e43d2c080113010b00658b50c565aaa47aa3b8ea30d63d264a4b22d59cc83d4b48348d6354b781a4b62d616b3d895e74d347c6ad904f5ec139159b19be0f8d5ae065c8ca57d98f60b0ec13ba66d8ce1d8277df8d8ce1d8276aaaad8277bec6709f2ec13bfc69feede9a74ec670ec161d827760b0ec701b042d82c3b04eec10b6085b04eec701b040d82777dbb04ecdbbdfbb7c65c1b04d7bbdb04d0349ef6c670ec670eefe01369bd6e9f60fe3609ad8ce1d826817bd82ad826b63387774074dd369e9b19c3b1987bec6709f2ff">>, +[ +{<<":status">>, <<"303">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"content-type">>, <<"text/plain">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"0">>}, +{<<"vary">>, <<"Host">>}, +{<<"location">>, <<"http://www.nytimes.com/glogin?URI=http://www.nytimes.com/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html&OQ=hpQ26_rQ3D0&OP=36bee93bQ2FQ27NgQ3FQ27zwQ3FQ27nnnQ27vQ3FoJQ27!N)ujNNQ3FQ2FQ27Q2FQ60Q22Q2FQ27Q22Q22Q27Q60Q20Q27TuQ27gSzzuwJEQ24zCQ240NoCQ3FQ3FS!0gNCuNz0!Q24Q3FQ240Cz0nQ24Q3FSj0jSgNjQ3FQ3AvQ3FoJ">>} +] +}, +{ +undefined, +<<"48826402c2c55f87497ca589d34d1f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbffd798624f6d5d4b27f0f28edd3cf7adba006893797158f670e0bf9effe594f7f30df2e3f79d92eff3c27efe1d90b87dbf94939a1c9c30e715dc1f8de1e44e2bf3abcb5675c393ed42f9acd61510683d5f4a0195af948b0801128166e32fdc13ea62d1bfed4ac699e063ed490f48cd540bd5e926a4a85c87a7f0f1fc69d29aee30c78f1e17abd24d4950b90f4b020044c042c01962d431596aa91ea8ee3a8c358f499292c8b567320f52d20d2358d52de0692d8b585acf62579d34d1fe4f5fc4564000f0d0130fd5f92497ca589d34d1f6a1271d882a60e1bf0acf7">>, +[ +{<<":status">>, <<"302">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"set-cookie">>, <<"NYT-S=0MdTeGr8L1EDLDXrmvxADeHzL3eTxUhvw7deFz9JchiAIUFL2BEX5FWcV.Ynx4rkFI; expires=Mon, 03-Dec-2012 13:39:29 GMT; path=/; domain=.nytimes.com">>}, +{<<"location">>, <<"http://www.nytimes.com/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html?hp&_r=0">>}, +{<<"content-length">>, <<"0">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html; charset=UTF-8">>} +] +}, +{ +undefined, +<<"88c8feff01fa52848fd24a8fff010f0d033439355f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e880e356496dd6d5f4a01a5349fba820044a01fb8d02e32ca98b46fcf7f1f88ea52d6b0e83772ffd3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"495">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72064">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:40:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cd4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee01d53168dffc55a839bd9ab0f0d03353339d75f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0c81f79a6496dc34fd280654d27eea0801128215c0b771b654c5a37fd7c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"539">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=30984">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 22:15:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d4c4c2c90f0d03373737dac05890aec3771a4bf4a523f2b0e62c0e81f6996496dd6d5f4a01a5349fba820044a01fb820dc6c4a62d1bfd9c7c5c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"777">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70943">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d6c6c56c96dc34fd28069486d994100225041b817ee01953168dffccc40f0d820ba2ddc35890aec3771a4bf4a523f2b0e62c0db606996496dd6d5f4a01a5349fba820044a01ab8db971b1298b46fdcca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"172">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=55043">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:56:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d9c9c86c96d07abe941094d444a820044a083704edc034a62d1bffcfc70f0d83740273e0c65890aec3771a4bf4a523f2b0e62c0e3af81e6496dd6d5f4a01a5349fba820044a01eb8c86e05d53168dfdfcd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"7026">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67908">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:31:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dcdfd7d6d5d4c9d30f28edd3cf7adba006893797158f670e0bf9effe594f7f30df2e3f79d92eff3c27efe1d90b87dbf94939a1c9c30e715dc1f8de1e44e2bf3abcb5675c393ed42f9acd61510683d5f4a0195af948b0801128166e32fdc13ea62d1bfed4ac699e063ed490f48cd540bd5e926a4a85c87a7f0f1fc69d29aee30c78f1e17abd24d4950b90f4b020044c042c01962d431596aa91ea8ee3a8c358f499292c8b567320f52d20d2358d52de0692d8b585acf62579d34d1fe4f5fc4564000f0d0130ccd7d6d5d40f28d0d3cf7adba0068df46ffc6f9cfdbdfe4b7ff2ca7bf986f971dd366df3ebf796ba3f242e1f6fe524e6872e679faa8e23daec68e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fd9408a224a7aaa4ad416a9933f84702013bfef">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"set-cookie">>, <<"NYT-S=0MdTeGr8L1EDLDXrmvxADeHzL3eTxUhvw7deFz9JchiAIUFL2BEX5FWcV.Ynx4rkFI; expires=Mon, 03-Dec-2012 13:39:29 GMT; path=/; domain=.nytimes.com">>}, +{<<"location">>, <<"http://www.nytimes.com/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html?hp&_r=0">>}, +{<<"content-length">>, <<"0">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MTlTX5YhqzXfDXrmvxADeHBiKThPzJplXdeFz9JchiAJK89nlVaR7bsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"vary">>, <<"Host">>}, +{<<"cteonnt-length">>, <<"61027">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88ddcdccc1d2ca0f0d83640fb3c95890aec3771a4bf4a523f2b0e62c0e85971c6496dd6d5f4a01a5349fba820044a01fb827ae36da98b46fe2d0e5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3093">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71366">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:28:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88dfcfce6c96dc34fd28069486d994100225041b817ee01a53168dffd5cd0f0d836dc65ce6cc5890aec3771a4bf4a523f2b0e62c0e85f6996496dd6d5f4a01a5349fba820044a01fb8cbd7191298b46fe5d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5636">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71943">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:38:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e2d26c96d07abe940b6a6a2254100225040b8cbd702e298b46ffd80f0d83134f07e9d75890aec3771a4bf4a523f2b0e62c0e81e71e6496dd6d5f4a01a5349fba820044a01fb8205c65d53168dfe8d6d4d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 15 Oct 2012 20:38:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"2481">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70868">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:20:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e5d5d4c0dad20f0d83089a0febd95891aec3771a4bf4a523f2b0e62c0e3acbedff6496dd6d5f4a01a5349fba820044a01eb8215c69a53168dfead8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 15 Oct 2012 20:38:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1241">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67395">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:22:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801f5f87352398ac4c697fec6496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3fe37689aa6355e5802eeaedbf0f0d023433dd">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88feeffc7f00a1bdae0fe74eac8a5fddad4bdab6a9af7427535eebe753570daa5de1b94d5bef7f3ffc408cf2b0d15d454addcb620c7abf8712e05db03a277f0f0d01315885aec3771a4b5f92497ca58ae819aafb50938ec415305a99567b">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 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">>} +] +}, +{ +undefined, +<<"88f0e0df6c96dc34fd28069486d994100225041b810dc69953168dffe6de0f0d03353638f7e55890aec3771a4bf4a523f2b0e62c0e880e376496dd6d5f4a01a5349fba820044a01fb8d02e32d298b46ff6e4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:11:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"568">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72065">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:40:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f3e3e26c96dc34fd28069486d994100225041b817ae05953168dffe9e10f0d830b2077e85891aec3771a4bf4a523f2b0e62c0e3acbeeff6496dd6d5f4a01a5349fba820044a01eb8215c69c53168dff9e7fc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1307">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67397">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:22:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f6e6e56c96df3dbf4a002a693f750400894102e34f5c6de53168dfece40f0d8469d744effde35891aec3771a4bf4a523f2b0e62c0e38f38fff6496dd6d5f4a01a5349fba820044a01eb8166e36f298b46ffcea">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:48:58 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"47727">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=66869">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:13:58 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f9e9e86c96d07abe940baa6e2d6a0801128205c102e01c53168dffefe70f0d83101f67408725453d44498f57842507417fef5890aec3771a4bf4a523f2b0e62c0e81f69a6496dd6d5f4a01a5349fba820044a01fb820dc6d953168df6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfef">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 17 Sep 2012 20:20:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2093">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70944">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88feeec8f30f0d03363933c1f25890aec3771a4bf4a523f2b0e62c0e3ad0856496dd6d5f4a01a5349fba820044a01eb8266e042a62d1bfc0f1efed">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"693">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67422">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:23:11 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272fff1f0cbf6ee0f0d83101a6fc4f55890aec3771a4bf4a523f2b0e62c0e85e7df6497dd6d5f4a01a5349fba820044a01fb8cbb71a794c5a37ffc3f4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2045">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71899">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:37:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c0f3f2cdf8f00f0d83081b17c6f75890aec3771a4bf4a523f2b0e62c0e85f7836496dd6d5f4a01a5349fba820044a01fb8cbf702053168dfc5f6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1052">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71981">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:39:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c2f5f4d2faf20f0d83134e39f95890aec3771a4bf4a523f2b0e62c0e88216f6496dd6d5f4a01a5349fba820044a01fb8d06e09a53168dfc7f8ca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:11:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2466">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72115">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:41:24 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c4f7f6d1fcf40f0d03383835cafbc9c8c7f8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"885">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70944">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4f7f66c96d07abe940814dc5ad4100225041b8015c6c0a62d1bff52848fd24a8ff60f0d8365c79ccc5f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e3a07016496dd6d5f4a01a5349fba820044a01eb8176e01f53168dfcc408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 10 Sep 2012 21:02:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3686">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67060">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:17:09 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ca4087aaa21ca4498f57842507417fd8c30f0d03363336d1c25890aec3771a4bf4a523f2b0e62c0e88426b6496dd6d5f4a01a5349fba820044a01fb8d33702ca98b46fd0c17b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"636">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72224">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:43:13 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88cfc2bfdcc7be0f0d03383530d5c65890aec3771a4bf4a523f2b0e62c0e81f79d6496dd6d5f4a01a5349fba820044a01fb8215c65c53168dfd4c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"850">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70987">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:22:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d1c4c1dec9c00f0d83081b77d7c85890aec3771a4bf4a523f2b0e62c0e81e7db6496dd6d5f4a01a5349fba820044a01fb820dc034a62d1bfd6c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1057">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70895">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:04 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d3c6c36c96df3dbf4a002a693f750400894102e34edc69953168dfccc30f0d830b6ebbcbf1f0d7c8da">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:47:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1577">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70868">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:20:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d4c7c4e1ccc30f0d03353436dacb5890aec3771a4bf4a523f2b0e62c0e85d7196496dd6d5f4a01a5349fba820044a01fb8cb77191298b46fd9ca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"546">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71763">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:35:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3da5f87497ca589d34d1f0f28d0d3cf7adba0068df46ffc6f9cfdbdfe4b7ff2ca7bf986f971dd366df3ebf796ba3f242e1f6fe524e6872e679faa8e23daec68e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfca798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MTlTX5YhqzXfDXrmvxADeHBiKThPzJplXdeFz9JchiAJK89nlVaR7bsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88dccfcc6c96dc34fd28069486d994100225041b817ae05b53168dffd5cc0f0d830be10fe3d45890aec3771a4bf4a523f2b0e62c0e85d69a6496dd6d5f4a01a5349fba820044a01fb8cb7702ca98b46fe2d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1911">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71744">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:35:13 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dfd26c96dc34fd28069486d994100225041b817ae044a62d1bffd80f0d03363438e6d75891aec3771a4bf4a523f2b0e62c0e38fbcfff6496dd6d5f4a01a5349fba820044a01eb816ee36f298b46fe5d6d2d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"648">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=66989">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:15:58 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e5e2c7c6c50f28d0d3cf7adba0068e52fe544efdb0f9923bff9653dfcc37cb8ee9b36f9f5fbcb5d1f92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fc5c6c7408a224a7aaa4ad416a9933f0234357f18842507417fcad30f0d023539">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MWfXncvqFxdbDXrmvxADeHBiKThPzJplXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"59">>} +] +}, +{ +undefined, +<<"88e4d7d4c2dcd30f0d03393536eadb5891aec3771a4bf4a523f2b0e62c0e38f34eff6496dd6d5f4a01a5349fba820044a01eb8166e32e298b46fe9da">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"956">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=66847">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:13:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"4803333033f9ea0f1fa29d29aee30c48119bb99b92b178b3d36b9283db24b61ea4af5152c566f25a1798d2ff7f3c9dbdae0fe74eac8a6bdd09d4d5c36a9934df52f6ad0a69878a9bb7c3fcff768dd06258741e54ad9326e61d5c1f7f3d8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df0f0d0130df">>, +[ +{<<":status">>, <<"303">>}, +{<<"cache-control">>, <<"private">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"location">>, <<"http://d1aivi5dp2wry5.cloudfront.net/pixel.gif">>}, +{<<"p3p">>, <<"CP=\"NOI PSAo OUR IND COM NAV STA\"">>}, +{<<"server">>, <<"Microsoft-IIS/7.0">>}, +{<<"x-aspnet-version">>, <<"4.0.30319">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"content-length">>, <<"0">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ebdedb6c96c361be94136a681d8a08010a817ee32edc0b6a62d1bfe4db0f0d8308420ff25f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c026c2d3ad76496df697e94038a693f750400894086e320b8d32a62d1bff2e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 25 Mar 2011 19:37:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1110">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=251474">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:43 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88efe2df6c96dc34fd28069486d994100225041b817ae05c53168dffe8df0f0d03353235e75890aec3771a4bf4a523f2b0e62c0e81f7596496dd6d5f4a01a5349fba820044a01fb8215c1094c5a37ff5e6f8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"525">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70973">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:22:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88f2e5e26c96dc34fd28069486d994100225041b817ae05953168dffebe20f0d826c42f9ea5890aec3771a4bf4a523f2b0e62c0e38f3c16496dd6d5f4a01a5349fba820044a01eb816ae040a62d1bff8e9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"522">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=66881">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f5e8e5c0ede40f0d830bae39fbec5891aec3771a4bf4a523f2b0e62c0e32f34fff6496dd6d5f4a01a5349fba820044a01db8266e32f298b46ffaeb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1766">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=63849">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:23:38 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f7eac2ef0f0d03383634fdee5890aec3771a4bf4a523f2b0e62c0e8996836496dd6d5f4a01a5349fba820044a01fb8d37702053168dffcede9e8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"864">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72341">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:45:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88f9ece9d7f1e80f0d836c0cbf408725453d44498f57842507417ff15890aec3771a4bf4a523f2b0e62c0e38f85a6496dd6d5f4a01a5349fba820044a01eb816ae34ca98b46f6196dc34fd280654d27eea0801128166e32fdc13ea62d1bff1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5039">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=66914">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:43 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88fdf0ed6c96df3dbf4a042a6a2254100225042b820dc6c0a62d1bfff6ed0f0d03353631c2f55890aec3771a4bf4a523f2b0e62c0e81f65b6496dd6d5f4a01a5349fba820044a01fb820dc69a53168dfc1f4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 22:21:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"561">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70935">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272fff4f16c96df3dbf4a09c521aec504008940b7702cdc680a62d1bffaf10f0d83799783c65f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0cb6175e676496e4593e9403aa693f7504008940b77042b8c894c5a37fc6f9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 26 Apr 2012 15:13:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8381">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=351783">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 15:22:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c2f86c97df3dbf4a01a5349fba820040a05cb8d3b71b6d4c5a37ff52848fd24a8f0f0d830bcfb9cbd85890aec3771a4bf4a523f2b0e62c0d85e08b6496dd6d5f4a01a5349fba820044a01ab8066e002a62d1bfcafdf9f8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 04 Nov 2010 16:47:55 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1896">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=51812">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c6fcf96c96d07abe940baa6e2d6a080112817ae059b8cbaa62d1bfc1f90f0d836db6c3cec55890aec3771a4bf4a523f2b0e62c0e85e6de6496dd6d5f4a01a5349fba820044a01fb8cbb700ea98b46fcd7f2788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 17 Sep 2012 18:13:37 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5551">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=71858">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:37:07 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ca4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd280654d27eea080112800dc0bf7190a98b46ffc75a839bd9ab0f0d840b6e360fcc5891aec3771a4bf4a523f2b0e62c0dba113c2f6496dc34fd281029a4fdd410022500d5c102e36153168dffd4c4d7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 01:19:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15650">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571282">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:20:51 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d0c3c26c96df3dbf4a002a693f75040089410ae099b8d894c5a37fcbc10f0d84109f037fd8cfcac9d5c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 22:23:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"22905">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=51812">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d1c4c36c96dc34fd28069486d994100225041b817ee01d53168dffccc20f0d830ba167d95f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e81f69a6496dd6d5f4a01a5349fba820044a01fb820dc6d953168dfd9c9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1713">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70944">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d5c86c96c361be940854dc5ad41000fa8176e32ddc0014c5a37fd00f0d023639ddc15890aec3771a4bf4a523f2b0e62c0e882e3d6496dd6d5f4a01a5349fba820044a01fb8d0ae05d53168dfdccccac8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 11 Sep 2009 17:35:00 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"69">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=72168">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:42:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d8cbca6c96e4593e94640a681fa504008940b971b6ae32253168dfd3c90f0d840b2d005fe0d75890aec3771a4bf4a523f2b0e62c0179c79b6496dc34fd280654d27eea080112817ae360b8db4a62d1bfdfcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 30 May 2012 16:54:32 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"13402">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=18685">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 18:50:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbcecd6c96dc34fd28069486d994100225041b817ee01b53168dffd6cc0f0d8379d13dc75890aec3771a4bf4a523f2b0e62c0e3acb606496dd6d5f4a01a5349fba820044a01eb820dc6df53168dfe2d2e5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8728">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67350">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:21:59 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88ded1d0c0d8ce0f0d03363536e5c95891aec3771a4bf4a523f2b0e62c0e3ad32fff6496dd6d5f4a01a5349fba820044a01eb8266e09e53168dfe4d4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"656">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67439">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:23:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e0d3d2ccdad00f0d836c4d3de7cb5890aec3771a4bf4a523f2b0e62c0e81f75a6496dd6d5f4a01a5349fba820044a01fb8215c132a62d1bfe6d6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5248">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70974">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:22:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e2d56c96dc34fd28069486d994100225041b817ee01a53168dffdd0f0d830840cfeace5890aec3771a4bf4a523f2b0e62c0e81f69c6496dd6d5f4a01a5349fba820044a01fb820dc6db53168dfe9d9d7d5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1103">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70946">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88f90f0d023433d94088f2b0e9f6b1a4585fb4e7df8c83fcc326ce774f9cd8e7dcc6bef533b3655b1ad735b96b65364f7b1feeeab2643b7a77bbb9f7b7c9e8fdd3e9c177c7bb17408cf2b0e9f6b585ed6950958d278cbd7c179c081a1607c226e1c16196df3dbf4a01b532db42820044a081702edc6c2a62d1bf588aa47e561cc581c00000076c96e4593e9413ca6e2d6a08010a8205c002e05e53168dff0f1399fe649592b6e3b239285c900d0191384746028c4f8da95a0ff3e476868691fb3d5b99558471a702e74089f2b0e9f6b12558d27fad39ecd31d7c41d1e9ebd7a1fdb2faab0f9283159d3c73776721d4f68f687b749fab396db79b8ab9b3cdfb0c107f7cae0ae0504494920c8fc6fb4d908579e208242332b2091e79a248b9283db24b61ea4af5152a7f57a83db261b0f527fb4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-amz-id-2">>, <<"YvVdaXFdQYBoLiHhS/Pvn3QQnQ4PguJp3trhCHZSnIIo5NT7S98Tdyovty62vHSG">>}, +{<<"x-amz-request-id">>, <<"CD0C61042E9125AE">>}, +{<<"date">>, <<"Thu, 05 Jul 2012 20:17:51 GMT">>}, +{<<"cache-control">>, <<"max-age=600000">>}, +{<<"last-modified">>, <<"Wed, 28 Sep 2011 20:00:18 GMT">>}, +{<<"etag">>, <<"\"df3e567d6f16d040326c7a0ea29a4f41\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"server">>, <<"AmazonS3">>}, +{<<"age">>, <<"64616">>}, +{<<"x-amz-cf-id">>, <<"oorNbpV0j8hpPM9RfynFxe0GrjwY7QWan8Mzs8SdZ-6uuC5_pgLgZA==">>}, +{<<"via">>, <<"1.0 2cfcdac9b945cce88c21cc3f30d884cd.cloudfront.net (CloudFront)">>}, +{<<"x-cache">>, <<"Hit from cloudfront">>} +] +}, +{ +undefined, +<<"88efe2e16c96dc34fd28069486d994100225041b817ee01953168dffeae00f0d82089cf7db5890aec3771a4bf4a523f2b0e62c0e3ad3e06496dd6d5f4a01a5349fba820044a01eb826ae05f53168dff6e6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"126">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67490">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:24:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbfdef76496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4085aec1cd48ff86a8eb10649cbf7688aa6355e580ae05c10f28ff75abd256a607b089c13c165e1080085a7c30899005c6450dd66172ebdf0580cb8596da659780007c26032e107c7780cb87e288285c4dae27802680f05f757582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb07e2a80cb8be2680cb83e0b64065c2cb617da7df6dcf8ef64142ed2e15c0b81707c5764142ed2e25c0b81707c77ae032e0f89a58285c205c4f004d01e0beeaeb057582bac15d60aeb057582bac15d60aeb07ed42f9acd615106f9edfa50025b49fbac2005d502cdc65fb827d4c5a37fda958d33c0c7da921e919aa817abd24d4950b90f4ff0f0d820859ea">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=8F26281382200A491A2301632AB3A6B8&e=i.1354338000&t=i.10&v=i.1&l=l.25.2802408197.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.1.0.0.0&pr=l.4.2.0.0.0&vp=i.0&gf=l.10.2802408197.-1.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:29 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88f6e9e86c96df697e940b8a6a2254100225041b8005c0814c5a37fff1e70f0d836d97dfe25890aec3771a4bf4a523f2b0e62c0e38f85a6496dd6d5f4a01a5349fba820044a01eb816ae34ca98b46f6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfee408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 16 Oct 2012 21:00:10 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5399">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=66914">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:43 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +1365, +<<"3fb60a88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee01c53168dff52848fd24a8f5a839bd9ab0f0d830b400fc45f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e85d6456496dd6d5f4a01a5349fba820044a01fb8cb7700153168dfc8408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1401">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71732">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:35:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c76c96e4593e940094d03b14100215041b8d39702253168dff0f138ffe42fb6b34fc8f3923ae3d28400fe7c4c64085f2b4e7427f888c20654bf009e7994088ea52d6b0e83772ff8f49a929ed4c01103e94a47e607df07f5f901d75d0620d263d4c741f71a0961ab4ff7f0388cc52d6b4341bb97fce55867d951451453f0f0d03343035">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Wed, 02 Mar 2011 21:46:12 GMT">>}, +{<<"etag">>, <<"\"195-49d86d768f100\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-host">>, <<"b103 D=2883">>}, +{<<"keep-alive">>, <<"timeout=120, max=990">>}, +{<<"content-type">>, <<"application/javascript">>}, +{<<"connection">>, <<"Keep-Alive">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"age">>, <<"93 ">>}, +{<<"content-length">>, <<"405">>} +] +}, +{ +undefined, +<<"88cdcccbcac9c80f0d8365e643cec75890aec3771a4bf4a523f2b0e62c0e85e6d96496dd6d5f4a01a5349fba820044a01fb8cbb700253168dfd1c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3831">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71853">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:37:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfce6c96d07abe941094d444a820044a083704e5c036a62d1bffcc0f0d83089a73d15f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e81f71c6496dd6d5f4a01a5349fba820044a01fb8215c0b6a62d1bf6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfcbd2cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:26:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1246">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70966">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:22:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee01b53168dff52848fd24a8f5a839bd9ab0f0d8465d69f77408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e8842776496dd6d5f4a01a5349fba820044a01fb8d33702e298b46fc87f1188ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"37497">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=72227">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:43:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c7c66c96dc34fd28069486d994100225041b817ee09953168dffc5c40f0d837de75dc3c25890aec3771a4bf4a523f2b0e62c0e81f69c6496dd6d5f4a01a5349fba820044a01fb820dc6db53168dfccc1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9877">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70946">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbcac96c96dc34fd28069486d994100225041b817ae044a62d1bffc8c70f0d03343234c6d05890aec3771a4bf4a523f2b0e62c0e8402676496dd6d5f4a01a5349fba820044a01fb8266e044a62d1bfcfc4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"424">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71023">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cecdccc0cac90f0d03323638c8d25890aec3771a4bf4a523f2b0e62c0e3ae3c26496dd6d5f4a01a5349fba820044a01eb8276e32153168dfd1c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"268">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67682">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:27:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0cfcecdcccb0f0d03383733c95890aec3771a4bf4a523f2b0e62c0e81f65c6496dd6d5f4a01a5349fba820044a01fb820dc69b53168df6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfc9cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"873">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70936">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:45 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b810dc65953168dff52848fd24a8f5a839bd9ab0f0d03333638408725453d44498f57842507417f5f86497ca582211fcccbc6d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:11:33 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"368">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71023">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5c4c36c96dc34fd28069486d994100225041b817ee01953168dffc2c10f0d8365a783c05f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e85e6da6496dd6d5f4a01a5349fba820044a01fb8cbb700ca98b46fca408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3481">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71854">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:37:03 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cac9c86c96dc34fd28069486d994100225041b817ae05953168dffc7c60f0d03353530c5c45890aec3771a4bf4a523f2b0e62c0e81e71e6496dd6d5f4a01a5349fba820044a01fb8205c65d53168dfcec1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"550">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70868">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:20:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cd6c96dc34fd28069486d994100225041b817ee01d53168dffcaccc9cdc55890aec3771a4bf4a523f2b0e62c0d85e6856496dd6d5f4a01a5349fba820044a01ab8066e32153168dfd10f0d837da6dec4ca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=51842">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"content-length">>, <<"9458">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d0cfcec0cccb0f0d8313227bcac75890aec3771a4bf4a523f2b0e62c0d85e6596496dd6d5f4a01a5349fba820044a01ab8066e084a62d1bfd3c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2328">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=51833">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2d1d06c96d07abe941094d444a820044a083704edc034a62d1bffcfce0f0d8313817fcdcac2c16196dc34fd280654d27eea0801128166e32fdc13ea62d1bfc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2619">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=51842">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee01b53168dff52848fd24a8f5a839bd9ab0f0d82089fd15890aec3771a4bf4a523f2b0e62c0d85e08b6496dd6d5f4a01a5349fba820044a01ab8066e002a62d1bfc6d0408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"129">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=51812">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:03:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c6c5c46c96d07abe941094d444a820044a083704edc69f53168dffc3c20f0d023335bf5f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0d09b03d6496dd6d5f4a01a5349fba820044a003704edc6dd53168dfcb408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"35">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=42508">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:27:57 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbcac96c96dc34fd28069486d994100225041b817ee36ca98b46ffc8c70f0d023638c4c25890aec3771a4bf4a523f2b0e62c0e3e265f6496dd6d5f4a01a5349fba820044a01eb8db3704f298b46fcfc1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"68">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=69239">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:53:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cecdcc6c96dc34fd28069486d994100225041b817ee36253168dffcbca0f0d023436c55890aec3771a4bf4a523f2b0e62c0e84027b6496dd6d5f4a01a5349fba820044a01fb8266e05d53168dfd2c4c9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"46">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=71028">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d1d0cfc3cdcc0f0d83085a77c95f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0e38f3cf7f6496dd6d5f4a01a5349fba820044a01eb816ae05d53168df6196dc34fd280654d27eea0801128166e32fdc13ea62d1bfc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1147">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=66888">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:29 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df697e940054d03b14100215042b8db5700d298b46ff52848fd24a8f5a839bd9ab0f0d83101d7bd3d15891aec3771a4bf4a523f2b0e62c026c2d38cf6496df697e94038a693f750400894086e320b8cb2a62d1bf6196dc34fd280654d27eea0801128166e32fdc640a62d1bfd1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 01 Mar 2011 22:54:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2078">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=251463">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6c5c46c96df3dbf4a0195340ec504008540bf71915c0894c5a37fc3c20f0d03353933408725453d44498f57842507417fccc2c1c0d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"593">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=251463">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c7c6bfc4c30f0d83081c17ccc2c1c0d3be">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1062">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=251463">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c8c7c6bfc4c30f0d03383330beccc2c1c0d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"830">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=251463">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c7c6cfc4c30f0d023436be5f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0e3616456496dd6d5f4a01a5349fba820044a01db8d37700253168dfc3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"46">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=65132">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:45:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbcac3c8c70f0d03333139c2c1c6c5c4be">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 03 Mar 2011 19:32:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"319">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=251463">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:30:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbca6c96c361be94136a681d8a08010a817ee32edc0b4a62d1bfc9c80f0d023638c25892aec3771a4bf4a523f2b0e62c010b4f01a07f6496c361be940b8a693f750400894102e32cdc640a62d1bfc7c1c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 25 Mar 2011 19:37:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"68">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=1148040">>}, +{<<"expires">>, <<"Fri, 16 Nov 2012 20:33:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3c85f87497ca589d34d1f0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfcf798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88cd768586b19272ff0f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff408aa924396a4ad416a9933f0238394087aaa21ca4498f57842507417fc55885aec3771a4bd40f0d023939">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"89">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"99">>} +] +}, +{ +undefined, +<<"88c7d1c60f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fc5c4c3d4c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fd25f8b1d75d0620d263d4c7441eacd4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d03313536">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>} +] +}, +{ +undefined, +<<"88d4c40f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff7f0483081c7bc3cac25a839bd9ab0f0d826c42">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"522">>} +] +}, +{ +undefined, +<<"88c26196dc34fd280654d27eea0801128166e32fdc640a62d1bfcc0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fcbcac9bfc8c2d1c10f0d836dc133">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"5623">>} +] +}, +{ +undefined, +<<"88c7c57b8b84842d695b05443c86aa6f6c96df3dbf4a042a6a2254100225042b8d86e09953168dff52848fd24a8fc20f0d836dd7df408725453d44498f57842507417f5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0cb6165d736496e4593e9403aa693f7504008940b7702ddc69c53168dfc5408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 22:51:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5799">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=351376">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 15:15:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfcdc56c96e4593e94642a6a2254100225020b8dbf71b754c5a37fc4c80f0d837c2d3bc3c25891aec3771a4bf4a523f2b0e62c0cb2e34c876496e4593e9403aa693f750400894086e01cb8d054c5a37fc9c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 10:59:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9147">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=336431">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 11:06:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2d0c86c96df3dbf4a002a693f7504008940bb702cdc6dd53168dfc7cb0f0d837d979fc55891aec3771a4bf4a523f2b0e62c0d34d8041f6496df3dbf4a01e5349fba820044a05db8172e32153168dfccc4c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 17:13:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9389">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=445021">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 17:16:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ffd4cc6c96df3dbf4a042a6a2254100225042b8d3d704053168dffcbcf0f0d836de007cac95891aec3771a4bf4a523f2b0e62c0cb4fb8d3d6496e4593e9403aa693f7504008940b571a72e36f298b46fd0c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 11 Oct 2012 22:48:20 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5801">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=349648">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:46:58 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c14087aaa21ca4498f57842507417f6c96df3dbf4a002a693f7504008940357020b8db8a62d1bfcf0f0d837dd139cecd5891aec3771a4bf4a523f2b0e62c0d004db4e76496df3dbf4a01e5349fba820044a01bb827ae32e298b46f6196dc34fd280654d27eea0801128166e32fdc640a62d1bfcd7b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 04:10:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9726">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=402546">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 05:28:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c8c4bf6c96c361be940094d27eea0801128015c69db80694c5a37f52848fd24a8fc00f0d8379f71e408725453d44498f57842507417f5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f09a776496dc34fd281029a4fdd410022500cdc641702ea98b46ffc6408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 02:47:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8968">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568247">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:30:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f92497ca589d34d1f6a1271d882a60e1bf0acf74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbc8ca768320e52f5885aec3771a4b0f0d83105c07408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f">>, +[ +{<<":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/html; charset=UTF-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"2160">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>} +] +}, +{ +undefined, +<<"88768586b19272ffd2cd6c96dc34fd28069486d994100225041b817ee01b53168dffcbcd0f0d03333834ca5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e38fbe16496dd6d5f4a01a5349fba820044a01eb8172e002a62d1bf6196dc34fd280654d27eea0801128166e32fdc640a62d1bfca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"384">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=66991">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:16:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c34087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6fc4d15a839bd9ab0f0d8365d083d1c45890aec3771a4bf4a523f2b0e62c0e85d7416496dd6d5f4a01a5349fba820044a01fb8cb771a0298b46fc3cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3710">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71770">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:35:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c2c1c752848fd24a8fc10f0d830b4cb7c75890aec3771a4bf4a523f2b0e62c0e88026f6497dd6d5f4a01a5349fba820044a01fb8cbf71b6d4c5a37ffc6408721eaa8a4498f5788ea52d6b0e83772ff408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1435">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=72025">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:39:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cdc7c6ccc2c50f0d03313933becb5890aec3771a4bf4a523f2b0e62c0e38f3a26496dd6d5f4a01a5349fba820044a01eb816ae004a62d1bfcac1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"193">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=66872">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfc9c86c96dc34fd28069486d994100225041b817ee01c53168dffc5c80f0d840844f8bfc1ce5890aec3771a4bf4a523f2b0e62c0e3ad3416496dd6d5f4a01a5349fba820044a01eb8266e32153168dfcdc4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11292">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67441">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:23:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2cccbc0c7ca0f0d830bee3dc3d05890aec3771a4bf4a523f2b0e62c0e81e7db6496dd6d5f4a01a5349fba820044a01fb820dc036a62d1bfcfc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1968">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=70895">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:05 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c34003703370c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf0f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b37197ee32053168dff6a6b1a67818f5f87352398ac4c697f0f0d0234336196dc34fd280654d27eea0801128166e32fdc640a62d1bf">>, +[ +{<<":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:39:30 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>} +] +}, +{ +undefined, +<<"887684aa6355e7bfc0798624f6d5d4b27fce4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fc45886a8eb10649cbf7f08d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 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\"">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6fd152848fd24a8f5a839bd9ab0f0d03363435408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75891aec3771a4bf4a523f2b0e62c0e3acbcfff6496dd6d5f4a01a5349fba820044a01eb8215c65f53168dfcd408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"645">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67389">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:22:39 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7c6c56c96dc34fd28069486d994100225041b817ee01c53168dffc5c40f0d83702eb5c3c25891aec3771a4bf4a523f2b0e62c0e32f36dff6496dd6d5f4a01a5349fba820044a01db8266e34da98b46fd1c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"6174">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=63855">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:23:45 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cad15f87497ca589d34d1f0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496dd6d5f4a01a5349fba820044a059b8cbf7190298b46fce4085aec1cd48ff86a8eb10649cbfc9d2c7c44089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d830800f76c96df3dbf4a01b532db42820044a081702d5c1014c5a37fcc5890a47e561cc581e71a003e94aec3771a4bcecf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:39:30 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1008">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 20:14:20 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"nncoection">>, <<"close">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32fdc640a62d1bfd10f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff408aa924396a4ad416a9933f83081c7bd15f86497ca582211fc1cf0f0d033435316c96dc34fd28069486d994100225041b817ae05953168dffd1c6d2cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"451">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:39:30 GMT">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"48033330337f0d842507417fc3768dd06258741e54ad9326e61c5c1f7f08868776b5f4e0df0f1fffb706624223d572f667a000000264128f12d1d0653c4e199f0c48442f31a5ff24222c2c86b0a44c0108be24221344f003e242213477801f1211120d300596c2fb4fbee81c0bdf121108357078f1e17abd24d4950b90f4fc48445b61a0604008980858032c5a862b2d5523d51dc75186b1e932525916ace641ea5a41a46b1aa5bc0d25b16b0b59ec4af3a69a3e24223b59ea0559c33d6a89c8ac801f1211161658274a6bb8c31e3c785eaf49352542e43d2c7c72deb90f14b005902e113ebb8f2eeb2b09c780103ef09a5d9009b7dc6dcf8e5bd7ee989069200b205c227d771e5dd656138f00207de134bb20136fb8db8b8596c2fb4fbedbee081f1cb7ae9f702cd7c72debc73c0ffc72debdb4405a96e1bbe396f5c924026be396f5d1640165c73cbae3df1cb7afd0f0732a3e396f5d2683596aa91ea8ee3a8c35440d5499292c8a881ace641ea5440be348d5100d52a20721a4b62a206d2d67b12a880b2a2069e7bcd4950b90f4fc72debf4441cca8f8e5bd7e9de00aeefc72deb91305b575a8fe2af8e5bd78d103efb5e5c69ff8e5bd794d0693fc72deba7bc015c0bbbf1cb7af251003e396f5ca883c78f0bd5e926a4a85c87a58100226021600cb16a18acb5548f54771d461ac7a4c949645ab39907a9690691ac6a96f03496c5ac2d67b12bce9a68f8e5bd7f711072401f8e5bd7f714b192007c72deb9268aa8382fb97f8e5bd7f715849aa8382fb97f8e5bd7f714d5a6086c4989417e396f5fdc535684c1a4be11f1cb7ae4b0b06f9caa881a4be1510399eceaa881bcd4951f1cb7afee2abd25100346ebc2d33e6efcdff1eeffe594f7f30df2e3f60db505f6b8feedfc90b87dbf94939a1cbcf571cf9331c9d264715f9d5e5ab3ae1c9f1cb7afee2abd26483e396f5fdc56526920001d9401000420b8e01a763295f00051fc72debfb8ac2cb055e926a4a85c87a7e396f5ecef003e396f5fdc53c9441acb5548f54771d461aa206aa4c949645440d67320f52a205f1a46a8806a9510390d25b15103696b3d89f8e5bd7f710cd24157a48d608000000000bcf09b703f1cb7afee2aed9201002208402f8e5bd7f71576a6086c24e6ee5f8e5bd7f6bcc89a086c24e6ee5f8e5bd7f714c34c017de756d761505a93f1cb7afee2aed1c12d852fc72debfb88945284c1975695440c7c36dfcf83e396f5fdc55dbde0d27b291d1f1cb7afee2aed92c802a8817c7ebe396f5fdc55fab2010022f8e5bd7a49117bc1f1cb7afdd314b1268ef07c72debf74c52c49a27802cb617da7df71ff8e5bd7ee98a58a483e396f5fba62962441f1cb7afdd314b10e0f8e5bd7ee98a583f0f0d01300f28ff0f86f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186f430c30d39fc430e5c05a38dec78ebe3b1fb010c3972168e37b763af8ec876430c38e7c70c37b763af8ec9fcb9c78430c30c30adf6a5634cf031f6a17cd66b0a8837cf6fd28102d7ca458400b6a041704edc65a53168df4003703370b7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3f">>, +[ +{<<":status">>, <<"303">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"location">>, <<"/dcsypfq3j00000gsclwfljaeo_6i3w/dcs.gif?dcsredirect=112&dcstlh=0&dcstlv=0&dcsdat=1351949970618&dcssip=www.nytimes.com&dcsuri=/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html&dcsqry=%3Fhp%26_r=0&dcsref=http://www.nytimes.com/&WT.co_f=130.129.68.73-2680109824.30259656&WT.vt_sid=130.129.68.73-2680109824.30259656.1351949959620&WT.tz=-4&WT.bh=9&WT.ul=en-US&WT.cd=24&WT.sr=1366x768&WT.jo=Yes&WT.ti=Pennsylvania%20Omitted%20Poison%20Data%20in%20Water%20Report%20-%20NYTimes.com&WT.js=Yes&WT.jv=1.7&WT.ct=unknown&WT.bs=994x649&WT.fi=No&WT.tv=1.0.7&WT.dl=0&WT.es=www.nytimes.com/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html&WT.z_cad=1&WT.z_fbc=0&WT.cg_n=U.S.&WT.z_rcgn=U.S.&WT.z_gpt=Article&WT.z_gpst=News&WT.cre=The%20New%20York%20Times&WT.z_nyts=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI&WT.z_nytd=&WT.z_rmid=007f010022166047bee9002b&WT.z_ref=nytimes.com&WT.rv=0&WT.z_hdl=Pennsylvania%20Omitted%20Poison%20Data%20in%20Water%20Report&WT.z_aid=nyta-100000001882561&WT.z_pud=20121102&WT.z_put=Archive&WT.z.gsg=Archive&WT.z_gat=1987-Present&WT.z_pua=free&WT.z_clmst=JON%20HURDLE&WT.z_puv=Normal&WT.z_pudr=1%20Day&WT.z_pyr=2012&WT.mc_ev=&WT.vt_f_tlv=&WT.vt_f_tlh=1351949969&WT.vt_f_d=&WT.vt_f_s=&WT.vt_f_a=&WT.vt_f=">>}, +{<<"content-length">>, <<"0">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAACAAAAmLwAAJEelVCHHpVQ9r0AAJIelVCSHpVQAQAAAHhHAACSHpVQhx6VUAAAAAA-; path=/; expires=Thu, 10-Dec-2015 10:27:34 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>} +] +}, +{ +undefined, +<<"880f28ff59b1288a1861860d19d0cba17ec2616d8cb9fb3967ab73c7af3e5fc2fabcff4fdfdeffef23bbb835db6ffbff7b5fbf7cfa6363d234deddf96f8cafbaff2cd3fb4bfecbaa1f3a65b5cab7f24e8a93ee8bd3141ef4697135377ba6446edf99b3f09479eaca3e7a3b35c79f8dcdf7f3a76a1cc18ef06ad3267f027f76c162d81d5ef9e8bbdbd00ace1bb76c7abe3dff73d7bdaddbbc07d39df25664faafad7799ddc0648d9d0de883ed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b37197ee32053168dff6a6b1a678184088f2b5761c8b48348f89ae46568e61a00fac2f7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbfce6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27f5a839bd9ab7b8b84842d695b05443c86aa6fcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs3719rcF5/JLq6ryuLbPLJXeyC9jZZv+I7SU4qR++R9DDoNb/ysNCSXuwJ979WKhzt9zeOAxNfu6nTWtMntzlCge0zMN6tn5CjIsSTK5oUfaLnJaYMq4VYwS5vxNRs6EHC1nNdLw29SQ2GQ1OzYMBqy0e3FBBr8pVvZLpT4SSw1y6vIpitypkpC3SUacb3M5M=; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:30 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas09-2">>}, +{<<"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:39:30 GMT">>} +] +}, +{ +undefined, +<<"88768586b19272ffd05f87497ca589d34d1f0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496dd6d5f4a01a5349fba820044a059b8cbf7190298b46fc64085aec1cd48ff86a8eb10649cbfc3c4d17f0f88ea52d6b0e83772ff7f0e87d78f5b0dae25df0f0d033638346c96df3dbf4a01b532db42820044a05fb810dc1054c5a37f52848fd24a8f5890a47e561cc581e71a003e94aec3771a4bc74087aaa21ca4498f57842507417f408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:39:30 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"684">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 19:11:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887f05842507417f6196dc34fd280654d27eea0801128166e32fdc640a62d1bf768dd06258741e54ad9326e61c5c1f7f07868776b5f4e0df0f28ff1086f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186f430c30d39fc430e5c05a38dec78ebe3b1fb010c3972168e37b763af8ec876430c38e7c70c37b763af8ec9fcb9c78430c30c30adf6a5634cf031f6a17cd66b0a88341eafa500cada4fdd61002d28166e32fdc640a62d1bff4003703370b7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3fca64022d31d45f87352398ac4c697f0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAACAAAAmLwAAJEelVCHHpVQ9r0AAJIelVCSHpVQAQAAAHhHAACSHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:39:30 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88cfc6d06c96d07abe9413aa436cca080112820dc10ae01e53168dffc9d20f0d03343330c65f86497ca582211f5891aec3771a4bf4a523f2b0e62c0e3ad3ecff6496dd6d5f4a01a5349fba820044a01eb826ae09953168dfc7cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 27 Aug 2012 21:22:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"430">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=67493">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:24:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d3cad46c96e4593e940b4a681d8a0801128172e05cb81714c5a37fcd5a839bd9ab0f0d8313af87cb5f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0db4e859736496c361be9403ea693f750400894106e32f5c138a62d1bfcc7f0e88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 14 Mar 2012 16:16:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2791">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=547136">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 21:38:26 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffd17b8b84842d695b05443c86aa6f6c96d07abe941094d444a820044a083704edc69e53168dff52848fd24a8fc60f0d830840cfcc5891aec3771a4bf4a523f2b0e62c0d32eb2cff6496dd6d5f4a01a5349fba820044a00371a7ae09953168dfd3c4408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 21:27:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1103">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=43733">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:48:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c44087aaa21ca4498f57842507417fc46c96dc34fd28069486d994100225041b817ee36253168dffc3cb0f0d830b2c83c0d15890aec3771a4bf4a523f2b0e62c0e8997c56496dd6d5f4a01a5349fba820044a01fb8d39700253168df6196dc34fd280654d27eea0801128166e32fdc640a62d1bfca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1330">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=72392">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:46:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c9c2c1c60f0d83089c0fc35f87352398ac4c697fc1c0bfcbc9cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1261">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=72392">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:46:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88cac3c9c2c7cf0f0d830b8f3bc4be5890aec3771a4bf4a523f2b0e62c0e3af8816496dd6d5f4a01a5349fba820044a01eb8c86e32053168dfc1cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1687">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=67920">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:31:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccc5cbc4c9d10f0d023734c6c05890aec3771a4bf4a523f2b0e62c0e3afbc16496dd6d5f4a01a5349fba820044a01eb8c8ae32153168dfc3cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"74">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=67981">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:32:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cec7cd6c96df697e940baa65b68504008940b97041b8c854c5a37fcc5a839bd9ab0f0d830804ffcac45890aec3771a4bf4a523f2b0e62c0e89b10b6496dd6d5f4a01a5349fba820044a01fb8d3d702253168dfc7d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 17 Jul 2012 16:21:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1029">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=72522">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:48:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2cbd1c1cfc00f0d82081ec65890aec3771a4bf4a523f2b0e62c0e81f6816496dd6d5f4a01a5349fba820044a01fb820dc6c0a62d1bfc9408721eaa8a4498f5788ea52d6b0e83772ffcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 17 Jul 2012 16:21:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"108">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=70940">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:50 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ffcf7b8b84842d695b05443c86aa6fcf52848fd24a8fc60f0d023733d2cc5890aec3771a4bf4a523f2b0e62c0e3af89b6496dd6d5f4a01a5349fba820044a01eb8c86e32da98b46fcfc3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"73">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=67925">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:31:35 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfc20f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff408aa924396a4ad416a9933f83081c7b4087aaa21ca4498f57842507417f5f87352398ac5754df5891a47e561cc581c034f001f4a5761bb8d25fcc0f0d8308821f6c96e4593e940b4a681d8a0801128172e05cb81714c5a37fc56496dc34fd281029a4fdd410022502cdc65fb8c814c5a37fc7408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"max-age=604800, private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1211">>}, +{<<"last-modified">>, <<"Wed, 14 Mar 2012 16:16:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 13:39:30 GMT">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c36196dc34fd280654d27eea0801128166e32fdc640a62d1bf5f87497ca589d34d1f0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf5a839bd9ab798624f6d5d4b27f5f86497ca582211fd34089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d033638346c96df3dbf4a01b532db42820044a05fb810dc1054c5a37fd25890a47e561cc581e71a003e94aec3771a4bd4cfca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"684">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 19:11:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ffd07b8b84842d695b05443c86aa6f6c96c361be940894d444a820044a08171a15c032a62d1bff52848fd24a8fc70f0d84081d75ffce5f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0e38f85d6496dd6d5f4a01a5349fba820044a01eb816ae34ea98b46fcf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 20:42:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10779">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=66917">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:14:47 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f92497ca589d34d1f6a1271d882a60e1bf0acf74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbce6196dc34fd280654d27eea0801128115c69bb8db2a62d1bf768340e52f588faed8e8313e94a47e561cc58197000f0f0d820b41408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f5583644177">>, +[ +{<<":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/html; charset=UTF-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 12:45:53 GMT">>}, +{<<"server">>, <<"safe">>}, +{<<"cache-control">>, <<"public, max-age=3600">>}, +{<<"content-length">>, <<"141">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>} +] +}, +{ +undefined, +<<"885f911d75d0620d263d4c1c88ad6b0a8acf520b0f0d830b2c836196dc34fd280654d27eea0801128166e32fdc640a62d1bf7f0a842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-type">>, <<"application/ocsp-response">>}, +{<<"content-length">>, <<"1330">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:30 GMT">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"8854012a5f87352398ac5754df6c96df3dbf4a044a435d8a0801128066e019b821298b46ffca4088f2b4b1ad2163b66fa3ee6bb9c5a93fbb6927fb0e0ec51388fc325a9cb8b5dd9a5cfe2c92f63c73e3f2eb3ce00f0d830be1735892aed8e8313e94a47e561cc5804dbad81f79df6496e4593e9413ca436cca08016540b571a15c65e53168df6196dc34fd280654d27eea0801128166e32fdc642a62d1bfd1">>, +[ +{<<":status">>, <<"200">>}, +{<<"access-control-allow-origin">>, <<"*">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"last-modified">>, <<"Thu, 12 Apr 2012 03:03:22 GMT">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"x-fb-debug">>, <<"viBL2OtZRmc+1Eqe26sXit4heGPBgfLwrdCHHhHx73Y=">>}, +{<<"content-length">>, <<"1916">>}, +{<<"cache-control">>, <<"public, max-age=25750987">>}, +{<<"expires">>, <<"Wed, 28 Aug 2013 14:42:38 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d01305f87352398ac4c697fc04003703370e9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7768586b19272ff0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee32153168dff6a487a466aa05fad9e645ea2a7f408af2b585ed695095926a4b92bf009c6544c0165b0bed3efba175c6d9007f4089f2b20b6772c8b47ebf8f8ca321ea5860038bf5b3cc8bd454ff7f0c88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:31 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=263 t=1351949971765301">>}, +{<<"x-served-by">>, <<"beacon-a006.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8852848fd24a8f5889a47e561cc5802f001f5f8b497ca58e83ee3412c3569fc80f139ffe47238fc612b6db2075c65d2bd2b61091971b0ca5686ebee32c81c6dc97f94084f2b0e62f01304085f2b10649cb044d4953534089f2b10649cab4e64a3f01304085f2b75b4d2787c90e56f627964f408df2b585ed695095a3193a96a93f87b505b2290691ff7f08921d66416cee62150b0c0012fd6cf322f5153f0f0d82085dc7">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=1800">>}, +{<<"content-type">>, <<"text/javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"etag">>, <<"\"ad69b1e55307637e8f511c3651fe4a796330656f\"">>}, +{<<"x-age">>, <<"0">>}, +{<<"x-cache">>, <<"MISS">>}, +{<<"x-cache-hits">>, <<"0">>}, +{<<"x-kuid">>, <<"IAJ5QtWI">>}, +{<<"x-request-backend">>, <<"user_data">>}, +{<<"x-served-by">>, <<"apiservices-a002.krxd.net">>}, +{<<"content-length">>, <<"117">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3cf5f89352398ac7958c43d5f0f28d0d3cf7adba0068dd785a67cddf9bfe3ddffcb29efe61be5c7ec1b6a0bed71fddbf92170fb7f2927343979eae39f266393a4c8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf5a839bd9ab798624f6d5d4b27f5f86497ca582211fcf4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d033638346c96df3dbf4a01b532db42820044a05fb810dc1054c5a37fd05890a47e561cc581e71a003e94aec3771a4b7b8b84842d695b05443c86aa6f4087aaa21ca4498f57842507417f408725453d44498f57842507417f0f0d830b40736c96c361be94032a436cca0801128266e361b816d4c5a37f0f138bfe5b74ab360091c66567f9d5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"content-type">>, <<"image/x-icon">>}, +{<<"set-cookie">>, <<"NYT-S=0MSC2NhKvY9wzDXrmvxADeHz0Rn194VZRXdeFz9JchiAJYOVLIKocjgsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"684">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 19:11:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-length">>, <<"1406">>}, +{<<"last-modified">>, <<"Fri, 03 Aug 2012 23:51:15 GMT">>}, +{<<"etag">>, <<"\"57e-501c63f3\"">>}, +{<<"accept-ranges">>, <<"bytes">>} +] +}, +{ +undefined, +<<"88768586b19272ff6c96dc34fd280654d27eea080112810dc65cb8dbea62d1bf0f138efe5902cd1247db1c6f4a52101fcf52848fd24a8fc44085f2b4e7427f888c406d4bf0080c874088ea52d6b0e83772ff8f49a929ed4c01103e94a47e607dd17f5f901d75d0620d263d4c741f71a0961ab4ff408721eaa8a4498f5788cc52d6b4341bb97f6196dc34fd280654d27eea0801128166e32fdc642a62d1bf55850b815145140f0d023438">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 11:36:59 GMT">>}, +{<<"etag">>, <<"\"30-4cd95ab8fecc0\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-host">>, <<"b205 D=2031">>}, +{<<"keep-alive">>, <<"timeout=120, max=972">>}, +{<<"content-type">>, <<"application/javascript">>}, +{<<"connection">>, <<"Keep-Alive">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"age">>, <<"161 ">>}, +{<<"content-length">>, <<"48">>} +] +}, +{ +undefined, +<<"88c6c9ca6c96dc34fd280654d27eea0801128166e320b8d34a62d1bfc5d10f0d836de7595f911d75d0620d263d4c795ba0fb8d04b0d5a7588faec3771a4bf4a523f2b0e62c0d05ff6496dc34fd280654d27eea0801128166e34e5c640a62d1bfc37f0588ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:30:44 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5873">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=419">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:46:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbcecf6c97df3dbf4a05b532db42820040a05db8cb3719794c5a37ffca5a839bd9ab0f0d03353833cf5f87352398ac5754df5891aec3771a4bf4a523f2b0e62c026c2d801f6496df697e94038a693f750400894086e321b811298b46ff6196dc34fd280654d27eea0801128166e32fdc644a62d1bfc4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 15 Jul 2010 17:33:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"583">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=251500">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:31:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:32 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d14087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a09b535112a08007540bf71b7ae36da98b46fd2c50f0d023739408725453d44498f57842507417f5f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c026c2d3eff6496df697e94038a693f750400894086e321b810a98b46ffc5cb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 25 Oct 2007 19:58:55 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"79">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=251499">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 11:31:11 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:32 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff0f13a1fe64034eb422c6fbad8022291b2b632908564b2cb23a42dc0b2d81a0ba169bfe7f6c96df697e94136a6e2d6a080112817ae341b8d014c5a37f52848fd24a8fd1c6cc6196dc34fd280654d27eea0801128166e32fdc642a62d1bf0f0d83642e3bcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"etag">>, <<"\"d04742eb975012ec5e5aecce3effd7ce:1350417145\"">>}, +{<<"last-modified">>, <<"Tue, 25 Sep 2012 18:41:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:31 GMT">>}, +{<<"content-length">>, <<"3167">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bcac50f0d0234337f11842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:32 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88c3cac96c96dc34fd28069486d994100225041b817ae05b53168dffc2d00f0d03323335c85f86497ca582211f5890aec3771a4bf4a523f2b0e62c0d8041176496dd6d5f4a01a5349fba820044a019b8cb97191298b46f6196dc34fd280654d27eea0801128166e32fdc680a62d1bf7f0488ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"235">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=50212">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:36:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c9d0cf6c96dc34fd28069486d994100225041b8115c138a62d1bffc85a839bd9ab0f0d826802cfc45890aec3771a4bf4a523f2b0e62c0e81f0036496dd6d5f4a01a5349fba820044a01fb820dc1014c5a37fc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:12:26 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"402">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70900">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:20 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cd4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee36ca98b46ffcec30f0d830840f7d35891aec3771a4bf4a523f2b0e62c0d36cbed7f6496dd6d5f4a01a5349fba820044a005702e5c0b4a62d1bfc8c7408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1108">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=45394">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 02:16:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d3c95f89352398ac7958c43d5f0f28cfd3cf7adba0068b7c75e5d371a8bf5c77ff2ca7bf986f971e2cb770de7e37fb5fdb2170fb7f29273439ad1e6eb250c3941f2715f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d36496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfca798624f6d5d4b27f5f87497ca589d34d1f7f0f842507417f4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d033638346c96df3dbf4a01b532db42820044a05fb810dc1054c5a37f52848fd24a8f5890a47e561cc581e71a003e94aec3771a4b7b83c67427cfca0f0d830b40736c96c361be94032a436cca0801128266e361b816d4c5a37f0f138bfe5b74ab360091c66567f9c1c9c8c7408aa924396a4ad416a9933f850b42642dff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"content-type">>, <<"image/x-icon">>}, +{<<"set-cookie">>, <<"NYT-S=0MuwkWjSilDpbDXrmvxADeHGJBFC9b9qDRdeFz9JchiAKuaKkdl/6loIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"684">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 19:11:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=86400, private">>}, +{<<"vary">>, <<"Host">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-length">>, <<"1406">>}, +{<<"last-modified">>, <<"Fri, 03 Aug 2012 23:51:15 GMT">>}, +{<<"etag">>, <<"\"57e-501c63f3\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"ntcoent-length">>, <<"142315">>} +] +}, +{ +undefined, +<<"88768586b19272ffd2d16c96dc34fd28069486d994100225041b8205c65a53168dffc45a839bd9ab0f0d831002efcf5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e34f81f6496dd6d5f4a01a5349fba820044a01db8d06e09f53168df6196dc34fd280654d27eea0801128166e32fdc680a62d1bf7f0d88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:20:34 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2017">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64909">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:41:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c54087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a01b532db42820044a0837040b8db8a62d1bfcdc60f0d830b8f3b408725453d44498f57842507417f5f86497ca582211f588eaec3771a4bf4a523f2b0e62c0d336496dc34fd280654d27eea0801128166e340b82654c5a37fc6c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 21:20:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1687">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=43">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccc4c36c96c361be940094d27eea0801128166e361b8db4a62d1bfd2cb0f0d837d9745c25f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0d85f75e0f6496c361be9403ea693f7504008940b57002b8d054c5a37fcac9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 13:51:54 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9372">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=519781">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 14:02:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0c86c96df3dbf4a002a693f7504008940bd71b7ee01953168df52848fd24a8f0f0d841042dbdfc7c25891aec3771a4bf4a523f2b0e62c0d361682df6496df3dbf4a01e5349fba820044a05fb8066e05b53168dfcecdcbd2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 18:59:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"21158">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=451415">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 19:03:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ffcdcc6c96c361be940094d27eea0801128015c6deb811298b46ffc25a839bd9ab0f0d837da103ccc75891aec3771a4bf4a523f2b0e62c0d3c07de176496c361be9403ea693f750400894033702e5c0094c5a37fd3d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 02:58:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9420">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=480982">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 03:16:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c2d1d06c96df3dbf4a09a5340fd2820044a05fb8c82e01953168dfc6c10f0d830882efcf5f911d75d0620d263d4c795ba0fb8d04b0d5a7588eaec3771a4bf4a523f2b0e62c0c876496dc34fd280654d27eea0801128166e340b810a98b46ff6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 24 May 2012 19:30:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1217">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=31">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:11 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801f5f87352398ac4c697fc16496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3f4085aec1cd48ff86a8eb10649cbf7689aa6355e5802eeaedbf0f0d023433c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ce4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a05d5340fd2820044a08171a66e05b53168df52848fd24a8fd00f0d03353836408725453d44498f57842507417f5f86497ca582211f588eaec3771a4bf4a523f2b0e62c0dbb6496dc34fd280654d27eea0801128166e340b8cbaa62d1bfcdcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 17 May 2012 20:43:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"586">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=57">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffc6c56c96df3dbf4a01b532db42820044a0837040b8d38a62d1bfc45a839bd9ab0f0d840bae89afd3588eaec3771a4bf4a523f2b0e62c0d356496dc34fd280654d27eea0801128166e340b82694c5a37fd2d1c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 21:20:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"17724">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=44">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:24 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c2cac96c96dc34fd28069486d994100225041b817ae05953168dffc8c10f0d03353836c7c65890aec3771a4bf4a523f2b0e62c0e81f6596496dd6d5f4a01a5349fba820044a01fb820dc6d953168df6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"586">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=70933">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32fdc134a62d1bf7691dd6d4b6ad3816e458d6dc5b3b96c61c5c30f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff408aa924396a4ad416a9933f83081c7bd25f87352398ac5754df5891a47e561cc581c034f001f4a5761bb8d25fca0f0d8308821f6c96e4593e940b4a681d8a0801128172e05cb81714c5a37fd26496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f7b8b84842d695b05443c86aa6fd35f87497ca589d34d1f0f28cfd3cf7adba0068a36f78eeddcbdf5d91dffcb29efe61be5c78aee1bc03afe317a2c85c3edfca49cd0e6b479bac9430e507c9c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:24 GMT">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"max-age=604800, private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1211">>}, +{<<"last-modified">>, <<"Wed, 14 Mar 2012 16:16:16 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MlRvbBBJvPrbDXrmvxADeHGBFC0o.wGyedeFz9JchiAKuaKkdl/6loIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88d34087aaa21ca4498f57842507417fcf52848fd24a8f0f0d03353933408725453d44498f57842507417f5f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e880e3d6496dd6d5f4a01a5349fba820044a01fb8d02e34f298b46fd1d0c85a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"593">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=72068">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:40:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ffc5ca6c96dc34fd28069486d994100225041b817ae05953168dffc5c00f0d03333830c4c35890aec3771a4bf4a523f2b0e62c0eb8013d6496dd6d5f4a01a5349fba820044a04171a72e34f298b46f6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"380">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=76028">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:46:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3cacf6c96dc34fd28069486d994100225041b817ee01b53168dffcac50f0d830b4cb7c95f911d75d0620d263d4c795ba0fb8d04b0d5a75891aec3771a4bf4a523f2b0e62c0e3adb8eff6496dd6d5f4a01a5349fba820044a01eb826ee34ea98b46fc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1435">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=67567">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:25:47 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7ced36c96c361be940094d27eea0801128105c033700fa98b46ffcec90f0d8371d033cd5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f09e176496dc34fd281029a4fdd410022500cdc643700253168dffc7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 10:03:09 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"6703">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568282">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:31:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbd27b8b84842d695b05443c86aa6f6c96e4593e94642a6a225410022502ddc65bb8d894c5a37f52848fd24a8fcf0f0d84081e7c5f408725453d44498f57842507417fc45891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bfcdcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 15:35:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10892">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d14087aaa21ca4498f57842507417f6c96dc34fd282754d444a820044a0017041b8d3ca62d1bffc30f0d837c027fc2c8c1c0cfcec55a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 27 Oct 2012 00:21:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9029">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ffc1c76c96d07abe9413ea6a225410022502e5c037700e298b46ffc6c00f0d84081b135fc5cb5891aec3771a4bf4a523f2b0e62c0db8f09f7b6496dc34fd281029a4fdd410022500cdc643702f298b46ff6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 16:05:06 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10524">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568298">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:31:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3c6cc6c96dc34fd28069486d994100225041b817ae05953168dffcbc50f0d83101a6fca5f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e840db56496dd6d5f4a01a5349fba820044a01fb8266e36d298b46fc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2045">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71054">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7cad0c1cec80f0d03343136cdc05890aec3771a4bf4a523f2b0e62c0e840db36496dd6d5f4a01a5349fba820044a01fb8266e36ca98b46fc5c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"416">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71053">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c9ccd26c96d07abe9413ea6a225410022502fdc03771b754c5a37fd1cb0f0d84642079af5f88352398ac74acb37fd0cfc7c6d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 19:05:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"31084">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cbce7b8b84842d695b05443c86aa6fc6d3cd0f0d826802d2c5c4c3c8c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"402">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=71054">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:23:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccf6c96c361be941014d03f4a08010a8172e320b811298b46ff52848fd24a8f0f0d837de13f408725453d44498f57842507417fc25891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bfcdccc3d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 20 May 2011 16:30:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9829">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d14087aaa21ca4498f57842507417fc46c96dc34fd28069486d994100225041b816ae34d298b46ffc35a839bd9ab0f0d03353236c35f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0d8041676497dd6d5f4a01a5349fba820044a019b8cb9719654c5a37ffd3d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:14:44 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"526">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=50213">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffc4ca6c96c361be940b4a681fa504008140b571a7ee05d53168dfc9c30f0d023637c8c25891aec3771a4bf4a523f2b0e62c020ba279ef6496df697e94038a693f75040089400ae003700f298b46ff6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:49:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"67">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=217288">>}, +{<<"expires">>, <<"Tue, 06 Nov 2012 02:01:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3c9cf6c96e4593e94105486bb1410020502fdc643702ea98b46ffcec80f0d03353037cdc75891aec3771a4bf4a523f2b0e62c0c81d79f6f6496e4593e9403aa693f7504008940337021b816d4c5a37fc2c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 21 Apr 2010 19:31:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"507">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=307895">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 03:11:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6ccd2c0d0ca0f0d830b6ebdc95891aec3771a4bf4a523f2b0e62c0cb6f361736496e4593e9403aa693f7504008940bb702d5c6dc53168dfc4c3d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 21 Apr 2010 19:31:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1578">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=358516">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 17:14:56 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c8ce7b8b84842d695b05443c86aa6f6c96e4593e94032a681d8a0801028215c6deb8c854c5a37f52848fd24a8fcf0f0d830be277408725453d44498f57842507417fcf5891aec3771a4bf4a523f2b0e62c0e002d32ff6496dc34fd281029a4fdd4100225022b8d337197d4c5a37fcac9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 03 Mar 2010 22:58:31 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1927">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=601439">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 12:43:39 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ce4087aaa21ca4498f57842507417f6c96d07abe9413ea6a225410022502fdc65fb82714c5a37fc30f0d84081d139fc25f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f34f0b6496dc34fd281029a4fdd410022500cdc65ab821298b46ffcfcec85a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 19:39:26 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"10726">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568482">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:34:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ffc4ca6c96df697e94132a6a225410022500ddc102e000a62d1bffc9c00f0d837d90b9c8c35891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bf6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 23 Oct 2012 05:20:00 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9316">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3c9cf6c96df3dbf4a09e52f948a08007140b57040b8d894c5a37fcec50f0d03313833cd5f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0cb4f85f736496e4593e9403aa693f7504008940b57197ee32e298b46fc3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 28 Dec 2006 14:20:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"183">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349196">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:39:36 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7cdd36c96d07abe9413ea6a225410022500d5c135700ca98b46ffd2c90f0d840b2eb4f7d1ccc6c5c4c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 04:24:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"13748">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8ce7b8b84842d695b05443c86aa6f6c96dd6d5f4a09e535112a0801128105c681700253168dff52848fd24a8fcc0f0d8379e0bb408725453d44498f57842507417fd0cac9c8c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sun, 28 Oct 2012 10:40:02 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8817">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cc6c96c361be940b4a681d8a0800794133700cdc680a62d1bf0f138ffe42fcab34d3ce4832b601c6007f3fc0c24085f2b4e7427f888c40654bf005d75e4088ea52d6b0e83772ff8f49a929ed4c01103e94a47e607df77f5f901d75d0620d263d4c741f71a0961ab4ff7f0c88cc52d6b4341bb97fcd558669951451453f0f0d03343135">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Fri, 14 Mar 2008 23:03:40 GMT">>}, +{<<"etag">>, <<"\"19f-4486dae50ab00\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-host">>, <<"b203 D=1778">>}, +{<<"keep-alive">>, <<"timeout=120, max=997">>}, +{<<"content-type">>, <<"application/javascript">>}, +{<<"connection">>, <<"Keep-Alive">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"age">>, <<"43 ">>}, +{<<"content-length">>, <<"415">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf5f911d75d0620d263d4c795ba0fb8d04b0d5a7d06496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4085aec1cd48ff86a8eb10649cbf7688aa6355e580ae05c10f28ff77abd256a6071b75b6eeb80c37d9bf0de6f0b820b8085dbd82fb6d38db77fe0b01970b2db4cb2f0000f84c065c20f8ef01970fc51050b89b5c4f004d01e0beeaeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60fc55019717c4d019707c16c80cb8596c2fb4fbedb9f1dec8285da5c2b81702e0f8aec8285da5d95c0b81707c77ae032e0f89a58285c205c4f004d01e0beeaeb057582bac15d60aeb057582bac15d60aeb07ed42f9acd615106f9edfa50025b49fbac2005d502cdc65fb8d014c5a37fda958d33c0c7da921e919aa817abd24d4950b90f4ff0f0d82085ad2">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=65755B60FD3DAC5F62160A7CED54655D&e=i.1354338000&t=i.10&v=i.1&l=l.25.2802408197.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.1.0.0.0&pr=l.4.3.0.0.0&vp=i.0&gf=l.10.2802408197.-1.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:40 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"114">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fce6c96d07abe9413ea6a225410022502fdc13d704da98b46ffcd5a839bd9ab0f0d8379b75ecd5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bf6196dc34fd280654d27eea0801128166e32fdc680a62d1bf7f0d88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 19:28:25 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8578">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6c57b8b84842d695b05443c86aa6f6c96d07abe9413ea6a225410022502f5c6d9b82794c5a37f52848fd24a8fc60f0d846801719fc5c4c3c2c1408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 29 Oct 2012 18:53:28 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"40163">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cac9c16c96dc34fd282754d444a820044a00171b7ee002a62d1bffc0c80f0d84642169cfbfc75891aec3771a4bf4a523f2b0e62c0dbc27db7b6496dc34fd281029a4fdd410022500edc65bb8cbca62d1bfc6c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 27 Oct 2012 00:59:01 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"31146">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=582958">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 07:35:38 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cdcc6c96d07abe941094d444a820044a05db826ae36d298b46ffc30f0d840b8d019fc2cac9c8c7c6c5cb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 22 Oct 2012 17:24:54 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"16403">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88cecdc56c96dc34fd282754d444a820044a05eb8d3371a0298b46ffc4cc0f0d84085c741fc3cb5891aec3771a4bf4a523f2b0e62c0c81e036df6496e4593e9403aa693f750400894033702cdc6db53168dfcac9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 27 Oct 2012 18:43:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11670">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=308055">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 03:13:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d1d0c86c96e4593e9413ca435d8a080102816ae32e5c03ca62d1bfc7cf0f0d03393837c65f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0db8f3816b6496dc34fd281029a4fdd410022500cdc65cb8cb4a62d1bfcecd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 28 Apr 2010 14:36:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"987">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=568614">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fcec3cc5a839bd9ab0f0d83136cb3ccc3c2c1d1d0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 28 Apr 2010 14:36:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2533">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=568614">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c0bfcf6c96e4593e940bea6e2d6a0801128172e08571b694c5a37fcebf0f0d840b4d3aff5f88352398ac74acb37fc4c36196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ffd0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 19 Sep 2012 16:22:54 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14479">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568614">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c4c37b8b84842d695b05443c86aa6f6c96d07abe9403ea435d8a080112820dc68171a714c5a37f52848fd24a8fc50f0d840b420b7f408725453d44498f57842507417fc4cac9c3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 09 Apr 2012 21:40:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14215">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568614">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c76c96df3dbf4a042a5f29141000f2820dc64571b654c5a37fc00f0d8313ef07bfcccbcac4c3c2c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 11 Dec 2008 21:32:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"2981">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=568614">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c9c8c26c96df3dbf4a002a693f7504008940bb700fdc03aa62d1bfc1c80f0d840b20681fc0c65890aec3771a4bf4a523f2b0e62c0d3226856496dd6d5f4a01a5349fba820044a00371a05c1094c5a37fc7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 17:09:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"13040">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=43242">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:40:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbc56c96df697e9413ca435d8a08007d40bd702f5c1094c5a37fc4cb0f0d03343431c3d0c0bfc8c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 28 Apr 2009 18:18:22 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"441">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=43242">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 01:40:22 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cdccc66c96e4593e94642a6a2254100225041b8d06e01b53168dffc5cc0f0d840b4cba2fca5890aec3771a4bf4a523f2b0e62c0db4f81e6497dd6d5f4a01a5349fba820044a01ab8db571a794c5a37ffcbcac6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 21:41:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14372">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=54908">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:54:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d0cfc96c96e4593e94005486bb141000fa8266e09eb81694c5a37fc8cf0f0d830b206fc75f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0c81f75c6496dc34fd280654d27eea0801128215c0b771b714c5a37fcfce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 01 Apr 2009 23:28:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1305">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=30976">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 22:15:56 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fcf6c96df697e941014d03b1410022502e5c69cb81694c5a37fce5a839bd9ab0f0d840b8e341fce5f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0eb826c16496dd6d5f4a01a5349fba820044a04171b05c640a62d1bf6196dc34fd280654d27eea0801128166e32fdc680a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 20 Mar 2012 16:46:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"16641">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=76250">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:50:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c352848fd24a8f588eaed8e8313e94a47e561cc581c0035f95497ca58e83ee3412c3569fb24e3b1054c16a6559efc26c96dc34fd280654d27eea0801128166e322b8d094c5a37f768dc17b729fd513d8c3576eb9fdff408442469b51851000a6acdf7b8b84842d695b05443c86aa6f4085f2b10649cb034849540f0d837c2e03">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"public, max-age=600">>}, +{<<"content-type">>, <<"text/javascript;charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:40 GMT">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:32:42 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BB6)">>}, +{<<"status">>, <<"200 OK">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"9160">>} +] +}, +{ +undefined, +<<"88cecdbf6c96dc34fd28069486d994100225041b817ee36ca98b46ffc6cc0f0d023634d25890aec3771a4bf4a523f2b0e62c0e81b0bd6496dd6d5f4a01a5349fba820044a01fb816ae36fa98b46f6196dc34fd280654d27eea0801128166e32fdc682a62d1bfca408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"64">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=70518">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:14:59 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d3d2c46c96dc34fd28069486d994100225041b816ee09f53168dffcbd10f0d83101f17bf5f87497ca589d34d1f5890aec3771a4bf4a523f2b0e62c0f38d0016496dd6d5f4a01a5349fba820044a059b8cbf71a0a98b46fc3cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:15:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2092">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private, max-age=86400">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:39:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fca6c96c361be94132a6e2d6a08010a817ee04571b1298b46ffd15a839bd9ab0f0d830b4db3c65f87352398ac5754df588eaec3771a4bf4a523f2b0e62c0d3b6496dc34fd280654d27eea0801128166e340b82794c5a37fca408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 23 Sep 2011 19:12:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1453">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=47">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:40:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5c4d0ce52848fd24a8fc30f0d82085f5f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0e3606456497dd6d5f4a01a5349fba820044a01db8d33719654c5a37ffcfc2ce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"119">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=65032">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:43:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c9c87b8b84842d695b05443c86aa6fd3c2c70f0d83089c0fcfc1c0bfd0c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1261">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=65032">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:43:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cac9bed3c2c70f0d03313838cfc15890aec3771a4bf4a523f2b0e62c0e81b7436496dd6d5f4a01a5349fba820044a01fb816ee36253168dfd2c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"188">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=70571">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:15:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccb6c96dc34fd28069486d994100225041b816ae34da98b46ffc50f0d023734d2c45890aec3771a4bf4a523f2b0e62c0e81f65c6496dd6d5f4a01a5349fba820044a01fb820dc6dd53168df6196dc34fd280654d27eea0801128166e32fdc682a62d1bfc9c4cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:14:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"74">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=70936">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:21:57 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d0cfc46c96df697e9413ca436cca080112820dc0bb71b714c5a37fc9ce0f0d03383830408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e34fba16496dd6d5f4a01a5349fba820044a01db8d0ae32253168dfc3ce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 28 Aug 2012 21:17:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"880">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64971">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fcb6c96dc34fd28069486d994100225041b817ee01b53168dffd05a839bd9ab0f0d83682e35c45890aec3771a4bf4a523f2b0e62c0eb816836496dd6d5f4a01a5349fba820044a04171a7ae34253168dfc9408721eaa8a4498f5788ea52d6b0e83772ffc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"4164">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=76141">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:48:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c4c3d06c96dc34fd28069486d994100225041b817ee01953168dff52848fd24a8fc30f0d821320cac9c8c7ccc0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"230">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64971">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6c5d2c4bec30f0d8313406bcac9c8c7ccc0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2404">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64971">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6c5bfbe0f0d836c2cb9cac95891aec3771a4bf4a523f2b0e62c0e34f38eff6496dd6d5f4a01a5349fba820044a01db8d02e34f298b46fcec27b8b84842d695b05443c86aa6fc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"5136">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64867">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:40:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c9c8bec7c1c60f0d8413e165dfcdcc5891aec3771a4bf4a523f2b0e62c0e34fb6d7f6496dd6d5f4a01a5349fba820044a01db8d0ae05b53168dfd1c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"29137">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64954">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbcac0c9c3c80f0d836dd6c5cfcecdccd1c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5752">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64971">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cbcac06c96dc34fd28069486d994100225041b817ae044a62d1bffc4c90f0d033732335f86497ca582211fc9c8d3c7d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"723">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=76141">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:48:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d3cd0f28cb873ef8b25f80007650040069c185c0c71b6f3a500190fda983cd66b0a88375b57d280654d27eea08016540b37197ee32053168dff6a6b1a67818fb52f9e919aa817abd24d4950b90f4fdff408aa924396a4ad416a9933f83081c7bcdbf5885aec3771a4bcc0f0d033538366c96df3dbf4a01c52f948a080075408ae05bb8d32a62d1bfc86496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f7b83c67427408725453d44498f57842507417f5f87497ca589d34d1f0f28cfd3cf7adba0068a36f78eeddcbdf5d91dffcb29efe61be5c78aee1bc03afe317a2c85c3edfca49cd0e6b479bac9430e507c9c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf798624f6d5d4b27f0f1395fe42d4af3ec85671f1acd3407e40b8471f7c80fe7f408a224a7aaa4ad416a9933f830b8f837f13842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"ALT_ID=007f010046a161bb587e0031; Expires=Sun, 03 Nov 2013 13:39:30 GMT; Path=/; Domain=.nytimes.com;">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"586">>}, +{<<"last-modified">>, <<"Thu, 06 Dec 2007 12:15:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"vary">>, <<"Host">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MlRvbBBJvPrbDXrmvxADeHGBFC0o.wGyedeFz9JchiAKuaKkdl/6loIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"etag">>, <<"\"14f8931-69a-4409d16c699c0\"">>}, +{<<"cteonnt-length">>, <<"1690">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fd06c96c361be940b4a681fa504008140b571b05c0b6a62d1bfd45a839bd9ab0f0d820ba0c85f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0cb4f3ae3d6496e4593e9403aa693f7504008940b571915c13ea62d1bf6196dc34fd280654d27eea0801128166e32fdc682a62d1bf7f0788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:50:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"170">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348768">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:32:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c6c57b8b84842d695b05443c86aa6fc552848fd24a8fc50f0d82081ccfc4c3c2c1c0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:50:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"106">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348768">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:32:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c7c6be0f0d83642167cfc4c3c2c1c0bfc5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 14 May 2010 14:50:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"3113">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348768">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:32:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c8c7bf6c96dc34fd28069486d994100225041b817ae044a62d1bffbfc60f0d83132067d05f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e34fba16496dd6d5f4a01a5349fba820044a01db8d0ae32253168dfc5c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2303">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=64971">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbc36c96dc34fd28069486d994100225041b817ee01953168dffc3ca0f0d840b8065cfd45f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e34fba26496dd6d5f4a01a5349fba820044a01db8d0ae32ca98b46fc9c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"16036">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64972">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0cfc76c96df697e94642a436cca0801028015c106e36e298b46ffc7ce0f0d03373833408725453d44498f57842507417fc65890aec3771a4bf4a523f2b0e62c0e34fba06496dd6d5f4a01a5349fba820044a01db8d0ae32153168dfcdcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 31 Aug 2010 02:21:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"783">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=64970">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417fcd6c96d07abe940baa651d4a08010a800dc13d71a714c5a37fcd5a839bd9ab0f0d830bec83c4c85890aec3771a4bf4a523f2b0e62c0f38d0016496dd6d5f4a01a5349fba820044a059b8cbf71a0a98b46fd3d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 17 Jan 2011 01:28:46 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1930">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=86400">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:39:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887684aa6355e76196dc34fd280654d27eea0801128166e32fdc682a62d1bf5f87352398ac4c697f798624f6d5d4b27f408721eaa8a4498f5788ea52d6b0e83772ff4088ea52d6b0e83772ff8749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf4003703370d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 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\"">>} +] +}, +{ +undefined, +<<"88c6cd6c96e4593e94134a65b6a504003ea05fb8c86e36153168df0f1394fe42d81c2124582f05669c903209e8c123a407f352848fd24a8f408a224a7aaa4ad416a9933f03333835cf5f87497ca589d34d1f5885aec3771a4bcf0f0d03323333">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Wed, 24 Jun 2009 19:31:51 GMT">>}, +{<<"etag">>, <<"\"1506ccd-181-46d1d28b0d7c0\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cteonnt-length">>, <<"385">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"233">>} +] +}, +{ +undefined, +<<"887f04fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f92497ca589d34d1f6a1271d882a60e1bf0acf74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9abcf768320e52fc30f0d830bceb7408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f5583644177">>, +[ +{<<":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/html; charset=UTF-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1875">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd28069486d994100225041b817ee01b53168dffcdc60f0d830b2167408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75891aec3771a4bf4a523f2b0e62c0e34fbad7f6496dd6d5f4a01a5349fba820044a01db8d0ae32da98b46f6196dc34fd280654d27eea0801128166e32fdc682a62d1bf408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1313">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64974">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:35 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7c6c56c96dc34fd28069486d994100225041b817ee01a53168dff52848fd24a8fce0f0d03393536c45890aec3771a4bf4a523f2b0e62c0e36069f6496dd6d5f4a01a5349fba820044a01db8d3371b0298b46fc3c2c7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"956">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=65049">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:43:50 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cbcac96c96df697e94134a435d8a080112816ee320b81654c5a37fc1d10f0d8375d087c85f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f381176496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bfc7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 24 Apr 2012 15:30:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"7711">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfcecd6c97df3dbf4a099532db52820042a05fb8cbb7196d4c5a37ffc55a839bd9ab0f0d83784c8bcdc2c1c0c9c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 23 Jun 2011 19:37:35 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8232">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d1d06c96df697e9413ca612c6a0801128205c002e34ea98b46ffc70f0d83780f0bcec3c2c1cac9d0bf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Tue, 28 Feb 2012 20:00:47 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"8082">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d2d1d06c96df3dbf4a099532db52820042a081700ddc680a62d1bfc8c00f0d83780d3bcfc4c3c2cbca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 23 Jun 2011 20:05:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8047">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96c361be940b8a681d8a080112816ee01ab8cb8a62d1bfccc40f0d83784fb7408725453d44498f57842507417fc9c8c7d0cf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 16 Mar 2012 15:04:36 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8295">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"880f28ff59b1288a1861860d19d0cbbeb4f7d185be877f9fe74dd56b773dedf8f8bfdbc783fe4d473d356e98ff9cdcbb347e7815892fb59b0e9d1cf1f6d1a707af251591e9d1bc7d9afdce46dad1e267af6ecbe7be9aa7607d3aedbbab2cb835def1d2ccf493387560ee4e347191cfdcec67c77406f27d38e59b95f8cf668c77b84bfa9fcd7dc9770d1b74f777b6fbda3fdf8a9dd3cdacfc0d5e1ff7c7fd96bc34ddaeac90d9674bfaf57da97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e32fdc682a62d1bfed4d634cf031f4088f2b5761c8b48348f89ae46568e61a022585f4003703370e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27fcdc86196dc34fd280654d27eea0801128166e32fdc682a62d1bf">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs37yNvMF5jo9YXjSnP7LCTHV9qwwoXglYNnSgoXY6BgbxUe/dD4KFNMYHqMNEyxe2rbNMTaq4ZLc54Mwg8CSJxvNnh/ajkRBOJfEPCwjrLmcL1OEvcVlVd6ZL/LHB0ixoNHfgWDborMHCUfZtXPvcBFlRNv7qTCM+wn7NY4LUipF+V+epFmBpnIArrjDPO; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:41 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas12-2">>}, +{<<"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:39:41 GMT">>} +] +}, +{ +undefined, +<<"88cbcac96c96df697e9413ea681d8a08010a820dc0b97190298b46ff52848fd24a8fd00f0d8379975a5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8f381176496dc34fd281029a4fdd410022500cdc65cb8cb2a62d1bfc3408721eaa8a4498f5788ea52d6b0e83772ffcd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:16:30 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8374">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"48033330337f00842507417fc6768dd06258741e54ad9326e61c5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f1fff9e0462422067a9fb3c00000000f1a5a66ec9194f10a57c8c48442f31a5ff24222c2c86b0a44c0108be24221344f003e242213477801f1211120d300596c2fb4fbef05d65bf8908841ab83c78f0bd5e926a4a85c87a7e24222db0d03158e62a18410c5a88560d5485f2bce9a68f89088b0b2c13a535dc618f1e3c2f57a49a92a1721e9604008980858032c5a862b2d5523d51dc75186b1e932525916ace641ea5a41a46b1aa5bc0d25b16b0b59ec4af3a69a15670cf5aa2722b2007c72deb90f14b005902e113ebb8f2eeb2b09c780103ef09a5d9009b7dc6dcf8e5bd7ee989069200b205c227d771e5dd656138f00207de134bb20136fb8db8b8596c2fb4fbedbee081f1cb7ae9f702cd7c72debc73c0ffc72debdb4405a96e1bbe396f5c924026be396f5d1640165c73cbae3df1cb7afd0f0732a3e396f5d2683710c5a8855440d25f0854405951037ce55440d25f0a881ccf6755440de6a4a8f8e5bd7e88839951f1cb7afd3bc015ddf8e5bd72260b6aeb51fc55f1cb7af1a207df6bcb8d3ff1cb7af29a0d27f8e5bd74f7802b81777e396f5e4a2007c72deb951078f1e17abd24d4950b90f4b158e62a18410c5a88560d5485f2bce9a68f8e5bd724d15506e218b510bf1cb7afee2b0935506e218b510bf1cb7afee29ab4c1b8a4498f52a2061b0f527e396f5fdc557a4a20068a36f78eeddcbdf5d91dffcb29efe61be5c78aee1bc03afe317a2c85c3edfca49cd0e6b479bac9430e507c9c57e75796aceb8727c72debfb8aaf49920f8e5bd7f715949a48000765004001082e38069d8ca57c00147f1cb7afee2b0b2c157a49a92a1721e9f8e5bd7b3bc00f8e5bd7a49117bc1f1cb7afdd314b1268ef07c72debf74c52c49a27802cb617da7df783f1cb7afdd314b14907c72debf74c52c4883e396f5fba629621c1f1cb7afdd314b07f0f0d01300f28ff1c86f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186fc30c30d39fc430e5c05a38dec78ebe3b1fb010c3972168e37b763af8ecff7602187280b471bd263af8ec876430c38e7c70c37a4c75f1d93f9738f08618618615bed4ac699e063ed42f9acd615106f9edfa50205af948b08016d4082e09db8cb4a62d1bf7f10b7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3f">>, +[ +{<<":status">>, <<"303">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"location">>, <<"/dcsaon9rw0000008ifmgqtaeo_2f9c/dcs.gif?dcsredirect=112&dcstlh=0&dcstlv=0&dcsdat=1351949981735&dcssip=www.nytimes.com&dcsuri=/pages/science/index.html&dcsref=http://www.nytimes.com/2012/11/03/us/pennsylvania-omitted-poison-data-in-water-report.html%3Fhp%26_r=0&WT.co_f=130.129.68.73-2680109824.30259656&WT.vt_sid=130.129.68.73-2680109824.30259656.1351949959620&WT.tz=-4&WT.bh=9&WT.ul=en-US&WT.cd=24&WT.sr=1366x768&WT.jo=Yes&WT.ti=Science%20News%20-%20The%20New%20York%20Times&WT.js=Yes&WT.jv=1.7&WT.ct=unknown&WT.bs=994x649&WT.fi=No&WT.tv=1.0.7&WT.dl=0&WT.es=www.nytimes.com/pages/science/index.html&WT.cg_n=Science&WT.z_rcgn=Science&WT.z_gpt=Section%20Front&WT.z_nyts=0MlRvbBBJvPrbDXrmvxADeHGBFC0o.wGyedeFz9JchiAKuaKkdl/6loIV.Ynx4rkFI&WT.z_nytd=&WT.z_rmid=007f010022166047bee9002b&WT.z_ref=nytimes.com&WT.rv=0&WT.mc_ev=&WT.vt_f_tlv=&WT.vt_f_tlh=1351949981&WT.vt_f_d=&WT.vt_f_s=&WT.vt_f_a=&WT.vt_f=">>}, +{<<"content-length">>, <<"0">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAADAAAAmLwAAJEelVCHHpVQ9r0AAJIelVCSHpVQ+r0AAJ0elVCdHpVQAQAAAHhHAACdHpVQhx6VUAAAAAA-; path=/; expires=Thu, 10-Dec-2015 10:27:34 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a01e53716b504008540b771b15c65e53168dfcb5a839bd9ab0f0d83784eb5408725453d44498f57842507417fcccbcacfc9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 08 Sep 2011 15:52:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8274">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3c2c16c96df697e9413ea681d8a08010a820dc106e36ea98b46ffcec00f0d8378000fbfcdcccbd0ca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:21:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8001">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4c36c96d07abe94034a435d8a08010a8176e34d5c0b6a62d1bfcf0f0d83799083c0cecdccd1cbc3c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Mon, 04 Apr 2011 17:44:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"8310">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568612">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c5c4c36c96df697e940b2a681d8a080112816ee34f5c69b53168dfd0c20f0d83782e0bc1cf5891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb4a62d1bf6196dc34fd280654d27eea0801128166e32fdc682a62d1bfcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 13 Mar 2012 15:48:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8162">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c9c8c76c96df697e9413ea681d8a08010a817ee09ab81794c5a37f52848fd24a8fc70f0d8379a083c65f88352398ac74acb37fc3c2c1d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 19:24:18 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8410">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbca6c96df697e9413ea681d8a08010a817ee09cb82754c5a37fc0c90f0d83784db3bfc4c3c2d3c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 19:26:27 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8253">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cdcccb6c96e4593e94640a681d8a08010a8205c102e36153168dffc1ca0f0d83799745c9c0c5c4c37f1388ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 30 Mar 2011 20:20:51 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8372">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfcecd6c96df697e9413ea681d8a08010a817ee09bb820a98b46ffc3cc0f0d83780c83cbc2c7c6c5bf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 19:25:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8030">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5d06c96e4593e94134a65b6a504003ea05fb8c86e36153168df0f1394fe42d81c2124582f05669c903209e8c123a407f3c4408a224a7aaa4ad416a9933f03333835d15f87497ca589d34d1f5885aec3771a4bd00f0d023734408aa924396a4ad416a9933f023632">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Wed, 24 Jun 2009 19:31:51 GMT">>}, +{<<"etag">>, <<"\"1506ccd-181-46d1d28b0d7c0\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cteonnt-length">>, <<"385">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"74">>}, +{<<"ntcoent-length">>, <<"62">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f6c96c361be9403ea681d8a080112817ae341b81694c5a37fcb0f0d83780fb3d3cacfcecdc77b8b84842d695b05443c86aa6f5a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 09 Mar 2012 18:41:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"8093">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c2c1bf6c96df697e9413ea681d8a08010a820dc643700253168dffcebf0f0d83780cb9408725453d44498f57842507417fced3d2d1cb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:31:02 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8036">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4c3c16c96e4593e940b4a681d8a080112817ee342b80694c5a37fd0c10f0d8378226bbfcf5891aec3771a4bf4a523f2b0e62c0db8f381676496dc34fd281029a4fdd410022500cdc65cb8cb4a62d1bf6196dc34fd280654d27eea0801128166e32fdc682a62d1bfcf">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 14 Mar 2012 19:42:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8124">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c8c7c56c96df697e9413ea681d8a08010a820dc659b8d36a62d1bf52848fd24a8fc60f0d837840775f88352398ac74acb37fc3c2c1d2c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:33:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8207">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cbcac86c96df697e9413ea681d8a08010a820dc65cb82654c5a37fc0c80f0d83799719c6bfc4c3c2d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:36:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8363">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cccbc96c96df697e9413ea681d8a08010a820dc68371a694c5a37fc1c90f0d83782d87c7c0c5c4c3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 29 Mar 2011 21:41:44 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8151">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568613">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:36:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887e842507417fc5768dd06258741e54ad9326e61c5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f28ff1d86f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186fc30c30d39fc430e5c05a38dec78ebe3b1fb010c3972168e37b763af8ecff7602187280b471bd263af8ec876430c38e7c70c37a4c75f1d93f9738f08618618615bed4ac699e063ed42f9acd61510683d5f4a0195b49fbac2005a502cdc65fb8d054c5a37ff4003703370b7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3f4085aec1cd48ff86a8eb10649cbf64022d315886a8eb10649cbf5f87352398ac4c697f0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAADAAAAmLwAAJEelVCHHpVQ9r0AAJIelVCSHpVQ+r0AAJ0elVCdHpVQAQAAAHhHAACdHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:39:41 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88768586b19272ff4087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96e4593e940baa681d8a0801028172e36e5c644a62d1bfce5a839bd9ab0f0d023230408725453d44498f57842507417f5f87497ca589d34d1f5890aec3771a4bf4a523f2b0e62c0e34fb216496dd6d5f4a01a5349fba820044a01db8d06e36253168df6196dc34fd280654d27eea0801128166e32fdc682a62d1bfd0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 17 Mar 2010 16:56:32 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"20">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private, max-age=64931">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:41:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d4588aa47e561cc581c034f001c9bf6496dc34fd281029a4fdd410022502cdc65fb8d054c5a37f6c96df697e94642a65b68504008941337002b8dbaa62d1bf768cc17b729fd513d8c3577087fb4085f2b10649cb034849540f0d023335">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=604800">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 13:39:41 GMT">>}, +{<<"last-modified">>, <<"Tue, 31 Jul 2012 23:02:57 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BF1)">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"35">>} +] +}, +{ +undefined, +<<"88c852848fd24a8f5890aed8e8313e94a47e561cc581c034f0015f90497ca582211f649c7620a982d4cab3dfc66c96dd6d5f4a09e535112a080112806ae085700053168dff768dc17b729fd513d8c3576eb7fdff408442469b51851000a6acdfd0c40f0d850b2e3a277f">>, +[ +{<<":status">>, <<"200">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"public, max-age=604800">>}, +{<<"content-type">>, <<"text/css;charset=utf-8">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:41 GMT">>}, +{<<"last-modified">>, <<"Sun, 28 Oct 2012 04:22:00 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BB5)">>}, +{<<"status">>, <<"200 OK">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"136727">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130d46196dc34fd280654d27eea0801128166e32fdc69953168df4003703370e9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7768586b19272ff0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee34ca98b46ffb5243d2335502fd6cf322f5153f408af2b585ed695095926a4b92bf009a6d44c0165b0bed3efbccb8013efb9f4089f2b20b6772c8b47ebf8f8ca321ea5860038bf5b3cc8bd454ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:43 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:43 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=245 t=1351949983602996">>}, +{<<"x-served-by">>, <<"beacon-a006.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bc45f87352398ac4c697f0f0d0234337f01842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:43 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88c44087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df697e94105486d994100225040b8072e004a62d1bffd05a839bd9ab0f0d830baf03408725453d44498f57842507417f5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e880d3d6496dd6d5f4a01a5349fba820044a01fb8d02e32ca98b46f6196dc34fd280654d27eea0801128166e32fdc69b53168dfca">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 21 Aug 2012 20:06:02 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1780">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=72048">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:40:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cdc6c56c96dc34fd28069486d994100225041b817ee01953168dff52848fd24a8fc50f0d826c21c4c35890aec3771a4bf4a523f2b0e62c0e880ebb6496dd6d5f4a01a5349fba820044a01fb8d06e004a62d1bfc2ce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"511">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=72077">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:41:02 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d1ca6c96df697e94640a6a225410022502e5c13f71a794c5a37fc10f0d83700007c75f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0dba175c676496dc34fd281029a4fdd410022500d5c13f700f298b46ffc6d2cdcb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Tue, 30 Oct 2012 16:29:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"6000">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571763">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:29:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88768586b19272ffcfce6c96df697e94640a6a225410022502e5c139704fa98b46ffc6cd0f0d8371a6daccc2c1c0c87f1288ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 30 Oct 2012 16:26:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"6454">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571763">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:29:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c0c95f87497ca589d34d1fd34089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d033135366496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf0f28cfd3cf7adba00681af99fc1caeaf2519effe594f7f30df2e3bebb07dfd5bdc0d4f485c3edfca49cd0e4a72f5d5e4564de7da38afceaf2d59d70e4fb52b1a67818fb5243d2335502f57a49a92a1721e9f7b83c67427bfc0c1408aa924396a4ad416a9933f8471a75c6f5a839bd9ab798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0Ma.K9EWB.dlLDXrmvxADeHD./oTk5S0O8deFz9JchiAImJkOx2rgxzsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"vary">>, <<"Host">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"ntcoent-length">>, <<"64765">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88c94087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df697e94640a6a225410022502edc00ae36f298b46ffd3c20f0d8379c6d9408725453d44498f57842507417fd0cfce6196dc34fd280654d27eea0801128166e32fdc69b53168dfcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 30 Oct 2012 17:02:58 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8653">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571763">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:29:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cec2c16c96df3dbf4a002a693f750400894102e36d5c13ea62d1bf52848fd24a8fc60f0d84105975ff5f911d75d0620d263d4c795ba0fb8d04b0d5a75890aec3771a4bf4a523f2b0e62c0e85d69f6497dd6d5f4a01a5349fba820044a01fb8cb7719694c5a37ffc3d1c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:54:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"21379">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=71749">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:35:34 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d3c7c66c96e4593e94642a6a225410022502d5c69db820a98b46ffc2ca0f0d840b6d36e7c55f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0dba175c676496dc34fd281029a4fdd410022500d5c13f700f298b46ffc7408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 14:47:21 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15456">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571763">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:29:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffcdcc6c96e4593e94642a6a225410022502d5c13f71b7d4c5a37fc8d00f0d8469f75a77cbc3c2c1cac0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 14:29:59 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"49747">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571763">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:29:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88bfcecd6c96c361be940894d444a820044a081702ddc6df53168dffc9d10f0d83642e3dcc5f87352398ac4c697f5890aec3771a4bf4a523f2b0e62c0e882d396496dd6d5f4a01a5349fba820044a01fb8d0ae044a62d1bf6196dc34fd280654d27eea0801128166e32fdc69c53168dfc5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 20:15:59 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3168">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=72146">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:42:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c44087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96df3dbf4a05a532db52820044a081702d5c69f53168dfd05a839bd9ab0f0d84081b69df408725453d44498f57842507417fcd5891aec3771a4bf4a523f2b0e62c0d3ef3adff6496dd6d5f4a01a5349fba820044a019b8c86e002a62d1bfc5cc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 14 Jun 2012 20:14:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10547">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=49875">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:31:01 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801fc9c66496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3f4085aec1cd48ff86a8eb10649cbf7689aa6355e5802eeaedbf0f0d023433d1">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"48033330335885aec3771a4b6196dc34fd280654d27eea0801128166e32fdc69b53168df0f1fa29d29aee30c48119bb99b92b178b3d36b9283db24b61ea4af5152c566f25a1798d2ff7f049dbdae0fe74eac8a6bdd09d4d5c36a9934df52f6ad0a69878a9bb7c3fcff768dd06258741e54ad9326e61d5c1f408cf2b0d15d454addcb620c7abf8769702ec8190bff4089f2b567f05b0b22d1fa868776b5f4e0df0f0d0130408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"303">>}, +{<<"cache-control">>, <<"private">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>}, +{<<"location">>, <<"http://d1aivi5dp2wry5.cloudfront.net/pixel.gif">>}, +{<<"p3p">>, <<"CP=\"NOI PSAo OUR IND COM NAV STA\"">>}, +{<<"server">>, <<"Microsoft-IIS/7.0">>}, +{<<"x-aspnet-version">>, <<"4.0.30319">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"content-length">>, <<"0">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf5f911d75d0620d263d4c795ba0fb8d04b0d5a7d4cbc97688aa6355e580ae05c10f28ff8201abd256a6065f79f6f038d61844fc2ebc2c007afddc10b77ef00006e107c16032e165b69965e0001f0980cb841f1de032e2f8a20a17136b89e009a03c17dd5c4e32d38f3ec89c5d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057583f154065c5f134065c1f05b2032e165b0bed3efb6e7c77b20a1769712e05c0b83e2bb20a1769769702e05c1f1deb80cb83e26960a17081713c01340782fbab89c65a71e7d9138bac15d60aeb057582bac15d60aeb057583f6a17cd66b0a8837cf6fd28012da4fdd61002ea8166e32fdc69c53168dff6a5634cf031f6a487a466aa05eaf49352542e43d3f0f0d820859c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=39895E64FA29A782E08DBEA5DC0005A0&e=i.1354338000&t=i.10&v=i.2&l=l.25.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.2.0.0.0&pr=l.4.4.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:46 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e32fdc69c53168df768586b19272ff6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fc3cd0f28d0d3cf7adba0068cdebd64ec9e69c3deabff9653dfcc37cb8f2d2feafcd2e73f359642e1f6fe524e687259dfb34f6fdd0ed6b9f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d3fcdc3be408aa924396a4ad416a9933f0235307f06842507417f5f87497ca589d34d1f5a839bd9ab0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MKyyIqtYtFvnDXrmvxADeHJm9OXN6YxpedeFz9JchiAIrvq48TSAR4YV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"ntcoent-length">>, <<"50">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88c4c3c2c7d10f28d0d3cf7adba0068cdebd64ec9e69c3deabff9653dfcc37cb8f2d2feafcd2e73f359642e1f6fe524e687259dfb34f6fdd0ed6b9f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d3fd1c7c2408a224a7aaa4ad416a9933f023435c1c0bf0f0d023539">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MKyyIqtYtFvnDXrmvxADeHJm9OXN6YxpedeFz9JchiAIrvq48TSAR4YV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"59">>} +] +}, +{ +undefined, +<<"8b5f87352398ac4c697f0f0d023433ca4088f2b0e9f6b1a4585fb4e7df8c83fcc326ce774f9cd8e7dcc6bef533b3655b1ad735b96b65364f7b1feeeab2643b7a77bbb9f7b7c9e8fdd3e9c177c7bb17408cf2b0e9f6b585ed6950958d278cbd7c179c081a1607c226e1c1c8588aa47e561cc581c00000076c96e4593e9413ca6e2d6a08010a8205c002e05e53168dff0f1399fe649592b6e3b239285c900d0191384746028c4f8da95a0ff352848fd24a8f76868691fb3d5b99558471a719674089f2b0e9f6b12558d27faeeb1f4df5870638b41bcf0abf5dafb63fccc60d7b3f5d4dec89c7db76b11b8e8b3278d0965cd183bcf79b8f64107f7cae0ae0504494920c8fc6fb4d908579e208242332b2091e79a248b9283db24b61ea4af5152a7f57a83db261b0f527fb4085f2b10649cb8ec664a92d87a542507b6496c3d49f">>, +[ +{<<":status">>, <<"304">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-amz-id-2">>, <<"YvVdaXFdQYBoLiHhS/Pvn3QQnQ4PguJp3trhCHZSnIIo5NT7S98Tdyovty62vHSG">>}, +{<<"x-amz-request-id">>, <<"CD0C61042E9125AE">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"cache-control">>, <<"max-age=600000">>}, +{<<"last-modified">>, <<"Wed, 28 Sep 2011 20:00:18 GMT">>}, +{<<"etag">>, <<"\"df3e567d6f16d040326c7a0ea29a4f41\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"server">>, <<"AmazonS3">>}, +{<<"age">>, <<"64633">>}, +{<<"x-amz-cf-id">>, <<"kbjTp1EH_MixUnZ7pqHXKi1pQZ7tCItHqSP2iVMrIwMt36MEvhC5bQ==">>}, +{<<"via">>, <<"1.0 2cfcdac9b945cce88c21cc3f30d884cd.cloudfront.net (CloudFront)">>}, +{<<"x-cache">>, <<"Hit from cloudfront">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbcd6196dc34fd280654d27eea0801128166e32fdc69c53168df768320e52f5885aec3771a4b0f0d03393933408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"993">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88c4768586b19272ff6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf0f28d0d3cf7adba0068cdebd64ec9e69c3deabff9653dfcc37cb8f2d2feafcd2e73f359642e1f6fe524e687259dfb34f6fdd0ed6b9f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d3f7b83c67427408a224a7aaa4ad416a9933f8308840f408721eaa8a4498f57842507417f5f87497ca589d34d1f5a839bd9ab0f0d03373637">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MKyyIqtYtFvnDXrmvxADeHJm9OXN6YxpedeFz9JchiAIrvq48TSAR4YV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"vary">>, <<"Host">>}, +{<<"cteonnt-length">>, <<"1220">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"767">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fce5f8b1d75d0620d263d4c7441ea7f0388ea52d6b0e83772ff4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d03313536">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>} +] +}, +{ +undefined, +<<"88d1ca408aa924396a4ad416a9933f83081c7b4087aaa21ca4498f57842507417fc5d1c40f0d826c42">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"522">>} +] +}, +{ +undefined, +<<"88ccd3c5c6c00f0d023539cbcac90f28cfd3cf7adba0068b23daeeb9b3e4935e7bff9653dfcc37cb8f2d2feafcd2e73f359642e1f6fe524e68720c4728ff323b6ba8e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fc9cacb7f08023435c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"59">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MrbR7PgLIdPLDXrmvxADeHJm9OXN6YxpedeFz9JchiAIa2oeaXI7u7sV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +2730, +<<"3f8b1588d4c4c0bfc3d2c50f0d836dc133c2c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5623">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff3d7d6c6d5d4d30f0d83081d0fd2d1d0cf">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1071">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"887684aa6355e7d65f87352398ac4c697f798624f6d5d4b27fc64088ea52d6b0e83772ff8749a929ed4c0207d1cfd07f03d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 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\"">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f00c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fd30f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b37197ee34e298b46ffb5358d33c0c7c40f0d0234336196dc34fd280654d27eea0801128166e32fdc69b53168df">>, +[ +{<<":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:39:46 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:45 GMT">>} +] +}, +{ +undefined, +<<"880f28ff5cb1288a1861860d19d0ce8e3c7be8bcdb1bf5c77b626ebf617c7eb432328e49a33b1bcefd7bf7d5c65a363ac578fbcb43fbed4cd3cdcbb3d7797e373f5c5a3cf8e20c42dfcf5d56bbc2ced2494fe172f6bf8d16bbc135fbaa19f65fbb93f2b75cdc6cb5ef33df896377ad58fbfae3d115e4f279b26adbcf16aebf9bdb06775db5d865effef4b726ffc629c59daf7c76656fccdc64775cf0f9dd54bc1df1a3b688420b7f11bb8de9aefda97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e32fdc69c53168dff6a6b1a67818f4088f2b5761c8b48348f89ae46568e61a02d2c2f7f02e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349d8d76496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7c9d47b8b84842d695b05443c86aa6fe4">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs3MVVvMC5/TPbCQtB9rewZ4ac3sWtlL/To9pTTnVflQ7/pHvfl9TutghgWq8BWX5hkGMxwV0G2TYPnu7UrqddmXeJqDHsu7UtpznAhQDBIXp76SiJpTi8Xt/SyOHvyVjspIxogIORYGOkXT50L77u7Afv+N5dTX/mGL4zVQJ5xgVd7PhAxSnfU7wMqMA10uXsSVCgB; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:46 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas14-2">>}, +{<<"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:39:46 GMT">>} +] +}, +{ +undefined, +<<"88ddcfbe6c96dc34fd28069486d994100225041b817ee36253168dff52848fd24a8fd70f0d023637408725453d44498f57842507417fce5890aec3771a4bf4a523f2b0e62c0eb621376496dd6d5f4a01a5349fba820044a04171966e32153168df6196dc34fd280654d27eea0801128166e32fdc69c53168dfd8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"67">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=75225">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:33:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ddbe768dd06258741e54ad9326e61c5c1f7f19868776b5f4e0df0f28ff1d86f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a6686186186186186fc30c30d39fc430e5c05a38dec78ebe3b1fb010c39b2168e37b763af8ecff7602187280b471bd263af8ec876430c38e7c70c378d8ebe3b27f2e71e10c30c30c2b7da958d33c0c7da85f359ac2a20d07abe94032b693f758400b4a059b8cbf71a714c5a37ff7f0bb7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3fe364022d31e5d50f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAADAAAAmLwAAJEelVCHHpVQ9r0AAKIelVCSHpVQ+r0AAJ0elVCdHpVQAQAAAHhHAACiHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:39:46 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88c2768586b19272ffdbdae15885aec3771a4be10f0d826841e3dd6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbf0f28d0d3cf7adba0068bdcefcd7a76d19f5d57ff2ca7bf986f971e5a5fd5f9a5ce7e6b2c85c3edfca49cd0e4645b3770f3655d6dc9c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffbebfc07f1e827021">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:46 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"421">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MCYDgCh5sLPnDXrmvxADeHJm9OXN6YxpedeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"611">>} +] +}, +{ +undefined, +<<"88e46196dc34fd280654d27eea0801128166e32fdc69d53168dfe4e3e20f0d82105c">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>} +] +}, +{ +undefined, +<<"88e5bee4e3e20f0d03363737">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"677">>} +] +}, +{ +undefined, +<<"88c4e0cf6c96dc34fd28069486d994100225041b817ee01d53168dffce5a839bd9ab0f0d83089d07ce5f911d75d0620d263d4c795ba0fb8d04b0d5a75891aec3771a4bf4a523f2b0e62c0e36db2eff6496dd6d5f4a01a5349fba820044a01db8d8ae01a53168dfc3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1270">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=65537">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:52:04 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ca4087aaa21ca4498f57842507417fd66c95d07abe940054d444a820044a0857040b820298b46fd5c40f0d03383530d4c35890aec3771a4bf4a523f2b0e62c0f09b6c16496dd6d5f4a01a5349fba820044a0457196ee32ea98b46fc8c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 01 Oct 2012 22:20:20 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"850">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=82550">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 12:35:37 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cec1d96c96df3dbf4a09b535112a08007540bf71b7ae36e298b46fd8c70f0d0237385f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0cb4cbcdbd6496e4593e9403aa693f7504008940b37020b8d36a62d1bfccc6da">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 25 Oct 2007 19:58:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"78">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=343858">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 13:10:45 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fcd5f8b1d75d0620d263d4c7441eac87f1887d78f5b0dae25df0f0d830b826f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>} +] +}, +{ +undefined, +<<"88d5c8e06c96d07abe94136a65b6a504008940bd71b0dc0b6a62d1bfdfce0f0d03313933de5f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0cb4f3cfbb6496e4593e9403aa693f7504008940b57196ae34d298b46fd3cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 25 Jun 2012 18:51:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"193">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348897">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130c8d47f1de9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7db0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee34ea98b46ffb5243d2335502fd6cf322f5153f408af2b585ed695095926a4b92bf009c0a89802cb617da7df79d71d682d3ff4089f2b20b6772c8b47ebf8e8ca321ea58600097eb679917a8a9d1">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:47 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=261 t=1351949987674149">>}, +{<<"x-served-by">>, <<"beacon-a002.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bd8cc0f0d0234337f13842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:47 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88dfd27b8b84842d695b05443c86aa6fc852848fd24a8fd90f0d03313935408725453d44498f57842507417fc95891aec3771a4bf4a523f2b0e62c0cb4f3cfbd6496e4593e9403aa693f7504008940b57196ae34e298b46f6196dc34fd280654d27eea0801128166e32fdc69e53168dfd9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 25 Jun 2012 18:51:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"195">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348898">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:48 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0becfd9ce0f0d830b826f798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:48 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88e6d9c46c96df3dbf4a05d5349fba820042a08371b6ee36d298b46fc4df0f0d830b4cbfc3cecdc16196dc34fd280654d27eea0801128166e32fdc69f53168dfdc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 17 Nov 2011 21:55:54 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1439">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348897">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:49 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e8dbc66c96df697e9413aa6e2d6a08010a817ae342b8d3aa62d1bfc6e10f0d820881c5d05891aec3771a4bf4a523f2b0e62c0cb4f3e2076496e4593e9403aa693f7504008940b57196ee01f53168dfc1df">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 27 Sep 2011 18:42:47 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"120">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348920">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:35:09 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:49 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffdfca6c96e4593e940baa693f75040081410ae01eb8cbea62d1bfcae50f0d023739db5891aec3771a4bf4a523f2b0e62c0cb4f3cfb36496e4593e9403aa693f7504008940b57196ae34253168dfc5e3cb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 17 Nov 2010 22:08:39 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"79">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=348893">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:49 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c1e2cdc0cce70f0d03343434cbd6bfbec5e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 17 Nov 2010 22:08:39 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"444">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348893">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:49 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c1e2cd6c96dc34fd28069486d994100225041b817ee36ca98b46ffcd5a839bd9ab0f0d03333134cdd85891aec3771a4bf4a523f2b0e62c0e3edb8d7f6496dd6d5f4a01a5349fba820044a01eb8dbf702ca98b46fc97f1388ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"314">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=69564">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:59:13 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:49 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"884088f2b0e9f6b1a4585fb42170eddc1d3876d6f610ebb7962e90fbdad5ed17deab1e8d3664c588399e033b53b39276f885cfdfdc9eb0df3333f7f57c1660e1408cf2b0e9f6b585ed6950958d278d0e16aeb97437b0df644fe176ef6196dc34fd280654d27eea0801128166e32fdc6c0a62d1bf6c96d07abe94101486d99410022500f5c03b702ca98b46ff0f139afe5913b1b256c237de291f1baebed019009f148fb51cb249fcffd55f88352398ac74acb37f0f0d8313227f76868691fb3d5b99">>, +[ +{<<":status">>, <<"200">>}, +{<<"x-amz-id-2">>, <<"ceFRS1NFRp8F1PuWGjAzR4CMD8nHMNrIGG1K803RtQWtRwA6ZZIyFDi3hvyD0rEU">>}, +{<<"x-amz-request-id">>, <<"1F4B6B1CFD329F7B">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:50 GMT">>}, +{<<"last-modified">>, <<"Mon, 20 Aug 2012 08:07:13 GMT">>}, +{<<"etag">>, <<"\"327b3e51a98ec9a7794030292d94bfdd\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"content-length">>, <<"2329">>}, +{<<"server">>, <<"AmazonS3">>} +] +}, +{ +undefined, +<<"88cc4087aaa21ca4498f57842507417fd96c96c361be940854d27eea08010a820dc135719794c5a37fd9c90f0d03393932d8e35891aec3771a4bf4a523f2b0e62c0cb4f3e0176496e4593e9403aa693f7504008940b57196ae36253168dfc5c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 11 Nov 2011 21:24:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"992">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=348902">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:34:52 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:50 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c36196dc34fd280654d27eea0801128166e32fdc6c4a62d1bf5f8b1d75d0620d263d4c7441eacb4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d830b826fda5f87497ca589d34d1f0f28cfd3cf7adba0068d72e16c8f559343ecdffcb29efe61be5c7ed7d7fb9dd14c337990b87dbf94939a1c8c8b66ee1e6cabadb938afceaf2d59d70e4fb52b1a67818fb5243d2335502f57a49a92a1721e9f6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfd3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MPfF5c8nIM93DXrmvxADeHz.PZL72gaixdeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d8c9e46c96c361be940894d444a820044a081702f5c6dc53168dffe4d40f0d8369f0b3e3cc5890aec3771a4bf4a523f2b0e62c0eb6d3a06496dd6d5f4a01a5349fba820044a04171976e34253168dfc7d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 20:18:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"4913">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=75470">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:37:42 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbcce76c96df3dbf4a09b535112a080112816ee340b8c814c5a37fe7d70f0d837df107e6cf5890aec3771a4bf4a523f2b0e62c0e09c7da6496dd6d5f4a01a5349fba820044a01db806ae34e298b46fcad6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 25 Oct 2012 15:40:30 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9921">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=62694">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:04:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801f5f87352398ac4c697fcc6496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3fc87689aa6355e5802eeaedbf0f0d023433db">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e3cfcc7f1c842507417fce0f0d023539798624f6d5d4b27fce0f28cfd3cf7adba0068e3a07eacddde3a25aaffe594f7f30df2e3f6bebfdcee8a619bcc85c3edfca49cd0e7c197475de7d7cdd1f3e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7cdcccbe0cdcccb408a224a7aaa4ad416a9933f023435">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"59">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MVMayrSvblfnDXrmvxADeHz.PZL72gaixdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cteonnt-length">>, <<"45">>} +] +}, +{ +undefined, +<<"88d36196dc34fd280654d27eea0801128166e32f5c6dc53168dfd2dfd10f0d82105cd00f28d0d3cf7adba0068b36d3a41905c7ce8cf7ff2ca7bf986f971f9143472637f35ff7ac85c3edfca49cd0e4645b3770f3655d6dc9c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffcfcecde2c0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:38:56 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MrRmN0I2VxMLDXrmvxADeHx2AlW/TY.ZkdeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88ce5f911d75d0620d263d4c795ba0fb8d04b0d5a7d4c5ce7688aa6355e580ae05c10f28ff8301abd256a6069e6afb77b00b05e7597dcc175a799bb7d969f71dbd830c3821f82c065c2cb6d32cbc0003e130197083e3bc065c5f144142e26d713c01340782fbab89c65a71e7d9138bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb07e2a80cb8be2680cb83e0b64065c2cb617da7df6dcf8ef64142ed2e25c0b81707c5764142ed2edae05c0b83e3bd7019707c4d2c142e102e27802680f05f757138cb4e3cfb22717582bac15d60aeb057582bac15d60aeb07ed42f9acd615106f9edfa50025b49fbac2005d502cdc65fb8d894c5a37fda958d33c0c7da921e919aa817abd24d4950b90f4f0f0d820859e1">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:52 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=484D5CE2EC7396EB483BD34967CEFAEA&e=i.1354338000&t=i.10&v=i.2&l=l.25.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.2.0.0.0&pr=l.4.5.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:52 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887f06fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9ab6196dc34fd280654d27eea0801128166e32fdc6d953168df768320e52f5885aec3771a4b0f0d83081c6b408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1064">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"887b8b84842d695b05443c86aa6fc6de6c96df3dbf4a044a435d8a0801128205c69eb82714c5a37fc66496dc34fd280654d27eea0801128166e32fdc6d953168df588daed8e8313e94a47e561cc5801fca768344b2970f0d03313735c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"last-modified">>, <<"Thu, 12 Apr 2012 20:48:26 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"cache-control">>, <<"public, max-age=0">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"server">>, <<"sffe">>}, +{<<"content-length">>, <<"175">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>} +] +}, +{ +undefined, +<<"88e6c9e47f1488ea52d6b0e83772ffe40f0d82105ce30f28cfd3cf7adba00686744339830a1db3ddffcb29efe61be5c793732ee6d9df65ebbda42e1f6fe524e6872322d9bb879b2aeb6e4e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7e2e1e0cbd3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M3MAhi1As7rzDXrmvxADeHIS37KQvQCBqdeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88768586b19272ffcbe4bfe50f0d826c42e40f28cfd3cf7adba00686744339830a1db3ddffcb29efe61be5c793732ee6d9df65ebbda42e1f6fe524e6872322d9bb879b2aeb6e4e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7e3e2e1ccd4408aa924396a4ad416a9933f83081c7b4087aaa21ca4498f57842507417fcb">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"522">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M3MAhi1As7rzDXrmvxADeHIS37KQvQCBqdeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88cdc0e5e4e30f28d0d3cf7adba0068470d7238dc950f03b7ff2ca7bf986f971e4dccbb9b677d97aef690b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffe3e4e5d5d7e6ce0f0d023539">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MsUPd65dnaE7DXrmvxADeHIS37KQvQCBqdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"59">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fcee9c2e80f0d03313536">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>} +] +}, +{ +undefined, +<<"88c7cfe76c96d07abe9413aa436cca080112807ee34edc134a62d1bfcfc6c5d1c40f0d03383436cc">>, +[ +{<<":status">>, <<"200">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"last-modified">>, <<"Mon, 27 Aug 2012 09:47:24 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"cache-control">>, <<"public, max-age=0">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"server">>, <<"sffe">>}, +{<<"content-length">>, <<"846">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>} +] +}, +{ +undefined, +<<"88bfcf5f8b1d75d0620d263d4c7441eac44089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d836dc1335f87497ca589d34d1f0f28cfd3cf7adba00686744339830a1db3ddffcb29efe61be5c793732ee6d9df65ebbda42e1f6fe524e6872322d9bb879b2aeb6e4e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a76496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfd6dec7c6d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"5623">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M3MAhi1As7rzDXrmvxADeHIS37KQvQCBqdeFz9JchiAI32QSUxrnkuIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f1bc6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc10f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b37197ee36ca98b46ffb5358d33c0c7e60f0d023433d8">>, +[ +{<<":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:39:53 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>} +] +}, +{ +undefined, +<<"88dcdbdad9d8d7d60f0d830802dfd5d4d3d2">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1015">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"887684aa6355e7d9e7e2cd4088ea52d6b0e83772ff8749a929ed4c0207c5c3c47f02d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 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\"">>} +] +}, +{ +undefined, +<<"880f28ff5db1288a1861860d19d0cbdc74d9a30b6c1ddfde7d3d559e3cf99c0e1adacf7b035db9c2f31afacee761ef968700ee9dd0ed9f6eeb58c3eec9edf22fd2d3bdd913a7dc9d73da3db9765be4fe747446fcfc9ad1cbaf7d7df46cc14b8ccb323ac7f84d5ea7a72629e1ade453e07a2f6bec5bd0fbc07f27cef4cd398cfa7242f5fd6e241f91ebcee437fbb141b6e0e50cfb6e8bdd0d124f790db2b92f4fc1cc3bbde49b85b5495e7f3fb31e0fb52f9e919aa817b0bdd0432f5153f6a60f359ac2a20dd6d5f4a0195b49fbac20059502cdc65fb8db2a62d1bfed4d634cf0314088f2b5761c8b48348f89ae46568e61a00eaccf7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349c8c76496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7798624f6d5d4b27fe2dae1">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs38VNrMF5/o7ZYjynLbLK61Fp4LCE4qYA8/Pkh6qaTfl607NSARhRSu/Fzrhux2ZemT7dtNzdkLuaRJQuxoxMjsTLW4MWkvPvMQEm63fgskbXcOyhmIGhAp8smwaMCPqeCAzEoxoL8g46HoNIA8DP6t0XbPL6ADv/liREWAhRB2zl4cdzIiQpdChU6FSzIgUundpLxZgo=; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:53 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas07-3">>}, +{<<"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:39:53 GMT">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3e2d0d6cf0f0d836dc133ce0f28d0d3cf7adba0068470d7238dc950f03b7ff2ca7bf986f971e4dccbb9b677d97aef690b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffcdcccbe3bfd4d3e0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"5623">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MsUPd65dnaE7DXrmvxADeHIS37KQvQCBqdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88d2e2d0d6cf0f0d82105c">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>} +] +}, +{ +undefined, +<<"88d2e2d0d6cf0f0d830b826fce0f28d0d3cf7adba0068470d7238dc950f03b7ff2ca7bf986f971e4dccbb9b677d97aef690b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffcdcccbe3bfd4d3e0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MsUPd65dnaE7DXrmvxADeHIS37KQvQCBqdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88d2e2d0d6cf0f0d03363734">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:53 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"674">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d01305f87352398ac4c697f6196dc34fd280654d27eea0801128166e32fdc6da53168df7f07e9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7d90f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee36d298b46ffb5243d2335502fd6cf322f5153f408af2b585ed695095926a4b92bf009c0a89802cb617da7df7da03ceb8e3df4089f2b20b6772c8b47ebf8f8ca321ea5860038bf5b3cc8bd454ffdc">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:54 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:54 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=261 t=1351949994087668">>}, +{<<"x-served-by">>, <<"beacon-a006.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bc2c30f0d0234337f1e842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:54 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88da6196dc34fd280654d27eea0801128166e32fdc6db53168dfd9dfd80f0d830b826fd70f28d0d3cf7adba0068470d7238dc950f03b7ff2ca7bf986f971e4dccbb9b677d97aef690b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffd6d5d45a839bd9abc9dedd5885aec3771a4b">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:55 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MsUPd65dnaE7DXrmvxADeHIS37KQvQCBqdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88e0de7b8b84842d695b05443c86aa6f6c96e4593e940bea6e2d6a080112816ae36ddc03aa62d1bf52848fd24a8fc20f0d837db6dc408725453d44498f57842507417f5f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0179c0036496dc34fd280654d27eea080112817ae34fdc6dd53168df6196dc34fd280654d27eea0801128166e32fdc6dd53168df7f0a88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 19 Sep 2012 14:55:07 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9556">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=18600">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 18:49:57 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2bfe4bee30f0d830b826fe20f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffe1e0dfc8d3408aa924396a4ad416a9933f83081c7b4087aaa21ca4498f57842507417fc9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801fd3c26496df3dbf4a002a651d4a05f740a0017000b800a98b46ff7f13a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3fe47689aa6355e5802eeaedbf0f0d023433c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf5f911d75d0620d263d4c795ba0fb8d04b0d5a7c7c24085aec1cd48ff86a8eb10649cbf7688aa6355e580ae05c10f28ff8201abd256a60bb75d79a6dcbee32e42db77ef89f742eddc22bf85985d0b37fe0b01970b2db4cb2f0000f84c065c20f8ef019717c51050b89b5c4f004d01e0beeae271969c79f644e2eb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac1f8aa032e2f89a032e0f82d901970b2d85f69f7db73e3bd9050bb4b89702e05c1f15d9050bb4bb8b81702e0f8ef5c065c1f134b050b840b89e009a03c17dd5c4e32d38f3ec89c5d60aeb057582bac15d60aeb057582bac1fb50be6b3585441be7b7e940096d27eeb08017540b37197ee36ea98b46ffb52b1a67818fb5243d2335502f57a49a92a1721e90f0d820859c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=BB78456D636A55DD29717BF2DF3A713D&e=i.1354338000&t=i.10&v=i.2&l=l.25.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.2.0.0.0&pr=l.4.6.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:39:57 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dcc95f8b1d75d0620d263d4c7441eac94089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d830b826f5f87497ca589d34d1f0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ff6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fc5c3d6e1cbcad5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88e0cdc1ccc00f0d03363734bf0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffbec5c3d6e1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"674">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"887f08fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbd9d0768320e52fd90f0d83081e73408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1086">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88e8d5c9d4c80f0d830b826fc70f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffc6cdcbde798624f6d5d4b27fd4d3de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88768586b19272ffd7c9d6ca0f0d826c42d5d4dfe0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"522">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fd8ccd7cb0f0d03313536ca0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffc9d0cee1c0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3d9cdd8cc0f0d830b826fcb0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffcad1cfe2c1d7d6e1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>} +] +}, +{ +undefined, +<<"88bfd9cdd8cc0f0d836dc133cb0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffcad1cfe2c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"5623">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88c9c8c7e2d9c6e10f0d03393832c5c4c3c2">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"982">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88e0e2cb6c96df3dbf4a044a435d8a0801128205c69eb82714c5a37fda6496dc34fd280654d27eea0801128166e32fdc6dd53168df588daed8e8313e94a47e561cc5801fca768344b2970f0d03313735c9">>, +[ +{<<":status">>, <<"200">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"last-modified">>, <<"Thu, 12 Apr 2012 20:48:26 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"cache-control">>, <<"public, max-age=0">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"server">>, <<"sffe">>}, +{<<"content-length">>, <<"175">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>} +] +}, +{ +undefined, +<<"887684aa6355e7de5f87352398ac4c697fc7de4088ea52d6b0e83772ff8749a929ed4c0207d1d6d87f11d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 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\"">>} +] +}, +{ +undefined, +<<"880f28ff67b1288a1861860d19d0cbdc78d84c2db1fb9fb3967aab3c7af2597f4e9ed9e9878c3d2125347af1a9a7a7a2fc7fef0649422bf5eeb4f87a39b7fdf6cdd1377ad330a7f13b4eb7fbea7cdd7393f2ad58efbc8abd5fbaf27b5d27bf00cffec3833dea2fe09e7aa1e5fb8124bb7f38f43d35793ddf9653cb63daff268daa642488c5b3078f347e48ee56fc047fef38f1f0db3f03bb9b774c7e91e38edc6f6cb7f347e74ae3fc1c7b7443db4d6cf3e7eff35ee08ad8fed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b37197ee36ea98b46ffb5358d33c0c74088f2b5761c8b48348f89ae46568e61a021585f7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349dcda6496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7ce5a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e32fdc6dd53168df">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs38VVrcF5/ZLq6rynLbPIrDNNqLmAVAjAcmlywO48hlDb+EIf12DpSuoFj6R+qKjtBkmg2hwh475ZyhKkLcXnOHD8snyDB8tqBczw0L+1ELClDEhhnAWZEtcBDLaM8gpIzDffofr8PXgb4mdcdsGQEwxlXd7J5w1a+LaHURhUo7KSjHyswVRH8QuXMXjpbXabRMAqNp3YYzXPS12ub; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:39:57 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas11-2">>}, +{<<"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:39:57 GMT">>} +] +}, +{ +undefined, +<<"88d0bedb408721eaa8a4498f57842507417fdd0f0d826841dc0f28cfd3cf7adba0068d90e0f5db2b3d65a31dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1c96d01c3e218f033a91c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4fdbe2e0c1d2408aa924396a4ad416a9933f83081c7b4087aaa21ca4498f57842507417f5885aec3771a4bdee5e3408a224a7aaa4ad416a9933f827021">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"421">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MQAEyqJ3kflHDXrmvxADeHFvzcPY0HhncdeFz9JchiAIul1FwAbE3OsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cteonnt-length">>, <<"611">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f0bc6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007f4085aec1cd48ff86a8eb10649cbf0f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b37197ee36ea98b46ffb5358d33c0c7d10f0d023433c7">>, +[ +{<<":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:39:57 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>} +] +}, +{ +undefined, +<<"88d86196dc34fd280654d27eea0801128166e32fdc6de53168df5f8b1d75d0620d263d4c7441ea7f0988ea52d6b0e83772ff4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d033637345f87497ca589d34d1f0f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ff6496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbfc5d0e1">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:58 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"674">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88dfc4c3c2c10f0d82105ccccbcad0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:58 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88cfd0c06c96d07abe9413aa436cca080112807ee34edc134a62d1bfcfdddce8db0f0d03383436e6">>, +[ +{<<":status">>, <<"200">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"last-modified">>, <<"Mon, 27 Aug 2012 09:47:24 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:39:57 GMT">>}, +{<<"cache-control">>, <<"public, max-age=0">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"server">>, <<"sffe">>}, +{<<"content-length">>, <<"846">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>} +] +}, +{ +undefined, +<<"88e0c5c4c3c20f0d830b826fc10f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffc0bfc6d1e2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:58 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130dac67f0ae9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7e30f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b37197ee36f298b46ffb5243d2335502fd6cf322f5153f408af2b585ed695095926a4b92bf009b7944c0165b0bed3efbef34d380759f4089f2b20b6772c8b47ebf8f8ca321ea5860038bf5b3cc8bd454ffc7">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:58 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:39:58 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=258 t=1351949998446073">>}, +{<<"x-served-by">>, <<"beacon-a006.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bcade0f0d023433d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:39:58 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88e56196dc34fd280654d27eea0801128166e340b800298b46ffcac9c80f0d830b826fc70f28d0d3cf7adba0068f7ecd83268f5e7b131dffcb29efe61be5c787bfb26be60c73d4490b87dbf94939a1cf832e8ebbcfaf9ba3e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffc6c5ccd7798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:00 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MzziEIMyxqcHDXrmvxADeHFvzcPY0HhncdeFz9JchiALEJMkToPY7aYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88768586b19272ff6196dc34fd280654d27eea0801128166e340b80654c5a37fcad7cb0f0d830b826fca0f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7c9c8cfdac0c9c8cf7b83c674277f18846df034ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"1625">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"vary">>, <<"Host">>}, +{<<"ntcoent-length">>, <<"59049">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801fe5c16496df3dbf4a002a651d4a05f740a0017000b800a98b46ff7f0aa1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3fd47689aa6355e5802eeaedbf0f0d023433d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5c4d0ddd10f0d023539dcdbdae0cfced50f28d1d3cf7adba0068d11f0fddbcb2e1f77b1dffcb29efe61be5c79ba11a9f367b347e6290b87dbf94939a1cfc776eefe714a77f273e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fd5cecf7f1a023435">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"59">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MMbUZRWJFzCHDXrmvxADeHKjc4hKLrMXGdeFz9JchiALVSSvxGfo9IYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3c6d20f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7d1d0d7e2c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88d05f911d75d0620d263d4c795ba0fb8d04b0d5a7c7c3d87688aa6355e580ae05c10f28ff8201abd256a60840d5dba1bce5f03616dcbd7ef89a7306185c142edebccc2cfc16032e165b69965e0001f0980cb841f1de032e2f8a20a17136b89e009a03c17dd5c4e32d38f3ec89c5d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057583f154065c5f134065c1f05b2032e165b0bed3efb6e7c77b20a1769712e05c0b83e2bb20a1769775702e05c1f1deb80cb83e26960a17081713c01340782fbab89c65a71e7d9138bac15d60aeb057582bac15d60aeb057583f6a17cd66b0a8837cf6fd28012da4fdd61002ea8166e340b80654c5a37fda958d33c0c7da921e919aa817abd24d4950b90f4f0f0d820859d6">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=A04BB1C6D05156CDD246EFA62A7CC3A3&e=i.1354338000&t=i.10&v=i.2&l=l.25.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.2.0.0.0&pr=l.4.7.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:40:03 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887f04fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9abcc768320e52fe30f0d83081c6f408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1065">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88d2d1dd0f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7dcdbe2c3d3dcdbe2d07f0b83089a077f21842507417fdf0f0d03373737">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"vary">>, <<"Host">>}, +{<<"cteonnt-length">>, <<"1240">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"777">>} +] +}, +{ +undefined, +<<"88d3d47f1283081c7b4087aaa21ca4498f57842507417fe15885aec3771a4bc80f0d826c42">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"522">>} +] +}, +{ +undefined, +<<"88ced6e20f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7e1e0e7c8d8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fd7e6e5e40f0d03313536">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>} +] +}, +{ +undefined, +<<"88cccbcac9d7c8bf0f0d830802cfc7c6c5c4">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1013">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88d7bec1c0e6bfc90f0d836dc133e5e4">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5623">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>} +] +}, +{ +undefined, +<<"887684aa6355e7d85f87352398ac4c697fdbe74088ea52d6b0e83772ff8749a929ed4c0207e54085aec1cd48ff86a8eb10649cbfe57f11d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 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\"">>} +] +}, +{ +undefined, +<<"880f28ff61b1288a1861860d19d0cbb469b34616d83bbfbcfa7aab3c79f33966cc17485da83750e4dbf99304bfbcf2f436c1d797df847e17f7a6f0706f1e8cd8f8b34fe66efdc7b1ac39e66ab667e6f3b9ecff7b0d7dfd99eedb79be33d4d3f5ffbd9b182d28fdd4272bcaee592773517f33cad4f221fadbcc296e85fca37dbe26ebea9c5b2cbf36dbaccdaa36fd967d0812786ccb0f54f7c1d26dd32359725d46099e924d6c698f46a3f7e37823bb9ba7fb0fda97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e340b80654c5a37fda9ac699e0634088f2b5761c8b48348f89ae46568e61a02d2c2f7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f76035253495886a8eb10649cbfc36496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7e4d47b8b84842d695b05443c86aa6fe3">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs37lNrMF5/o7ZYjynLbLK6rQEBceRsik1IRXIEfZYJjiQapJzwsXeZjT0U5HMKHV3mXKvvaQ4FLg4p3hY87Lr+QiD9QLBuC5Vhn49p+QQ/emsZO26pJ7Jdh6OeXLf4hds9p5K2fB19Ja95VikymGQrDgRB3gOb5zehMs2tUQJAktvEjgSgsPeIBsEg8ddP/NbMOovVC1aBKj+1; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:40:03 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd3-bgas14-2">>}, +{<<"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:40:03 GMT">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f05c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc90f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b371a05c032a62d1bfed4d634cf031fcb0f0d023433e6">>, +[ +{<<":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:40:03 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>} +] +}, +{ +undefined, +<<"88e6ded0cf5f8b1d75d0620d263d4c7441eacfd90f0d836dc1337f1388ea52d6b0e83772ff4089f2b567f05b0b22d1fa87d78f5b0dae25df5f87497ca589d34d1f0f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a76496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37fc9ce798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:03 GMT">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5623">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88d36196dc34fd280654d27eea0801128166e340b80694c5a37fc4c3c20f0d03363734">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"674">>} +] +}, +{ +undefined, +<<"88d4bec10f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7c0cbd0dfbfc4c3c20f0d82105c">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>} +] +}, +{ +undefined, +<<"88bed4d7d6c4d5df0f0d830b827bc3c2c10f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7c0cbd0bf">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1628">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130d3bf7f08e9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7768586b19272ff0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b371a05c034a62d1bfed490f48cd540bf5b3cc8bd454ff408af2b585ed695095926a4b92bf009d6944c0165b0bed800069a69b704f7f4089f2b20b6772c8b47ebf8f8ca321ea5860038bf5b3cc8bd454ffc8">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:40:04 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=274 t=1351950004445628">>}, +{<<"x-served-by">>, <<"beacon-a006.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bc4d80f0d023433de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88c1dcce6c96c361be940094d27eea0801128266e34f5c132a62d1bf52848fd24a8fe70f0d8365c7df5f911d75d0620d263d4c795ba0fb8d04b0d5a7588eaec3771a4bf4a523f2b0e62c0ebf6496dc34fd280654d27eea0801128166e341b82654c5a37fc9ce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 23:48:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3699">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=79">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:23 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:04 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"886196dc34fd280654d27eea0801128166e340b806d4c5a37fe0e3e2d0e15a839bd9ab0f0d830b827bd0cfce0f28cfd3cf7adba006806e3f7ed46df399ed77ff2ca7bf986f971e6e846a7cd9ecd1f98a42e1f6fe524e68723a4a2cfd2ec974c88e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7cdd8ddcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:05 GMT">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1628">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M0SovqlRxK8PDXrmvxADeHKjc4hKLrMXGdeFz9JchiAI7clrZeQfNdsV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88c8e3d56c96dc34fd28069486d994100225041b817ae05a53168dffc4bf0f0d830b2fbb408725453d44498f57842507417f5f86497ca582211f5890aec3771a4bf4a523f2b0e62c0db6169c6496dd6d5f4a01a5349fba820044a01ab8dbf702da98b46f6196dc34fd280654d27eea0801128166e340b807d4c5a37fd6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:14 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1397">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=55146">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:59:15 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88bece408aa924396a4ad416a9933f850b2dbe107f4087aaa21ca4498f57842507417fd65885aec3771a4bc70f0d830b827b7f1a842507417fd9d80f28d0d3cf7adba0068fda708b97bdb92137bbff9653dfcc37cb8f235c1d147cf41ecdd2170fb7f29273439f8eedddfce294efe4e7c57e75796aceb8727da958d33c0c7da921e919aa817abd24d4950b90f4ffd7e24085aec1cd48ff86a8eb10649cbfd7d8e3be7b83c67427">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"ntcoent-length">>, <<"135910">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1628">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MZmF2WzRIAizDXrmvxADeHI4U72bYMorSdeFz9JchiALVSSvxGfo9IYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"vary">>, <<"Host">>} +] +}, +{ +undefined, +<<"88d4c2e16c96d07abe940baa6e2d6a0801128205c002e09953168dffd0cb0f0d830b6e39c9c8588faec3771a4bf4a523f2b0e62c0200bf6496dc34fd280654d27eea0801128166e34cdc642a62d1bfc7df">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 17 Sep 2012 20:00:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1566">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=202">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:43:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d7c56c96dc34fd280654d27eea0801128015c106e32ea98b46ffd30f0d837d9659cc5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0db8d34e3b6496dc34fd281029a4fdd4100225002b8276e36e298b46ffcbe37b8b84842d695b05443c86aa6fd2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:21:37 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"9333">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=564467">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 02:27:56 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88dccabe6c96c361be940094d27eea0801128176e0017196d4c5a37fd8d30f0d8379f69ed1c25891aec3771a4bf4a523f2b0e62c0db2075a736496c361be9403ea693f7504008940bb700ddc6db53168dfcfe7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 17:00:35 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8948">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=530746">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 17:05:55 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dfcdc16c96dc34fd28069486d994100225041b817ae05953168dffdbd60f0d83089d73d4d35891aec3771a4bf4a523f2b0e62c0e34f3eeff6496dd6d5f4a01a5349fba820044a01db8d06e34e298b46fd27f0f88ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1276">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=64897">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:41:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e3d1c56c96d07abe940baa6e2d6a0801128205c002e040a62d1bffdfda0f0d840beeb2efdecccbd4bfd8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Mon, 17 Sep 2012 20:00:10 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"19737">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=202">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:43:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88e4d26c96dc34fd28069486d994100225041b817ee01953168dffe00f0d03323438d9df5890aec3771a4bf4a523f2b0e62c0e34f85f6496dd6d5f4a01a5349fba820044a01db8d0ae01e53168dfd7c2c9dd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"248">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64919">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88e7d5c96c96dc34fd28069486d994100225041b817ae05b53168dffe3de0f0d827c41dcdb5890aec3771a4bf4a523f2b0e62c020044d76496dc34fd280654d27eea080112817ee05bb8cb2a62d1bfdac5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"921">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=20124">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 19:15:33 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffd9cd6c96dc34fd280654d27eea080112806ae04171b0298b46ffe7e20f0d84081a13bfd15891aec3771a4bf4a523f2b0e62c0dba1138ff6496dc34fd281029a4fdd410022500d5c106e05e53168dffdec9e2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:10:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10427">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=571269">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:21:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88c1de5f87497ca589d34d1fdb4089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d0235396496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbfdd0f28cfd3cf7adba00681af99fc1caeaf2519effe594f7f30df2e3c8d707451f3d07b37485c3edfca49cd0e7cbdfa190c267b3873e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fddbebf408a224a7aaa4ad416a9933f023435e9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"59">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0Ma.K9EWB.dlLDXrmvxADeHI4U72bYMorSdeFz9JchiALJvjis/thrUYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c6e1d56c96dc34fd280654d27eea0801128015c6dab8d054c5a37f52848fd24a8f5a839bd9ab0f0d8465903cff408725453d44498f57842507417fdc5891aec3771a4bf4a523f2b0e62c0dbacb6d3d6496dc34fd281029a4fdd410022500d5c6dfb81754c5a37fe9d4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:54:41 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"33089">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573548">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cce76c96dc34fd280654d27eea0801128005c0b3702da98b46ffc30f0d8379f6c1c1df5891aec3771a4bf4a523f2b0e62c0db6fb6f876496dc34fd281029a4fdd4100225001b8072e34053168dff6196dc34fd280654d27eea0801128166e340b807d4c5a37fd8dfc5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 00:13:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"8950">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=559591">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 01:06:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d04087aaa21ca4498f57842507417fe0dcc7c60f0d03343331c55f86497ca582211f5890aec3771a4bf4a523f2b0e62c0e34fb416496dd6d5f4a01a5349fba820044a01db8d0ae32053168dfc2dc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:18:13 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"431">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/css">>}, +{<<"cache-control">>, <<"private, max-age=64941">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:30 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d4c1e36c96df3dbf4a002a681d8a0801128176e059b82694c5a37fcbca0f0d846c4113dfc95f911d75d0620d263d4c795ba0fb8d04b0d5a7588eaec3771a4bf4a523f2b0e62c0fbb6496dc34fd280654d27eea0801128166e341b8d38a62d1bfc6e0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Mar 2012 17:13:24 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"52128">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=97">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:41:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d8c5e76c96dc34fd280654d27eea0801128072e36d5c6de53168dfcfce0f0d840800277fcd5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0dbc075d776496dc34fd281029a4fdd410022500e5c6dfb8d38a62d1bfcae4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 06:54:58 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10027">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=580777">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:59:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801f5f87352398ac4c697fcc6496df3dbf4a002a651d4a05f740a0017000b800a98b46ff4003703370a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3f4085aec1cd48ff86a8eb10649cbf7689aa6355e5802eeaedbf0f0d023433408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e3d07b8b84842d695b05443c86aa6f6c96dc34fd280654d27eea0801128066e32ddc65a53168dfdbda0f0d837d9033c95891aec3771a4bf4a523f2b0e62c0dbac844ff6496dc34fd281029a4fdd410022500d5c6c5702f298b46ffd5c2db">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 03:35:34 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9303">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573129">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:52:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88e7d4c16c96dc34fd280654d27eea0801128005c6c171a7d4c5a37fdedd0f0d840800d37fdccc5891aec3771a4bf4a523f2b0e62c0db6fbccb76496dc34fd281029a4fdd4100225001b8105c69a53168dffd8c5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 00:50:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10045">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=559835">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 01:10:44 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffd86c96c361be940094d27eea0801128266e005702053168dffe20f0d840802107fe0d05891aec3771a4bf4a523f2b0e62c0db626597f6496c361be9403ea693f750400894133700ddc69e53168dfdcc9c8e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 23:02:10 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"10110">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=552339">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 23:05:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c1dbc86c96dc34fd280654d27eea0801128015c681704d298b46ffe5e40f0d837c217be3d35891aec3771a4bf4a523f2b0e62c0db8f3207b6496dc34fd281029a4fdd410022500cdc64371b754c5a37fdfcc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:40:24 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9118">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=568308">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 03:31:57 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4decb6c96df697e940094d444a82001d502e5c0397190298b46ff52848fd24a8f5a839bd9ab0f0d8365903d408725453d44498f57842507417fd55891aec3771a4bf4a523f2b0e62c0dbacb6d3d6496dc34fd281029a4fdd410022500d5c6dfb81754c5a37fe5d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 02 Oct 2007 16:06:30 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"3308">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=573548">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cae4d16c96c361be940094d27eea0801128215c137704fa98b46ffc3c20f0d840b4e32d7dc5891aec3771a4bf4a523f2b0e62c0dbacb6d3f6496dc34fd281029a4fdd410022500d5c6dfb81794c5a37f6196dc34fd280654d27eea0801128166e340b807d4c5a37fd6c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 22:25:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14634">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88ce4087aaa21ca4498f57842507417fd66c96dc34fd280654d27eea080112806ae085719694c5a37fc8c70f0d840b4cb41fc6e1c2c1c0d8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:22:34 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14341">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d0bfd76c96e4593e94642a6a225410022502edc6c1702fa98b46ffc9c80f0d840b8e09afc7e25891aec3771a4bf4a523f2b0e62c0cb816440f6496e4593e9403aa693f7504008940bd7002b807d4c5a37fc3db">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 17:50:19 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"16624">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=361320">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 18:02:09 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885886a8eb10649cbf5f911d75d0620d263d4c795ba0fb8d04b0d5a7c5e1df7688aa6355e580ae05c10f28ff8101abd256a607c2f5d71d03206c4cbef6185bbc16c50c379d7858616c387e0b01970b2db4cb2f0000f84c065c20f8ef019717c51050b89b5c4f004d01e0beeae271969c79f644e2eb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac1f8aa032e2f89a032e0f82d901970b2d85f69f7db73e3bd9050bb4b89702e05c1f15d9050bb4bbcb81702e0f8ef5c065c1f134b050b840b89e009a03c17dd5c4e32d38f3ec89c5d60aeb057582bac15d60aeb057582bac1fb50be6b3585441be7b7e940096d27eeb08017540b371a05c03ea62d1bfed4ac699e063ed490f48cd540bd5e926a4a85c87a70f0d82085ade">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=918B6703052398FA5C152AAC782FA51F&e=i.1354338000&t=i.10&v=i.2&l=l.25.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.2.0.0.0&pr=l.4.8.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.-1.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:40:09 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"114">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d6c5dd6c96df697e94640a6a2254100225042b8d86e34ca98b46ffcfce0f0d840b60039fe8c9c8c7dfcd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 30 Oct 2012 22:51:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15006">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d7c6de6c96e4593e94642a6a2254100225040b8076e09f53168dffd0cf0f0d846c2e085fce5f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0cb8f81c7b6496e4593e9403aa693f750400894102e043702ea98b46ffcbe3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 20:07:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"51622">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=369068">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 20:11:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbca6c96df3dbf4a002a693f75040089400ae36ddc1094c5a37fd40f0d840be1699fd25f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0cbed34d376496df3dbf4a01e5349fba820044a019b816ae05a53168dfcfe7e6d6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 02:55:22 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"19143">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=394445">>}, +{<<"expires">>, <<"Thu, 08 Nov 2012 03:14:14 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88dfcee66c96c361be940094d27eea0801128266e099b8db2a62d1bfd8d70f0d837da75ad6c15891aec3771a4bf4a523f2b0e62c0db6cba16b6496c361be9403ea693f750400894133704f5c69953168dfd2408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 23:23:53 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"9474">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=553714">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 23:28:43 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e3d27b8b84842d695b05443c86aa6f6c96dc34fd280654d27eea080112806ae34f5c65e53168dfdddc0f0d83780c83dbc65891aec3771a4bf4a523f2b0e62c0dbacb4cbf6496dc34fd281029a4fdd410022500d5c6ddb82794c5a37fd7c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 04:48:38 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8030">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573439">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:57:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e7d6c16c96e4593e941014cb6d4a080112816ae36fdc65f53168dfe0df0f0d84080216ffc9dad9d8c3de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 20 Jun 2012 14:59:39 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"10115">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88768586b19272ffd8c36c96df3dbf4a080a436cca08007d4106e05cb800a98b46ffe2e10f0d831040dfe05f87352398ac4c697f5891aec3771a4bf4a523f2b0e62c0cb616dc676496e4593e9403aa693f7504008940b7702fdc644a62d1bfddc8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 20 Aug 2009 21:16:01 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2105">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=351563">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 15:19:32 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c2dcc76c96e4593e94642a6a225410022500d5c002e09d53168dffe6e50f0d8465b7dd77e4cfe0dfdec9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 04:00:27 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"35977">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c3dd6c96df697e9413aa435d8a0801028176e34e5c6dd53168dfe70f0d830baf3be5c25891aec3771a4bf4a523f2b0e62c0cb4f8197f6496e4593e9403aa693f7504008940b571976e09e53168dfe1cccb5a839bd9ab">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Tue, 27 Apr 2010 17:46:57 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"1787">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=349039">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:37:28 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c7e1cc6c96c361be940b4a6a2254100215040b806ae09a53168dff52848fd24a8fc00f0d83782f3f408725453d44498f57842507417fd65891aec3771a4bf4a523f2b0e62c0dbacb6d836496dc34fd281029a4fdd410022500d5c6dfb817d4c5a37fe7d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 14 Oct 2011 20:04:24 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"8189">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573550">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cce6d16c96c361be940baa65b6a504008540b371b76e09c53168dfc2c40f0d8313c26bc1d9c0bf6196dc34fd280654d27eea0801128166e340b807d4c5a37fd4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 17 Jun 2011 13:57:26 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2824">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573550">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ce4087aaa21ca4498f57842507417fd46c96df697e940b6a693f7504008540bf71966e34ca98b46fc5c70f0d84085f71dfdcc3c2c0d6c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 15 Nov 2011 19:33:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11967">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573550">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d0bfd56c96c361be940814cb6d4a08010a8166e36edc0baa62d1bfc6c80f0d8313406bc5dd5891aec3771a4bf4a523f2b0e62c0dbac85b176496dc34fd281029a4fdd410022500d5c6c571a0a98b46ffc3d9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 10 Jun 2011 13:57:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2404">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573152">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:52:41 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d3c2d86c96df3dbf4a004a65b6a50400854106e34edc69b53168dfc9cb0f0d840bad3cffc8e05891aec3771a4bf4a523f2b0e62c0cb6265d776496e4593e9403aa693f7504008940b771966e01c53168dfc6dc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 02 Jun 2011 21:47:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"17489">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=352377">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 15:33:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d6c56c96df697e94642a65b68504008940b7700fdc69953168dfcc0f0d8375d03dcbe3cac9c7dddcce">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Tue, 31 Jul 2012 15:09:43 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"7708">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573550">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88d7c6dc6c96c361be94132a681d8a0800754102e34ddc69e53168dfcdcf0f0d83680cb7cce4cbcac8de">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 23 Mar 2007 20:45:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"4035">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573550">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:19 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d8c7dd6c96df3dbf4a019532db52820040a059b8015c6c4a62d1bfced00f0d830b8e03cdd7c2c1c9df">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 03 Jun 2010 13:02:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1660">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=352377">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 15:33:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d9c8de6c96df3dbf4a082a65b6a504008940bd71b15c682a62d1bfcfd10f0d84085e79afe65890aec3771a4bf4a523f2b0e62c0eb6f3416496dd6d5f4a01a5349fba820044a04171a6ae040a62d1bfcce2d0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 21 Jun 2012 18:52:41 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"11884">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=75841">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:44:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88dccbe16c96e4593e94642a6a2254100225041b8d06e36253168dffd2d40f0d840bae38efd15f88352398ac74acb37f5890aec3771a4bf4a523f2b0e62c0d800cbb6496dd6d5f4a01a5349fba820044a019b8cb5700e298b46fd0e6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 31 Oct 2012 21:41:52 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"17667">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=50037">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 03:34:06 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e0cfe56c96df3dbf4a01b532db42820044a081702ddc65c53168dfd6d80f0d83101f17d55f87497ca589d34d1f5890aec3771a4bf4a523f2b0e62c0f38d0016496dd6d5f4a01a5349fba820044a059b8d02e040a62d1bf6196dc34fd280654d27eea0801128166e340b810298b46ff408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 05 Jul 2012 20:15:36 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2092">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private, max-age=86400">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:40:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88bfe66c96e4593e94134a65b6a504003ea05fb8c86e36153168df0f1394fe42d81c2124582f05669c903209e8c123a407f3dc408a224a7aaa4ad416a9933f03333835d7c45885aec3771a4be00f0d03323333408aa924396a4ad416a9933f023632">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Wed, 24 Jun 2009 19:31:51 GMT">>}, +{<<"etag">>, <<"\"1506ccd-181-46d1d28b0d7c0\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cteonnt-length">>, <<"385">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"233">>}, +{<<"ntcoent-length">>, <<"62">>} +] +}, +{ +undefined, +<<"88768586b19272ffda7b8b84842d695b05443c86aa6f6c96df3dbf4a0595328ea504008540b7702edc034a62d1bfe2e40f0d830bce83e15f911d75d0620d263d4c795ba0fb8d04b0d5a7c9c8c7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 13 Jan 2011 15:17:04 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1870">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=86400">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 13:40:10 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c7c1c50f1394fe42d81c2124582f05669c903209e8c123a407f3e3c4ddcac3e50f0d023734c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Wed, 24 Jun 2009 19:31:51 GMT">>}, +{<<"etag">>, <<"\"1506ccd-181-46d1d28b0d7c0\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cteonnt-length">>, <<"385">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"74">>}, +{<<"ntcoent-length">>, <<"62">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f92497ca589d34d1f6a1271d882a60e1bf0acf74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cb5a839bd9abcb768320e52fc80f0d830bce39408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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/html; charset=UTF-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1866">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"8852848fd24a8f588aa47e561cc581c034f0015f87352398ac4c697fd36496dc34fd281029a4fdd410022502cdc681702053168dff6c96df697e94642a65b68504008941337002b8dbaa62d1bf768cc17b729fd513d8c3577087fb4085f2b10649cb034849540f0d023335">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=604800">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:10 GMT">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 13:40:10 GMT">>}, +{<<"last-modified">>, <<"Tue, 31 Jul 2012 23:02:57 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BF1)">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"35">>} +] +}, +{ +undefined, +<<"88d16c96df3dbf4a05b52f948a08010a817ee01bb8d36a62d1bfc5d1cb4087aaa21ca4498f57842507417fd05890aec3771a4bf4a523f2b0e62c0d8990356496dd6d5f4a01a5349fba820044a01ab810dc6d953168df6196dc34fd280654d27eea0801128166e340b807d4c5a37f0f0d84684065ffdb408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Thu, 15 Dec 2011 19:05:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=52304">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 04:11:53 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:09 GMT">>}, +{<<"content-length">>, <<"42039">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d7c2d66c96dc34fd28069486d994100225041b816ae34da98b46ffcbd10f0d023636bfc95890aec3771a4bf4a523f2b0e62c0e840cb96496dd6d5f4a01a5349fba820044a01fb826ae01e53168df6196dc34fd280654d27eea0801128166e340b811298b46ffe0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:14:45 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"66">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=71036">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 09:24:08 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dbc6da6c96dc34fd28069486d994100225041b817ee01b53168dffcfd50f0d03323437c3d95891aec3771a4bf4a523f2b0e62c0e34fb6d7f6496dd6d5f4a01a5349fba820044a01db8d0ae34e298b46fc1e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"247">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64954">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:46 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88dec9ddc0d1d70f0d83109e7fc5db5890aec3771a4bf4a523f2b0e62c0e34f89a6496dd6d5f4a01a5349fba820044a01db8d0ae05c53168dfc3e5">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:05 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2289">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64924">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88e0cbdf6c96dc34fd28069486d994100225041b817ee01953168dffd4da0f0d83134d33c8dec0bfc4e6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 04 Aug 2012 21:19:03 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"2443">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=64924">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 07:42:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c4e17b85bc73f5317f6c97dc34fd280654d27eea0801128166e32f5c134a7fb000005894a47e561cc5802c8be94a6d4256b0bdc741a41a4b4088ea52d6b0e83772ff8e49a929ed4c0e03e94a47e607da07408721eaa8a4498f5788cc52d6b4341bb97fe1df798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"vary">>, <<"Cookie">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:38:24 +0000">>}, +{<<"cache-control">>, <<"max-age=132, must-revalidate">>}, +{<<"keep-alive">>, <<"timeout=60, max=940">>}, +{<<"connection">>, <<"Keep-Alive">>}, +{<<"content-type">>, <<"text/html; charset=UTF-8">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88e7d2e66c96e4593e940bca681d8a08007d40bd71b05c03ca62d1bfdbe10f0d03313838cf5f87352398ac5754df5891aec3771a4bf4a523f2b0e62c0cb4f842e76496e4593e9403aa693f7504008940b57197ae34f298b46fce7f0488ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 18 Mar 2009 18:50:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"188">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=349116">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:38:48 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88768586b19272ffd87b8b84842d695b05443c86aa6fc4e1e70f0d82081cd5c35891aec3771a4bf4a523f2b0e62c0cb4f8442f6496e4593e9403aa693f7504008940b57197ae36d298b46fd3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 18 Mar 2009 18:50:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"106">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=349122">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:38:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c1dbc0c6e3e90f0d820b21d7c5bfbed3c2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 18 Mar 2009 18:50:08 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"131">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=349122">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:38:54 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c1dbc06c96e4593e9403ea6e2d6a08007d40b97020b820298b46ffe45a839bd9ab0f0d03333531d9c75891aec3771a4bf4a523f2b0e62c0cb4f85b776496e4593e9403aa693f7504008940b57197ee09f53168dfd7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 09 Sep 2009 16:10:20 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"351">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=349157">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:39:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c5dfc4c1e7c00f0d82109adbc9bfbed7c6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Wed, 09 Sep 2009 16:10:20 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"224">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"cache-control">>, <<"private, max-age=349157">>}, +{<<"expires">>, <<"Wed, 07 Nov 2012 14:39:29 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"884003703370fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f96497ca58e83ee3412c3569fb50938ec4153070df8567b4090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbc3da768320e52f5885aec3771a4b0f0d03383732408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"872">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"887684aa6355e7e15f87352398ac4c697fd6d17f198749a929ed4c02076496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f4085aec1cd48ff86a8eb10649cbf5886a8eb10649cbf7f0dd2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 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\"">>} +] +}, +{ +undefined, +<<"880f28ff6eb1288a1861860d19d0cbd878d84c2db1fb9fb3967aab3c7af259eeee89a5726bdfb830f38eac1ebb65f18eefede04c3b25b3be8d5911feeebecbfebaf6e39f893ab5f9bb7e2d993477d72714cf7c9e929aa7607feec97323ce44d7c25c42bedd70b59b15b8c5362af196abfa59ba0d0e17019cbbc886925064ff7fb476a73bf1e4aefe3c99ad71aebbc1ce69f5e6e97ce5e9551eed437d3617b76d6d1a6bb2ddd1bb6fe333cd831f59ac21388f422cb53e73b4df57af4d34b34107da97cf48cd540bd85ee82197a8a9fb53079acd615106eb6afa500cada4fdd61002ca8166e340b811298b46ffb5358d33c0c74088f2b5761c8b48348f89ae46968e61a00cac2f7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349c2c36496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7e0d5d96196dc34fd280654d27eea0801128166e340b811298b46ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs38FVrcF5/ZLq6rynLbPIrzBMgf6gCZEFYbnEyqJwHBZC0garfrvMOIs+B939ykqVLVck4XSTGQIMvPdVthDcyttnh/a+rfKsxItpUfG2D5pA4KGuH2gGpHenDN3B0M6eEi6BWcidf0I+ZlqmL9bIpDHIKu64kT0YghPKjDoejnlzus5jQeqqP4igBfBMSRX3hgEHkgrccVaMsrutxL45k8Cggfg==; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:40:12 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd4-bgas03-2">>}, +{<<"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:40:12 GMT">>} +] +}, +{ +undefined, +<<"88db4087aaa21ca4498f57842507417fdb6c96c361be940094d27eea0801128066e01eb827d4c5a37f52848fd24a8fd90f0d840bc0087f408725453d44498f57842507417f5f88352398ac74acb37f5891aec3771a4bf4a523f2b0e62c0dbacb6d3f6496dc34fd281029a4fdd410022500d5c6dfb820a98b46ffc5e3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 03:08:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"18011">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"48033330337f25842507417fc7768dd06258741e54ad9326e61c5c1f4089f2b567f05b0b22d1fa868776b5f4e0df0f1fffc704624223a3698daa82000000450eb84b68194f1352b3e1890885e634bfe484458590d61489802117c48442689e007c4844268ef003e2422241a600b2d85f6c00089f10be2422106ae0f1e3c2f57a49a92a1721e9f89088b6c340c56398a862af5616631ea60d5485f2bce9a68f89088b0b2c13a535dc618f1e3c2f57a49a92a1721e9604008980858034c164b483498f530592834a5606b545f0b7535522c79564da93d86aa65866a50b24eb523ea55909b642d4942c8a47624b62f3a69a15670d6398be07524b240d2a272c2cb020862d442fc72deb90f14b005902e113ebb8f2eeb2b09c780103ef09a5d9009b7dc6dcf8e5bd7ee989069200b205c227d771e5dd656138f00207de134bb20136fb8db8b8596c2fb4fbedbee081f1cb7ae9f702cd7c72debc73c0ffc72debdb4405a96e1bbe396f5c924026be396f5d1640165c73cbae3df1cb7afd0f0732a3e396f5d2683497c2a20733d9d55103696631ea5440d25f0854405951037ce55440d25f0a881ccf6755440de6a4a8f8e5bd7e88839951f1cb7afd3bc015ddf8e5bd72260b6aeb51fc55f1cb7af1a207df6bcb8d3ff1cb7af29a0d27f8e5bd74f7802b81777e396f5e4a2007c72deb951078f1e17abd24d4950b90f4b158e62a18abd58598c7a98355217caf3a69a3e396f5c9345541a57e6bb1b4b318f57c72debfb8ac24d541a57e6bb1b4b318f57c72debfb8a6ad306e291263d4a88186c3d49f8e5bd7f7155e928801a06be67f072babc9467bff9653dfcc37cb8f235c1d147cf41ecdd2170fb7f29273439f2f7e8643099ece1cf8afceaf2d59d70e4f8e5bd7f7155e93241f1cb7afee2b293490000eca008002105c700d3b194af80028fe396f5fdc5616582af49352542e43d3f1cb7af677801f1cb7af49222f783e396f5fba629624d1de0f8e5bd7ee98a589344f00596c2fb600041f1cb7afdd314b14907c72debf74c52c4883e396f5fba629621c1f1cb7afdd314b070f0d01300f28ff2986f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a66861861861861870430c30d39fc430e5c05a38dec78ebe3b1fb010c39fa968e37b763af8ecff7602187280b471bd263af8ec7dd0430e7f05a38de7b1d7c7643b21861c73e3861bcf63af8ec9fcb9c78430c30c30adf6a5634cf031f6a17cd66b0a8837cf6fd28102d7ca458400b6a041704edc65a53168dff7f0eb7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3f">>, +[ +{<<":status">>, <<"303">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"location">>, <<"/dcsj5tb4n100000sl76culaeo_4f3w/dcs.gif?dcsredirect=112&dcstlh=0&dcstlv=0&dcsdat=1351950012922&dcssip=www.nytimes.com&dcsuri=/pages/nyregion/index.html&dcsref=http://www.nytimes.com/2012/11/04/education/edlife/a-new-kind-of-tutoring-aims-to-make-students-smarter.html%3Fpagewanted=4%26ref=science&WT.co_f=130.129.68.73-2680109824.30259656&WT.vt_sid=130.129.68.73-2680109824.30259656.1351949959620&WT.tz=-4&WT.bh=9&WT.ul=en-US&WT.cd=24&WT.sr=1366x768&WT.jo=Yes&WT.ti=New%20York%20Region%20News%20-%20The%20New%20York%20Times&WT.js=Yes&WT.jv=1.7&WT.ct=unknown&WT.bs=994x649&WT.fi=No&WT.tv=1.0.7&WT.dl=0&WT.es=www.nytimes.com/pages/nyregion/index.html&WT.cg_n=N.Y./Region&WT.z_rcgn=N.Y./Region&WT.z_gpt=Section%20Front&WT.z_nyts=0Ma.K9EWB.dlLDXrmvxADeHI4U72bYMorSdeFz9JchiALJvjis/thrUYV.Ynx4rkFI&WT.z_nytd=&WT.z_rmid=007f010022166047bee9002b&WT.z_ref=nytimes.com&WT.rv=0&WT.mc_ev=&WT.vt_f_tlv=&WT.vt_f_tlh=1351950010&WT.vt_f_d=&WT.vt_f_s=&WT.vt_f_a=&WT.vt_f=">>}, +{<<"content-length">>, <<"0">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAAEAAAAmLwAAJEelVCHHpVQ9r0AALkelVCSHpVQ+r0AAJ0elVCdHpVQ970AALwelVC8HpVQAQAAAHhHAAC8HpVQhx6VUAAAAAA-; path=/; expires=Thu, 10-Dec-2015 10:27:34 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>} +] +}, +{ +undefined, +<<"88768586b19272ffca7b8b84842d695b05443c86aa6f6c96c361be940094d27eea0801128066e01cb8cb4a62d1bfcae50f0d8413600b7fc9c8c7c6cd7f0588ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 03:06:34 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"25015">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c1cdc06c96c361be940094d27eea0801128066e01cb810a98b46ffcc5a839bd9ab0f0d841362039fcccbcac9d0c0">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 03:06:11 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"25206">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=573549">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 04:59:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"8b4088f2b0e9f6b1a4585fb391f05ebdb5fa371c63d3e2daf868c9246c17d0292f73ddb2ac8cfeed4e47b1e3c3b6ee0e09467e89d3a2ef28c5f8e5faecfdf7408cf2b0e9f6b585ed6950958d278dbee61bce061759bc176f61741f6196dc34fd280654d27eea0801128166e340b81694c5a37f5887a47e561cc58020c26c96dc34fd280654d27eea0801128166e32ddc13ea62d1bf0f139afe5e136d322706cbedb217648dd8c2fbadb8d4a37992b4eb9fcfd29f0f0d847c416dbf76868691fb3d5b99">>, +[ +{<<":status">>, <<"304">>}, +{<<"x-amz-id-2">>, <<"d90CCR9lSoaaNwupUMIdb/ey0mevoBrnI3ZRtI8HHFRBEUtsLjtNMBWb2X6DprZz">>}, +{<<"x-amz-request-id">>, <<"D6FC61A73C17CF70">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:14 GMT">>}, +{<<"cache-control">>, <<"max-age=10">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 13:35:29 GMT">>}, +{<<"etag">>, <<"\"8254326a395317db7b197564fa83e476\"">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-type">>, <<"">>}, +{<<"content-length">>, <<"92155">>}, +{<<"server">>, <<"AmazonS3">>} +] +}, +{ +undefined, +<<"88cd6196dc34fd280654d27eea0801128166e340b81654c5a37fcdcc0f28ff2986f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a66861861861861870430c30d39fc430e5c05a38dec78ebe3b1fb010c39fa968e37b763af8ecff7602187280b471bd263af8ec7dd0430e70168e379ec75f1d90ec861871cf8e186f3f8ebe3b27f2e71e10c30c30c2b7da958d33c0c7da85f359ac2a20d07abe94032b693f758400b4a059b8d02e05953168dffcbdf64022d31dfe30f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAAEAAAAmLwAAJEelVCHHpVQ9r0AALkelVCSHpVQ+r0AAJ0elVCdHpVQ970AAL0elVC8HpVQAQAAAHhHAAC9HpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:40:13 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88cb6c96dc34fd280654d27eea0801128076e32fdc682a62d1bfd6cbc7d85f911d75d0620d263d4c795ba0fb8d04b0d5a7588faec3771a4bf4a523f2b0e62c0c801f6496dc34fd280654d27eea0801128166e34ddc0894c5a37fdc0f0d83680eb3ccd8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 07:39:41 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=300">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:45:12 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:12 GMT">>}, +{<<"content-length">>, <<"4073">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d9588ca47e561cc58190b6cb80003f5f87352398ac5754dfc50f139afe658db1cadb848dc75d780400658d96c2e15d2332bad159fe7f6496dd6d5f4a0195349fba820059502cdc681702ca98b46f6c96e4593e94034a435d8a0801128205c65eb826d4c5a37f768cc17b729fd513d8c357616bfb7f0fb425de1c2eebd7fba127711d64b7097dc9b3fdbf1e9db7adf1c7a6aef36198f3cf1b5ae5fd928b39e2659a99c5a0577289be7bd3db7f0f8d71d6debd845782e617ae82f03f4085f2b10649cb034849540f0d830b8e0b">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/png">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"fb5af56cb67780c01fb3516e7c3f74e3\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Wed, 04 Apr 2012 20:38:25 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BA4)">>}, +{<<"x-amz-id-2">>, <<"cBUUBPPZMto6skduFezdQ+9bNRCuwVjOvgFgohhb4PfZdlrYG33n3GM2BJ25YTtq">>}, +{<<"x-amz-request-id">>, <<"6758CF2C16F8B0C0">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"1662">>} +] +}, +{ +undefined, +<<"88e1c5dfcb0f139afe40fb401b621c8ec6cb4cb72baeb6f85e8de046079e944eff3fc36c96df3dbf4a32053716b5040081408ae09fb8dbea62d1bf768dc17b729fd513d8c3576f5efeff7f03b6e97eabfa3a0cffeeae19daef2cb2f0e0cefc3af7fad21cde72a5fbfe9cb6f64b06cde8fc49b9ff1376e3671cc01679e5ff7fec59baff7f038d13ee5dbae3e17997616d9badffc20f0d03393830">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"0940a52ad7b3435f775918b80b088f27\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Thu, 30 Sep 2010 12:29:59 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BCC)">>}, +{<<"x-amz-id-2">>, <<"jDnDMjao+nUL4vfffUU3TFPTyN1KxJt9Dy6uCIra3CbwdS9wgqVrVK02Lhf++2Kk">>}, +{<<"x-amz-request-id">>, <<"296BB691837A53B5">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"980">>} +] +}, +{ +undefined, +<<"88e5c9e3cf0f139afe5d2b32caecaebcd3c378237198dc288a08e58d97da75f7ff9fc76c96dd6d5f4a044a65b6a504008540b771a66e082a62d1bf768cc17b729fd513d8c357610ff77f02b4d98f3f6bd5eaad0ef7e1c747e690ecf78ef69bb5f164ba05b47c457b4e1ddc9dd9b1bbbb37187cc5c00d65e31c9c5d712e5bae1f7f028c6b036e09d1044dc2fbef382fc60f0d83138077">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"7e3ff7f7848a81a63b6e2e0bfb394799\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Sun, 12 Jun 2011 15:43:21 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BA1)">>}, +{<<"x-amz-id-2">>, <<"QHLqCpOps7vUVMXN1QzHCNBpV3eM2RaV2CNFSW7QQ5BQSiaY2U04JVbdV76t6uPA">>}, +{<<"x-amz-request-id">>, <<"4E56272125A99862">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"2607">>} +] +}, +{ +undefined, +<<"8852848fd24a8fce5f88352398ac74acb37fd50f139afe599657dd680c8a591d7442665900dbe4724132d1638da67f9fcd6c96df697e940b4a65b6a504008540b971b76e34fa98b46f768dc17b729fd513d8c3576fe1feff7f04b5ec048e3e71e1e6dffb781ee987c34c37f8f8bfde7e1a2740d14e5dbcbf783de3f7ce17777fbdfcf8fad137925dd0d3b56f166e224f7f048d6ef05dbcd0a1be2c0cb975f7ffcc0f0d8364417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"3ff974032fd77223fd059c6d234ebb43\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Tue, 14 Jun 2011 16:57:49 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BDF)">>}, +{<<"x-amz-id-2">>, <<"q0tabYbFY5+80zmAw4/5X92+LUMhsasmJRWZU8wZxF7S+TYVyMgxcBM47nT2KV2t">>}, +{<<"x-amz-request-id">>, <<"5C17C42AD2E36B99">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"3219">>} +] +}, +{ +undefined, +<<"88c3d3c2d90f1399fe464081b084030b2366413528a36e46c029630491b457bf9fd16c96df697e940b8a65b6a504003ea0857042b800298b46ff768dc17b729fd513d8c35761bffdff7f02b6868e3cbb7ef7f3a4787de1b3cf6ff79cec74db43cebc6f197de7d05dd4d57c7470d9c8ecb37fbe1999bbc13bff6ac187fdfadb95be5f7f028dc2e5e799bf80007af3b7f06187d00f0d830b8eb3">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"ac105110a13a3d24f2b5d502fb0db4e8\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Tue, 16 Jun 2009 22:22:00 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BAD)">>}, +{<<"x-amz-id-2">>, <<"AlVWqZvxNaFzFrxq+Lo/jRl878iwJzLMeSmnDalUQWo33DvFg3BUtTZnEF+yRJ5W">>}, +{<<"x-amz-request-id">>, <<"F6C83DE008C7DEFA">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"1673">>} +] +}, +{ +undefined, +<<"88c7d7c6dd0f139afe5c205b7657256dc7c20236018199463783236d36d391c9fcffd56c96df697e94038a6e2d6a08010a8205c13571a0298b46ff768dc17b729fd513d8c35761bdfdff7f02b5cd86f76fcc3ab1edcb1f2a0567ebb865efb4c9cf64e487f6aedc324b3f0edd6fe4bffbab65d0126f3d7774868bcfec9c15eaeffacf7f028d7aee1136fdf69d700e42ebce7fd40f0d83134cbb">>, +[ +{<<":status">>, <<"200">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"cache-control">>, <<"max-age=31536000">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"etag">>, <<"\"6c157f6f56910c50a03faa81d54546bd\"">>}, +{<<"expires">>, <<"Sun, 03 Nov 2013 13:40:13 GMT">>}, +{<<"last-modified">>, <<"Tue, 06 Sep 2011 20:24:40 GMT">>}, +{<<"server">>, <<"ECS (lhr/4BAC)">>}, +{<<"x-amz-id-2">>, <<"KFCqXFOHRJbWl2rZ7FfvRitLrhcAZnqUIfhUqkDIDZOQB0cgxkSjAlC9Qh0pOvZ3">>}, +{<<"x-amz-request-id">>, <<"8BF259D47606A786">>}, +{<<"x-cache">>, <<"HIT">>}, +{<<"content-length">>, <<"2437">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d01305f87352398ac4c697fe34003703370e9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7768586b19272ff0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b371a05c0b2a62d1bfed490f48cd540bf5b3cc8bd454ff408af2b585ed695095926a4b92bf009d0a89802cb617db0002cbef32f3efff4089f2b20b6772c8b47ebf8e8ca321ea58600097eb679917a8a9408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:13 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:40:13 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=271 t=1351950013983899">>}, +{<<"x-served-by">>, <<"beacon-a002.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3b6196dc34fd280654d27eea0801128166e340b81694c5a37fc50f0d0234337f01842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:14 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +}, +{ +undefined, +<<"88c44087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96c361be940094d27eea080112817ee362b81754c5a37fd85a839bd9ab0f0d840b6e059f408725453d44498f57842507417fd95891aec3771a4bf4a523f2b0e62c0db8d38e076496dc34fd281029a4fdd4100225002b8c86e05e53168dff6196dc34fd280654d27eea0801128166e340b81754c5a37fc9">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 19:52:17 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15613">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=564661">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 02:31:18 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccc5c46c96df697e94032a435d8a080112816ee085704d298b46ffdec30f0d830bedb7c2dd588faec3771a4bf4a523f2b0e62c027dff6496dc34fd280654d27eea0801128166e34ddc0b8a62d1bfc1cc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Tue, 03 Apr 2012 15:22:24 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"1955">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=299">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:45:16 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cfc8c76c96dc34fd280654d27eea0801128015c6dab8d014c5a37fe1c60f0d840b4e342fe05891aec3771a4bf4a523f2b0e62c0dbaf81c6b6496dc34fd281029a4fdd410022500e5c643704153168dffc4cfc7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 02:54:40 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"14642">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88d2cbca6c96c361be940094d27eea080112817ee36d5c6df53168dfe4c90f0d840b6e059fc8e35891aec3771a4bf4a523f2b0e62c0db4eb2fb56496c361be9403ea693f750400894106e34cdc642a62d1bfc7d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 02 Nov 2012 19:54:59 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"15613">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=547394">>}, +{<<"expires">>, <<"Fri, 09 Nov 2012 21:43:31 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3c85f87497ca589d34d1f0f28cfd3cf7adba006885a5faf1f61cdb29f77ff2ca7bf986f971e65ece1b97f586cd59642e1f6fe524e6873e5efd0c86133d9c39f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d36496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfd0798624f6d5d4b27f5f8b1d75d0620d263d4c7441ead94089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d82105c">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MA4.kVz1KQmzDXrmvxADeHK.rUS.yFrOJdeFz9JchiALJvjis/thrUYV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"216">>} +] +}, +{ +undefined, +<<"88c25f911d75d0620d263d4c795ba0fb8d04b0d5a7d06496df3dbf4a002a651d4a05f740a0017000b800a98b46ffc37688aa6355e580ae05c10f28ff8e01abd256a607b0e113b75dbcee010aee0699770b581d136e32e3e1badde17c16032e165b69965e0001f0980cb841f1de032ecfc51050b89b5c4f004d01e0beeae271969c79f644e2e1136d3cf32d3615d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb057582bac15d60aeb07e2a80cb8be2680cb83e0b64065c2cb617da7df6dcf8ef64142ed2ecae05c0b83e2bb20a176977d702e05c1f1deb80cb83e26960a17081713c01340782fbab89c65a71e7d9138b844db4f3ccb4d857582bac15d60aeb057582bac15d60fda85f359ac2a20df3dbf4a004b693f758400baa059b8d02e05d53168dff6a5634cf031f6a487a466aa05eaf49352542e43d3f0f0d820859dd">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/1.0.0">>}, +{<<"set-cookie">>, <<"nyt-m=8FF27B7C7E22BE437F4E72563691B5C2&e=i.1354338000&t=i.10&v=i.3&l=l.25.2802408197.2634689326.1254883451.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1&n=i.2&g=i.0&er=i.1351949956&vr=l.4.3.0.0.0&pr=l.4.9.0.0.0&vp=i.0&gf=l.10.2802408197.2634689326.1254883451.-1.-1.-1.-1.-1.-1.-1; expires=Thu, 02-Nov-2017 13:40:17 GMT; path=/; domain=.nytimes.com">>}, +{<<"content-length">>, <<"113">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"885887a47e561cc5801fe3d3c07f23a1bdae0fe725fbca5fddad4bdab6a97f0711a9be1c8353570daa5de1b94e1a727f3fc67689aa6355e5802eeaedbf0f0d023433e0">>, +[ +{<<":status">>, <<"200">>}, +{<<"cache-control">>, <<"max-age=0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"expires">>, <<"Thu, 01 Jan 1970 00:00:01 GMT">>}, +{<<"p3p">>, <<"CP=\"IDC DSP COR DEVa TAIa OUR BUS UNI\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"server">>, <<"nginx/0.7.59">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"48033330335885aec3771a4b6196dc34fd280654d27eea0801128166e340b81714c5a37f0f1fa29d29aee30c48119bb99b92b178b3d36b9283db24b61ea4af5152c566f25a1798d2ff7f039dbdae0fe74eac8a6bdd09d4d5c36a9934df52f6ad0a69878a9bb7c3fcff768dd06258741e54ad9326e61d5c1f408cf2b0d15d454addcb620c7abf8769702ec8190bff7f0b868776b5f4e0df0f0d0130e7">>, +[ +{<<":status">>, <<"303">>}, +{<<"cache-control">>, <<"private">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:16 GMT">>}, +{<<"location">>, <<"http://d1aivi5dp2wry5.cloudfront.net/pixel.gif">>}, +{<<"p3p">>, <<"CP=\"NOI PSAo OUR IND COM NAV STA\"">>}, +{<<"server">>, <<"Microsoft-IIS/7.0">>}, +{<<"x-aspnet-version">>, <<"4.0.30319">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"content-length">>, <<"0">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88eadcd10f28d0d3cf7adba0068d6ff5a68b421badd57ff2ca7bf986f971e65ece1b97f586cd59642e1f6fe524e68734bf9961c1832fae14e4e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fd0cfcee0cdd1e4cb0f0d023539d0cfce408a224a7aaa4ad416a9933f023435">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MP9kmlu11B5nDXrmvxADeHK.rUS.yFrOJdeFz9JchiAKfXJAEEJyUmIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"connection">>, <<"close">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"59">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cteonnt-length">>, <<"45">>} +] +}, +{ +undefined, +<<"88dd768586b19272ffd2d1d00f28d0d3cf7adba0068d6ff5a68b421badd57ff2ca7bf986f971e65ece1b97f586cd59642e1f6fe524e68734bf9961c1832fae14e4e2bf3abcb5675c393ed4ac699e063ed490f48cd540bd5e926a4a85c87a7fd0d1d2408aa924396a4ad416a9933f023530e7d4e30f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"set-cookie">>, <<"NYT-S=0MP9kmlu11B5nDXrmvxADeHK.rUS.yFrOJdeFz9JchiAKfXJAEEJyUmIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"ntcoent-length">>, <<"50">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88bfe6e56c96df3dbf4a002a693f750400894102e36d5c13ea62d1bf52848fd24a8fe50f0d83740207e4cf5890aec3771a4bf4a523f2b0e62c0eb8e3c06496dd6d5f4a01a5349fba820044a04171b7ae05d53168dfe3408721eaa8a4498f5788ea52d6b0e83772ff">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Thu, 01 Nov 2012 20:54:29 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"7020">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=76680">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 10:58:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c44087aaa21ca4498f57842507417f7b8b84842d695b05443c86aa6f6c96dc34fd280654d27eea080112806ee34fdc69e53168dfc45a839bd9ab0f0d84682d340f5f88352398ac74acb37fe4e3e9c3408725453d44498f57842507417f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:49:48 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"41440">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cac3c26c96dc34fd280654d27eea080112806ee360b816d4c5a37fc8c10f0d846d965a73bfc0e6e56196dc34fd280654d27eea0801128166e340b81754c5a37fc6">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:50:15 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"53346">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88ccc5c46c96dc34fd280654d27eea080112806ee34f5c6dc53168dfcac30f0d846db79c07c1c2e8e7bfc7">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:48:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"55860">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cdc6c56c96dc34fd280654d27eea080112806ee34fdc0bea62d1bfcbc40f0d8469c0320fc2c3e9e8c0c8">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:49:19 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"46030">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88cec7c66c96dc34fd280654d27eea080112806ee361b8d814c5a37fccc50f0d84136d321fc4eae9c1c9c3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:51:50 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"25431">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"88cfc8c76c96dc34fd280654d27eea080112806ee362b811298b46ffcdc60f0d8413ae3ccfc4c55891aec3771a4bf4a523f2b0e62c0dbaf81c6b6496dc34fd281029a4fdd410022500e5c643704153168dffc4cc">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:52:12 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"27683">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88d2cbca6c96dc34fd280654d27eea080112806ee360b8db8a62d1bfd0c90f0d84742079afc7c8c0bfc5cd">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:50:56 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"71084">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887f19fdacf4189eac2cb07f33a535dc61898e79a828e442f32f21ed8e82928313aaf5152c56398a39189895455b35c4bf9a68fe7e94bdae0fe6f70da3521bfa06a5fc1c46a6f8721d4d7ba13a9af75f3a9ab86d53269bea70d3914d7c36a9934ef52fe0d0a6edf0a9af6e052f6ad0a69878a9ab7de534eac8a5fddad4bdab6ff35f92497ca589d34d1f6a1271d882a60e1bf0acf74090f2b10f524b52564faacab1eb498f523f85a8e8a8d2cbccc8768320e52fde0f0d830bee39408cf2b794216aec3a4a4498f57f8a0fda949e42c11d07275f408bf2b4b60e92ac7ad263d48f87873e7d5ca1cf9f558364417759871a52324f496a4f">>, +[ +{<<":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/html; charset=UTF-8">>}, +{<<"x-content-type-options">>, <<"nosniff">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1966">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88dbd46c96dc34fd280654d27eea080112806ee361b82654c5a37fd90f0d8465a65e6bd0d1c9c8ced6d4d2">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 05:51:23 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-length">>, <<"34384">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/jpeg">>}, +{<<"cache-control">>, <<"private, max-age=579064">>}, +{<<"expires">>, <<"Sat, 10 Nov 2012 06:31:21 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>} +] +}, +{ +undefined, +<<"88c65f96497ca58e83ee3412c3569fb50938ec4153070df8567bc5d36196dc34fd280654d27eea0801128166e340b81794c5a37fc5e50f0d830804d7c4c3c2c1">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"1024">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88bede7f1e83081c7bd85f87497ca589d34d1fe7d60f0d826c41">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"Apache">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"521">>} +] +}, +{ +undefined, +<<"887691dd6d4b6ad3816e458d6dc5b3b96c61c5c3c1bf0f28cfd3cf7adba0068731169dc06ecb785fbff9653dfcc37cb8e1e90f6dddcd2d65fc90b87dbf94939a1cd2fe6587060cbeb853938afceaf2d59d70e4fb52b1a67818fb5243d2335502f57a49a92a1721e96496df3dbf4a002a5f29140befb4a05cb8005c0014c5a37f5886a8eb10649cbf4085aec1cd48ff86a8eb10649cbfda798624f6d5d4b27f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0M6GemS05ruUDDXrmvxADeHAjAqSvifpeXdeFz9JchiAKfXJAEEJyUmIV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"887689aa6355e580ae05c20fc65f8b1d75d0620d263d4c7441eae14089f2b567f05b0b22d1fa87d78f5b0dae25df0f0d03313536">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-length">>, <<"156">>} +] +}, +{ +undefined, +<<"88e8c8c60f28cfd3cf7adba0068d03d8c0bb534e1c7deffe594f7f30df2e387a43db77734b597f242e1f6fe524e68721381f869ab9e1fc679f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d3c4c3c2dec1c4c3c2408a224a7aaa4ad416a9933f0234357f24842507417fc80f0d023539">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MMaQ/2qmmFHvDXrmvxADeHAjAqSvifpeXdeFz9JchiAIcUoUNnYFX3YV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"transfer-encoding">>, <<"chunked">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"cteonnt-length">>, <<"45">>}, +{<<"connection">>, <<"close">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"content-length">>, <<"59">>} +] +}, +{ +undefined, +<<"88cac2c9e3c15885aec3771a4be10f0d836dc133e5c1">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"nginx/1.0.10">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5623">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>} +] +}, +{ +undefined, +<<"88d5ccd3e1cbd2be0f0d03393739d1d0cfce">>, +[ +{<<":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-encoding">>, <<"gzip">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"cafe">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-length">>, <<"979">>}, +{<<"x-xss-protection">>, <<"1; mode=block">>}, +{<<"x-frame-options">>, <<"ALLOWALL">>}, +{<<"age">>, <<"3217">>}, +{<<"content-disposition">>, <<"attachment">>} +] +}, +{ +undefined, +<<"88768c86b19272ad78fe8e92b015c37f17c6acf4189eac2cb07f2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5ee1b46a5fc1c46a6f8720d4d7ba11a9af75f1a9938c2353271be353570daa64d37d4e1a7229a61e3fcff58b1a47e561cc5801f4a547588324e5fa52a3ac849ec2fd295d86ee3497e94a6d4256b0bdc741a41a4bf4a216a47e47316007fc80f28c2b4d240cb6f09f7c2db6f32ebae38179d0fda97cf48cd540bd6b2645c87a7ed4c1e6b3585441be7b7e940096d03f4b08016540b371a05c0bca62d1bfed4d634cf031f5f87352398ac4c697f0f0d023433e1">>, +[ +{<<":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:40:18 GMT; Path=/">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>} +] +}, +{ +undefined, +<<"887684aa6355e7d0bfc97f0588ea52d6b0e83772ff4088ea52d6b0e83772ff8749a929ed4c0207cecccd7f04d2acf4189eac2cb07f33a535dc618f1e3c2e6a6cf07b2893c1a42ae43d2c78648c56cd6bf9a68fe7e94bdae0fe74eac8a5fddad4bdab6a9a725f535ee85486fe853570daa64d37d4e1a7229a61e2a5ed5a3f9f">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 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\"">>} +] +}, +{ +undefined, +<<"880f28ff68b1288a1861860d19d0ce8e2fd84c2db057ac1ee45d7b2846f793fa9e5ed36293004e3c64f55e5699be5bd6e1869b1acd874eb169f5c33535e5bf9b4b67c708fc35873cce56c79e0f3b9ebc5775878bdc7c118b5eabb64e57df9dca4c9b7d0b2325958aa997f3f3d21b7f69df63aec75dab3d58b27170d98ce4ef3e68d98f4e0eb0cdededbc538f0768de9ebef7913f5bfab2f0f2fffb764c46451d03efcf0dbc79d10f565dcf1fe4b77327b60b36166ca8cbd1e83ed4be7a466aa05ec2f7410cbd454fda983cd66b0a88375b57d280656d27eeb08016540b371a05c0bca62d1bfed4d634cf031f4088f2b5761c8b48348f89ae46968e61a00fac2f7f00e9acf4189eac2cb07f33a535dc618e885ec2f7410cbd454b1e19231620d5b35afe69a3f9fa52f6b83f9d3ab4a9af742a6bdd7d4c9c6153271bea6adfad4dd0e853269bea70d3914d7c36a97b568534c3c54c9a77a97f06852f69dea6edf0a9af6e05356fbca63c10ff3f7603525349d1d06496df3dbf4a002a651d4a05f740a0017000b800298b46ff5f9a1d75d0620d263d4c741f71a0961ab4fd9271d882a60e1bf0acf7d15a839bd9ab7b8b84842d695b05443c86aa6f6196dc34fd280654d27eea0801128166e340b81754c5a37f">>, +[ +{<<":status">>, <<"200">>}, +{<<"set-cookie">>, <<"rts_AAAA=MLs3MV9rcF5/e8raSsB8J1a8xoyhfqgGdE1oaHcypJ43DeCuFAmr4KFNP2NyUKmpJDKN5oHAaw4FLg6p/xU87LpGBP1V8Vwc/u8nqIWD9h6mituy2I3ef/nmfXXys59Ro9/kQ77nLnGIV6iKi6h89ib3bNEkAgz8RVtHEqb8hpvCshkDOJUx9+7dGislj1zxURVYlAk37LbXfBKtqErQegJsJj8=; Domain=.revsci.net; Expires=Sun, 03-Nov-2013 13:40:18 GMT; Path=/">>}, +{<<"x-proc-data">>, <<"pd4-bgas09-2">>}, +{<<"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:40:17 GMT">>} +] +}, +{ +undefined, +<<"88cfdb768dd06258741e54ad9326e61c5c1f7f13868776b5f4e0df0f28ff2986f6ad59b26082f3c44c37f07bd179af3a3a75b74f49add3ef427474e6d68bf83c6adf37ad379af7a2fe40eadfcc3a66861861861861870430c30d39fc430e5c05a38dec78ebe3b1fb010c39fa968e37b763af8ecff7602187280b471bd263af8ec7dd0430e8c85a38de7b1d7c7643b21861c73e3861bf7b1d7c764fe5ce3c21861861856fb52b1a67818fb50be6b3585441a0f57d280656d27eeb08016940b371a05c0bca62d1bf7f07b7bdae0fe74eac8a5fddad4bdab6a9a725f521bfa14bf838a9af742a6ae1b54c9a6fa9c34e4535f0daa5ed5a14d30f153269dea6edf0ff3fd864022d31dace0f0d023637">>, +[ +{<<":status">>, <<"200">>}, +{<<"connection">>, <<"close">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"Microsoft-IIS/6.0">>}, +{<<"x-powered-by">>, <<"ASP.NET">>}, +{<<"set-cookie">>, <<"ACOOKIE=C8ctADEzMC4xMjkuNjguNzMtMjY4MDEwOTgyNC4zMDI1OTY1NgAAAAAAAAAEAAAAmLwAAJEelVCHHpVQ9r0AALkelVCSHpVQ+r0AAJ0elVCdHpVQ970AAMIelVC8HpVQAQAAAHhHAADCHpVQhx6VUAAAAAA-; path=/; expires=Mon, 03-Nov-2014 13:40:18 GMT">>}, +{<<"p3p">>, <<"CP=\"NOI DSP COR NID ADM DEV PSA OUR IND UNI PUR COM NAV INT STA\"">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"expires">>, <<"-1">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"67">>} +] +}, +{ +undefined, +<<"88dfdcde4087aaa21ca4498f57842507417fd7d3c50f0d836dc133cdd6de0f28cfd3cf7adba0068d03d8c0bb534e1c7deffe594f7f30df2e387a43db77734b597f242e1f6fe524e68721381f869ab9e1fc679f15f9d5e5ab3ae1c9f6a5634cf031f6a487a466aa05eaf49352542e43d3dcdbdad9">>, +[ +{<<":status">>, <<"200">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"server">>, <<"Sun-ONE-Web-Server/6.1">>}, +{<<"ntcoent-length">>, <<"1068">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/json">>}, +{<<"cache-control">>, <<"private">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"5623">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"x-powered-by">>, <<"PHP/5.2.9">>}, +{<<"content-type">>, <<"text/html">>}, +{<<"set-cookie">>, <<"NYT-S=0MMaQ/2qmmFHvDXrmvxADeHAjAqSvifpeXdeFz9JchiAIcUoUNnYFX3YV.Ynx4rkFI; path=/; domain=.nytimes.com">>}, +{<<"expires">>, <<"Thu, 01 Dec 1994 16:00:00 GMT">>}, +{<<"cache-control">>, <<"no-cache">>}, +{<<"pragma">>, <<"no-cache">>}, +{<<"transfer-encoding">>, <<"chunked">>} +] +}, +{ +undefined, +<<"88768586b19272ffbfc56c96c361be940894d444a820044a001702d5c69f53168dff52848fd24a8fc80f0d840b2db61f408725453d44498f57842507417fd35890aec3771a4bf4a523f2b0e62c0e3c000b6496dd6d5f4a01a5349fba820044a01eb8cb371a0298b46fe6d3">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"nncoection">>, <<"close">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"last-modified">>, <<"Fri, 12 Oct 2012 00:14:49 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"content-length">>, <<"13551">>}, +{<<"cneonction">>, <<"close">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"cache-control">>, <<"private, max-age=68002">>}, +{<<"expires">>, <<"Sun, 04 Nov 2012 08:33:40 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:18 GMT">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"88c36c96dc34fd280654d27eea0801128076e32fdc682a62d1bfc2cbccc55f911d75d0620d263d4c795ba0fb8d04b0d5a7588faec3771a4bf4a523f2b0e62c0c801f6496dc34fd280654d27eea0801128166e34ddc0baa62d1bfcd0f0d83680eb3d7c4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"Apache">>}, +{<<"last-modified">>, <<"Sat, 03 Nov 2012 07:39:41 GMT">>}, +{<<"accept-ranges">>, <<"bytes">>}, +{<<"vary">>, <<"Accept-Encoding">>}, +{<<"content-encoding">>, <<"gzip">>}, +{<<"nncoection">>, <<"close">>}, +{<<"content-type">>, <<"application/x-javascript">>}, +{<<"cache-control">>, <<"private, max-age=300">>}, +{<<"expires">>, <<"Sat, 03 Nov 2012 13:45:17 GMT">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:17 GMT">>}, +{<<"content-length">>, <<"4073">>}, +{<<"connection">>, <<"keep-alive">>}, +{<<"cneonction">>, <<"close">>} +] +}, +{ +undefined, +<<"895894aec3771a4bf4a547588324e5fa52a3ac849ec2ff0f0d0130da6196dc34fd280654d27eea0801128166e340b817d4c5a37f7f0de9acf4189eac2cb07f33a535dc61824952fd6cf322f5152c75b2df243d492d4962b66b5fcd347f3f4a5ed707f3a756952feed6a5ed5b54d392fa9ab86d52fe0cea6e87429ab7ed53869daa5ed5a14d30f153269dea5fc1a14bda77a9bb7c2a6bdb814cfaaf29ab7defe7ca0f28bc8bada69228324395bd89e593ed4ac699e063ed42f9acd615106f9edfa50025b40fd2c16540b371a05c0bea62d1bfed490f48cd540bf5b3cc8bd454ff408af2b585ed695095926a4b92bf009b7d44c0165b0bed80017d969e782f7f4089f2b20b6772c8b47ebf8e8ca321ea58600097eb679917a8a9dc">>, +[ +{<<":status">>, <<"204">>}, +{<<"cache-control">>, <<"private, no-cache, no-store">>}, +{<<"content-length">>, <<"0">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:19 GMT">>}, +{<<"p3p">>, <<"policyref=\"http://cdn.krxd.net/kruxcontent/p3p.xml\", CP=\"NON DSP COR NID OUR DEL SAM OTR UNR COM NAV INT DEM CNT STA PRE LOC OTC\"">>}, +{<<"server">>, <<"Apache">>}, +{<<"set-cookie">>, <<"_kuid_=IAJ5QtWI; path=/; expires=Thu, 02-May-13 13:40:19 GMT; domain=.krxd.net">>}, +{<<"x-request-time">>, <<"D=259 t=1351950019348818">>}, +{<<"x-served-by">>, <<"beacon-a002.krxd.net">>}, +{<<"connection">>, <<"keep-alive">>} +] +}, +{ +undefined, +<<"887689aa6355e5802eeaee3bc2df0f0d023433e4">>, +[ +{<<":status">>, <<"200">>}, +{<<"server">>, <<"nginx/0.7.67">>}, +{<<"date">>, <<"Sat, 03 Nov 2012 13:40:19 GMT">>}, +{<<"content-type">>, <<"image/gif">>}, +{<<"content-length">>, <<"43">>}, +{<<"connection">>, <<"close">>} +] +} +]}. diff --git a/tools/gen_nginx_tests.py b/tools/gen_nginx_tests.py new file mode 100755 index 0000000..8b4ff49 --- /dev/null +++ b/tools/gen_nginx_tests.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python + +import json +import os + + +URL = "https://github.com/http2jp/hpack-test-case" +PATH = "test/hpack-test-case" + +def main(): + os.system("git clone --depth 1 --single-branch " + URL + " " + PATH) + path = os.path.join(PATH, "nghttp2-change-table-size") + + print "%% Test data generated from:" + print "%%%% %s" % URL + print "\n" + + for path, dnames, fnames in os.walk(path): + for fname in sorted(fnames): + if not fname.endswith(".json"): + continue + fpath = os.path.join(path, fname) + with open(fpath) as handle: + data = json.load(handle) + + cases = [] + + for case in data["cases"]: + c = [] + if "header_table_size" in case: + c.append("%d" % case["header_table_size"]) + else: + c.append("undefined") + c.append("<<\"%s\">>" % case["wire"]) + headers = [] + for header in case["headers"]: + assert len(header) == 1 + k = header.keys()[0].encode("utf-8").encode("string_escape") + v = header[k].encode("utf-8").encode("string_escape") + v = v.replace('"', '\\"') + headers.append("{<<\"%s\">>, <<\"%s\">>}"% (k, v)) + c.append("[\n%s\n]" % ",\n".join(headers)) + cases.append("{\n%s\n}" % ",\n".join(c)) + + print "{%s, [" % fname[:-5] + print ",\n".join(cases) + print "]}." + +if __name__ == "__main__": + main() \ No newline at end of file From 7d51ca464fcaee9b01eed230c5c5e10b710533cc Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:29:19 -0500 Subject: [PATCH 12/13] Implement an explain function This is helpful when trying to figure out why something either decodes differently than examples found on the internet. --- src/hpack_debug.erl | 209 +++++++++++++++++++++++ test/hpack_debug_tests.erl | 340 +++++++++++++++++++++++++++++++++++++ 2 files changed, 549 insertions(+) create mode 100644 src/hpack_debug.erl create mode 100644 test/hpack_debug_tests.erl diff --git a/src/hpack_debug.erl b/src/hpack_debug.erl new file mode 100644 index 0000000..7321a5f --- /dev/null +++ b/src/hpack_debug.erl @@ -0,0 +1,209 @@ +%% @doc +%% The `hpack' module provides functions for working with HPACK as described in +%% RFC 7541. +%% +%% @reference RFC 7541 + +-module(hpack_debug). + + +-export([ + explain/2 +]). + + +-include("hpack.hrl"). + + +-define(DONE(Last, Acc), ?ERROR({error, lists:reverse(Acc, [Last])})). + + +%% @doc +%% Explain the decoding of a given HPack binary representation +%% +%% If successful, returns `[{bitstring(), any()}]' listing the +%% steps decoding takes. +%% +%% For example: +%% ``` +%% {Headers, NewContext} = hpack:decode(Binary, OldContext). +%% ''' +-spec explain(hpack:context(), binary()) -> [{bitstring(), any()}]. +explain(#hpack_ctx{} = Ctx, Bin) when is_binary(Bin) -> + try + explain(Ctx, Bin, []) + catch throw:{hpack_error, Error} -> + Error + end. + + +explain(Ctx, <<>>, Acc) -> + {ok, Ctx, lists:reverse(Acc)}; + +explain(Ctx, <<2#1:1, _/bits>> = Bin, Acc) -> + explain_indexed(Ctx, Bin, [{<<2#1:1>>, indexed_header} | Acc]); + +explain(Ctx, <<2#01:2, _/bits>> = Bin, Acc) -> + explain_and_index(Ctx, Bin, [{<<2#01:2>>, incremental_index} | Acc]); + +explain(Ctx, <<2#0000:4, _/bits>> = Bin, Acc) -> + explain_no_index(Ctx, Bin, [{<<2#0000:4>>, no_index} | Acc]); + +explain(Ctx, <<2#0001:4, _/bits>> = Bin, Acc) -> + explain_never_index(Ctx, Bin, [{<<2#0001:4>>, never_index} | Acc]); + +explain(Ctx, <<2#001:3, _/bits>> = Bin, Acc) -> + explain_size_update(Ctx, Bin, [{<<2#001:3>>, size_update} | Acc]). + + +explain_indexed(_Ctx, <<2#1:1, 2#0000000:7, _/binary>>, Acc) -> + ?DONE({invalid_index, 0}, Acc); + +explain_indexed(Ctx, <<2#1:1, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 7), + Header = case hpack_index:lookup(Ctx, Idx) of + undefined -> + ?DONE({unknown_index, Idx}, Acc); + Else -> + Else + end, + explain(Ctx, B2, [Header | Acc]). + + +explain_and_index(Ctx, <<2#01:2, 2#000000:6, B1/bits>>, Acc) -> + {Name, NameInfo, B2} = explain_string(B1), + {Value, ValueInfo, B3} = explain_string(B2), + + NameBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {NameBits, {string, NameInfo, Name}}, + {<<2#000000:6>>, unindexed_name} + ] ++ Acc, + + explain(hpack_index:add(Ctx, Name, Value), B3, NewAcc); + +explain_and_index(Ctx, <<2#01:2, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 6), + {Name, _} = case hpack_index:lookup(Ctx, Idx) of + undefined -> + ?DONE({unknown_index, Idx}, Acc); + Else -> + Else + end, + {Value, ValueInfo, B3} = explain_string(B2), + + IdxBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {IdxBits, {indexed_name, Idx, Name}} + ] ++ Acc, + + explain(hpack_index:add(Ctx, Name, Value), B3, NewAcc). + + +explain_no_index(Ctx, <<2#0000:4, 2#0000:4, B1/bits>>, Acc) -> + {Name, NameInfo, B2} = explain_string(B1), + {Value, ValueInfo, B3} = explain_string(B2), + + NameBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {NameBits, {string, NameInfo, Name}}, + {<<2#0000:4>>, unindexed_name} + ] ++ Acc, + + explain(Ctx, B3, NewAcc); + +explain_no_index(Ctx, <<2#0000:4, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 4), + {Name, _} = case hpack_index:lookup(Ctx, Idx) of + undefined -> + ?DONE({unknown_index, Idx}, Acc); + Else -> + Else + end, + {Value, ValueInfo, B3} = explain_string(B2), + + IdxBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {IdxBits, {indexed_name, Idx, Name}} + ] ++ Acc, + + explain(Ctx, B3, NewAcc). + + +explain_never_index(Ctx, <<2#0001:4, 2#0000:4, B1/bits>>, Acc) -> + {Name, NameInfo, B2} = explain_string(B1), + {Value, ValueInfo, B3} = explain_string(B2), + + NameBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {NameBits, {string, NameInfo, Name}}, + {<<2#0000:4>>, unindexed_name} + ] ++ Acc, + + explain(Ctx, B3, NewAcc); + +explain_never_index(Ctx, <<2#0001:4, B1/bits>>, Acc) -> + {Idx, B2} = hpack_integer:decode(B1, 4), + {Name, _} = case hpack_index:lookup(Ctx, Idx) of + undefined -> ?DONE({unknown_index, Idx}, Acc); + Else -> Else + end, + {Value, ValueInfo, B3} = explain_string(B2), + + IdxBits = hdbinary(B1, B2), + ValueBits = hdbinary(B2, B3), + + NewAcc = [ + {ValueBits, {string, ValueInfo, Value}}, + {IdxBits, {indexed_name, Idx, Name}} + ] ++ Acc, + + explain(Ctx, B3, NewAcc). + + +% TODO: Test whether resize has to precede all headers +explain_size_update(Ctx, <<2#001:3, B1/bits>>, Acc) -> + lists:foreach(fun + ({_, size_update}) -> + ok; + ({_, {new_size, _}}) -> + ok; + (_) -> + ?DONE({invalid_size_update, headers_received}, Acc) + end, Acc), + {NewSize, B2} = hpack_integer:decode(B1, 5), + UpdateBits = hdbinary(B1, B2), + NewAcc = [{UpdateBits, {new_size, NewSize}} | Acc], + explain(hpack:resize(Ctx, NewSize), B2, NewAcc). + + +explain_string(<>) -> + {Length, B2} = hpack_integer:decode(B1, 7), + <> = B2, + LenBits = hdbinary(B1, B2), + {Info, Value} = case Huff of + 0 -> {{LenBits, Length, uncompressed}, Data}; + 1 -> {{LenBits, Length, compressed}, hpack_huffman:decode(Data)} + end, + {Value, Info, B3}. + + +hdbinary(B1, B2) when bit_size(B1) > bit_size(B2) -> + Len = bit_size(B1) - bit_size(B2), + <> = B1, + H. diff --git a/test/hpack_debug_tests.erl b/test/hpack_debug_tests.erl new file mode 100644 index 0000000..b608d8d --- /dev/null +++ b/test/hpack_debug_tests.erl @@ -0,0 +1,340 @@ +-module(hpack_debug_tests). + +-include_lib("eunit/include/eunit.hrl"). + + +debug_static_indexed_test() -> + Encoded = <<2#1:1, 2#0000010:7>>, + + Expect = [ + {<<2#1:1>>, indexed_header}, + {<<":method">>, <<"GET">>} + ], + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertEqual(Expect, Result). + + +debug_known_name_incremental_index_test() -> + Encoded = << + 2#01:2, % Add to index + 2#111010:6, % Static table index: 58 user-agent + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<1:2>>, incremental_index}, + {<<58:6>>, {indexed_name, 58, <<"user-agent">>}}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_known_name_incremental_index_compressed_test() -> + Encoded = << + 2#01:2, % Add to index + 2#111010:6, % Static table index: 58 user-agent + 2#1:1, % compressed + 2#0000110:7, % 6 bytes + 194, 107, 11, 41, 252, 255 % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<1:2>>, incremental_index}, + {<<58:6>>, {indexed_name, 58, <<"user-agent">>}}, + { + <<_/binary>>, + {string, {<<6:7>>, 6, compressed}, <<"Firefox">>} + } + ], Result). + + +debug_unknown_name_incremental_index_test() -> + Encoded = << + 2#01:2, % Add to index + 2#000000:6, % Unknown name + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "foo-bar", % data + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<1:2>>, incremental_index}, + {<<0:6>>, unindexed_name}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"foo-bar">>} + }, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_known_name_no_index_test() -> + Encoded = << + 2#0000:4, % No index + 2#1111:4, + 2#00101011:8, % Index: 58 user-agent + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<0:4>>, no_index}, + {<<242,11:4>>, {indexed_name, 58, <<"user-agent">>}}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_unknown_name_no_index_test() -> + Encoded = << + 2#0000:4, % No index + 2#0000:4, % Unknown name + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "foo-bar", % data + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<0:4>>, no_index}, + {<<0:4>>, unindexed_name}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"foo-bar">>} + }, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_known_name_never_index_test() -> + Encoded = << + 2#0001:4, % No index + 2#1111:4, + 2#00101011:8, % Index: 58 user-agent + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<1:4>>, never_index}, + {<<242,11:4>>, {indexed_name, 58, <<"user-agent">>}}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_unknown_name_never_index_test() -> + Encoded = << + 2#0001:4, % No index + 2#0000:4, % Unknown name + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "foo-bar", % data + 2#0:1, % uncompressed + 2#0000111:7, % 7 bytes + "Firefox" % data + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + ?assertMatch([ + {<<1:4>>, never_index}, + {<<0:4>>, unindexed_name}, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"foo-bar">>} + }, + { + <<_/binary>>, + {string, {<<7:7>>, 7, uncompressed}, <<"Firefox">>} + } + ], Result). + + +debug_size_update_test() -> + Encoded = << + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + + ?assertMatch([ + {<<1:3>>, size_update}, + {<<_/bits>>, {new_size, 2048}} + ], Result). + + +debug_multiple_size_updates_test() -> + Encoded = << + 2#001:3, % Size update + 2#00000:5, % Integer: 0 + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + + {ok, _, Result} = hpack_debug:explain(hpack:new(), Encoded), + + ?assertMatch([ + {<<1:3>>, size_update}, + {<<_/bits>>, {new_size, 0}}, + {<<1:3>>, size_update}, + {<<_/bits>>, {new_size, 2048}} + ], Result). + + +debug_invalid_indexed_header_test() -> + Encoded = << + 2#1:1, % Indexed header + 2#0000000:7 % Index: 0 + >>, + ?assertEqual({error, [ + {<<1:1>>, indexed_header}, + {invalid_index, 0} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +debug_unknown_indexed_header_test() -> + Encoded = << + 2#1:1, % Indexed header + 2#1111110:7 % Index: 126 + >>, + ?assertEqual({error, [ + {<<1:1>>, indexed_header}, + {unknown_index, 126} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +debug_unknown_index_name_test() -> + Encoded = << + 2#01:2, % Add to index + 2#111110:6, % Index: 62 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual({error, [ + {<<1:2>>, incremental_index}, + {unknown_index, 62} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +debug_unknown_index_name_no_index_test() -> + Encoded = << + 2#0000:4, % Don't index + 2#1111:4, + 2#01101111:8, % Index: 126 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual({error, [ + {<<0:4>>, no_index}, + {unknown_index, 126} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +debug_unknown_index_name_never_index_test() -> + Encoded = << + 2#0001:4, % Don't index + 2#1111:4, + 2#01101111:8, % Index: 126 + 2#0:1, % Uncompressed + 2#0000001:7, % 1 byte + "a" % data + >>, + ?assertEqual({error, [ + {<<1:4>>, never_index}, + {unknown_index, 126} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +debug_invalid_size_update_test() -> + % RFC 7541 Section 4.2 says size updates have + % to happen at the beginning of a header block + + Encoded = << + 2#1:1, % Indexed header + 2#0000010:7, % Index 2: :method GET + 2#001:3, % Size update + 2#11111:5, + 2#11100001:8, + 2#00001111:8 % Integer: 2048 + >>, + + ?assertEqual({error, [ + {<<1:1>>, indexed_header}, + {<<":method">>, <<"GET">>}, + {<<1:3>>, size_update}, + {invalid_size_update, headers_received} + ]}, hpack_debug:explain(hpack:new(), Encoded)). + + +%% decode_size_update_too_large_test() -> +%% Encoded = << +%% 2#001:3, % Size update +%% 2#11111:5, +%% 2#11100001:8, +%% 2#01111111:8 % Integer: 16,384 +%% >>, +%% ?assertEqual( +%% {error, {invalid_table_size, 16384}}, +%% hpack:decode(hpack:new(), Encoded) +%% ). +%% +%% +%% decode_invalid_size_update_test() -> +%% % RFC 7541 Section 4.2 says size updates have +%% % to happen at the beginning of a header block +%% +%% Encoded = << +%% 2#1:1, % Indexed header +%% 2#0000010:7, % Index 2: :method GET +%% 2#001:3, % Size update +%% 2#11111:5, +%% 2#11100001:8, +%% 2#00001111:8 % Integer: 2048 +%% >>, +%% +%% ?assertEqual( +%% {error, {invalid_size_update, headers_received}}, +%% hpack:decode(hpack:new(), Encoded) +%% ). +%% +%% +%% check_combinations(Combinations, Headers) -> +%% lists:foreach(fun(Parts) -> +%% <> = list_to_bitstring(Parts), +%% {ok, _, Result} = hpack:decode(hpack:new(), Encoded), +%% ?assert(hpack_tutil:headers_equal(Headers, Result)) +%% end, Combinations). From 4417a950e41976a8abac7cbe611b15fa347ae4b3 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Wed, 18 Sep 2019 14:30:22 -0500 Subject: [PATCH 13/13] Update Makefile --- Makefile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 06e5bac..5e6ba1e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -REBAR3_URL=https://s3.amazonaws.com/rebar3/rebar3 # If there is a rebar in the current directory, use it ifeq ($(wildcard rebar3),rebar3) @@ -8,21 +7,19 @@ endif # Fallback to rebar on PATH REBAR3 ?= $(shell which rebar3) -# And finally, prep to download rebar if all else fails -ifeq ($(REBAR3),) -REBAR3 = $(CURDIR)/rebar3 -endif - -clean: $(REBAR3) - @$(REBAR3) clean - rm -rf _build all: $(REBAR3) - @$(REBAR3) do clean, compile, eunit, ct, dialyzer + @$(REBAR3) do compile, eunit, cover, dialyzer + rel: all @$(REBAR3) release -$(REBAR3): - curl -Lo rebar3 $(REBAR3_URL) || wget $(REBAR3_URL) - chmod a+x rebar3 + +nginx-tests: + ./tools/gen_nginx_tests.py > test/nginx.data + @rm -rf test/hpack-test-case + +clean: $(REBAR3) + @$(REBAR3) clean + rm -rf _build