sucker 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. data/CHANGELOG.md +5 -0
  2. data/lib/sucker/request.rb +1 -1
  3. data/lib/sucker/version.rb +1 -1
  4. data/spec/fixtures/cassette_library/integration/alternate_versions.yml +26 -0
  5. data/spec/fixtures/cassette_library/integration/errors.yml +26 -0
  6. data/spec/fixtures/cassette_library/integration/france.yml +26 -0
  7. data/spec/fixtures/cassette_library/integration/images.yml +26 -0
  8. data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +26 -0
  9. data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +26 -0
  10. data/spec/fixtures/cassette_library/integration/item_search.yml +26 -0
  11. data/spec/fixtures/cassette_library/integration/japan.yml +26 -0
  12. data/spec/fixtures/cassette_library/integration/keyword_search.yml +26 -0
  13. data/spec/fixtures/cassette_library/integration/kindle.yml +26 -0
  14. data/spec/fixtures/cassette_library/integration/kindle_2.yml +26 -0
  15. data/spec/fixtures/cassette_library/integration/multiple_locales.yml +151 -0
  16. data/spec/fixtures/cassette_library/integration/power_search.yml +26 -0
  17. data/spec/fixtures/cassette_library/integration/related_items/child.yml +26 -0
  18. data/spec/fixtures/cassette_library/integration/related_items/parent.yml +26 -0
  19. data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +26 -0
  20. data/spec/fixtures/cassette_library/integration/twenty_items.yml +26 -0
  21. data/spec/fixtures/cassette_library/unit/sucker/request.yml +31 -0
  22. data/spec/fixtures/cassette_library/unit/sucker/response.yml +26 -0
  23. data/spec/support/amazon.yml +3 -0
  24. data/spec/unit/sucker/request_spec.rb +13 -0
  25. data/spec/unit/sucker/response_spec.rb +19 -14
  26. metadata +42 -2
@@ -1,3 +1,8 @@
1
+ 1.1.3
2
+ =====
3
+
4
+ * Fixed bug where curl_opts was not setting options on the curl object
5
+
1
6
  1.1.2
2
7
  =====
3
8
 
@@ -112,7 +112,7 @@ module Sucker #:nodoc:
112
112
  raise ArgumentError.new "AWS access key missing" unless key
113
113
 
114
114
  curl = Curl::Easy.perform(uri.to_s) do |easy|
115
- curl_opts.each { |k, v| easy.send(k, v) }
115
+ curl_opts.each { |k, v| easy.send("#{k}=", v) }
116
116
  end
117
117
 
118
118
  Response.new(curl)
@@ -1,3 +1,3 @@
1
1
  module Sucker #:nodoc:
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
3
3
  end
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.co.uk:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0141044012&Operation=ItemLookup&ResponseGroup=AlternateVersions&Service=AWSECommerceService&Signature=QSxkapu7plNftZzE+uWUAXFIF6w66veaOV4aorOyt+U=&Timestamp=2010-11-18T15:58:27Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:27 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: <?xml version="1.0" encoding="UTF-8"?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Jakarta Commons-HttpClient/3.0.1"></Header></HTTPHeaders><RequestId>02XPEZ7RKPMT4YXESV79</RequestId><Arguments><Argument Name="AssociateTag"></Argument><Argument Name="ItemId" Value="0141044012"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="QSxkapu7plNftZzE+uWUAXFIF6w66veaOV4aorOyt+U="></Argument><Argument Name="ResponseGroup" Value="AlternateVersions"></Argument><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Timestamp" Value="2010-11-18T15:58:27Z"></Argument><Argument Name="Version" Value="2010-09-01"></Argument></Arguments><RequestProcessingTime>0.0158150196075439</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>0141044012</ItemId><ResponseGroup>AlternateVersions</ResponseGroup></ItemLookupRequest></Request><Item><ASIN>0141044012</ASIN><AlternateVersions><AlternateVersion><ASIN>B003L7YCP8</ASIN><Title>The Pursuit of Love (Unabridged)</Title><Binding>Audio Download</Binding></AlternateVersion><AlternateVersion><ASIN>0307740811</ASIN><Title>The Pursuit of Love (Vintage)</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>B003AYZBU2</ASIN><Title>The Pursuit of Love</Title><Binding>Kindle Edition</Binding></AlternateVersion></AlternateVersions></Item></Items></ItemLookupResponse>
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Condition=All&IdType=ASIN&ItemId=0816614024,0007218095,0007218176&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=VjyFG8j/OJ6DrhJz/kG1ODLYx6chTStHA4j0CK+tJ8s=&Timestamp=2010-11-18T15:58:27Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:28 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ed759868-0ef7-4d50-8752-08c4721c378b</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"VjyFG8j/OJ6DrhJz/kG1ODLYx6chTStHA4j0CK+tJ8s=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0007218095,0007218176\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:27Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0789690000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0007218095</ItemId><ItemId>0007218176</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest><Errors><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218095 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218176 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error></Errors></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Condition=All&IdType=ASIN&ItemId=2070119874&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=+Levc0Dg/vHdAD+do2GG2IW2my73Y5FUw4H4cgxfRQs=&Timestamp=2010-11-18T15:58:28Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:29 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>0ca31034-c572-4196-bbde-49051ced7fdf</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"+Levc0Dg/vHdAD+do2GG2IW2my73Y5FUw4H4cgxfRQs=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"2070119874\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:28Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.1127450000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>2070119874</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>2070119874</ASIN><DetailPageURL>http://www.amazon.fr/Larch%C3%A9ologie-du-savoir-Michel-Foucault/dp/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2070119874</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2070119874%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink></ItemLinks><ItemAttributes><Author>Michel Foucault</Author><Binding>Broch\xC3\xA9</Binding><EAN>9782070119875</EAN><ISBN>2070119874</ISBN><Label>Editions Gallimard</Label><Languages><Language><Name>Fran\xC3\xA7ais</Name><Type>Unknown</Type></Language><Language><Name>Fran\xC3\xA7ais</Name><Type>Original Language</Type></Language></Languages><ListPrice><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></ListPrice><Manufacturer>Editions Gallimard</Manufacturer><NumberOfPages>288</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">79</Height><Length Units=\"hundredths-inches\">748</Length><Weight Units=\"hundredths-pounds\">62</Weight><Width Units=\"hundredths-inches\">488</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-02-07</PublicationDate><Publisher>Editions Gallimard</Publisher><Studio>Editions Gallimard</Studio><Title>L'arch\xC3\xA9ologie du savoir</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></LowestUsedPrice><TotalNew>7</TotalNew><TotalUsed>1</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>8</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>A3G3PNXBCDB0DW</MerchantId><Name>chapitre_libraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3G3PNXBCDB0DW</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>19813</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>dXHzrN17wW9QrhMQIJqFw9fb5cHSBc5KZlOzx%2BZbEBL7ONcYPWMrYLJglPrcbVCFdrVfYY1pIBEvRaMkonMcXvii%2BBv4kupwH3k8tYJ9w%2Fsjkasz9sqKX%2Fl2ul%2BkdNNi9kE5cR15pq8%3D</OfferListingId><ExchangeId>Y13M3877299M3863973</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1EOXQT1GBGF1E</MerchantId><Name>chapitre_librairie</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1EOXQT1GBGF1E</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>145618</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>CtxGIX9Z%2FYD4bjXXEh0%2BY5Gg1C1stZ9MBSXRht1R9n8ceGLkAYX7RB9zNfYKVJQB2IMMjmGY9tIGlnYbGWnP6bK5%2Fmd4RZGpJtQn2nhJiJF5f7mBc8Xe2LPOXh7VchNaa4vEIzIpuZM%3D</OfferListingId><ExchangeId>Y14M5010332M5161003</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6FK5RDHNB96</MerchantId><Name>Amazon.fr</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6FK5RDHNB96</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>wKDx8cXsD3Ot5V7KaP1jUBPPBoVjnDx%2F5ktuqQj4MhOpOny9SWXwCW6ekKv6sjHyfbPC5D%2FdtcmjT3xj4%2Bumg27kUI6dOlvw</OfferListingId><Price><Amount>1046</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,46</FormattedPrice></Price><AmountSaved><Amount>54</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,54</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Habituellement exp\xC3\xA9di\xC3\xA9 sous 24 h</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ACXHY5958BU5U</MerchantId><Name>quartierlatinlibraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=ACXHY5958BU5U</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2581</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Quartier Latin. Libraire \xC3\xA0 Saint Etienne.... 40 000 r\xC3\xA9f\xC3\xA9rences en stock... Exp\xC3\xA9dition sous 24 \xC3\xA0 48 heures... Lettres anciennes et modernes. Histoire. D\xC3\xA9couvertes. Sciences humaines. Philosophie. Litt\xC3\xA9ratures polici\xC3\xA8res.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>qJfx4eVo8biVVi3usL3o8buju4%2Fbz7v1KihusWIKu1Db3UshCeKF66UMBlsw0x%2F7oRU9BEmTrqBlsFVR7MKB5TrTocyyIYa%2BpxmqtfhbByWCh49MPvauAiiu2RLjModA0MQEvy0LhI8%3D</OfferListingId><ExchangeId>Y19M2629467M6802798</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2NQCJQALMD64M</MerchantId><Name>librairie_ventdouest</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2NQCJQALMD64M</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>8431</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>bpn0KaRTbrv1GEa3BCKrrkZ06qeUa1zNBKAgviP633qncnfgkuoOAbA%2F0U6M4qkyZZGJ1g8vwiIQmCi8NfoRvNiYfec6NpqkW7%2FFUQmqwVuI4jThsDomHN%2BFATr4C%2BvYGJ%2BV7tzkE%2B0%3D</OfferListingId><ExchangeId>Y20M0526421M6342630</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2WDE0ZTZ0JHOQ</MerchantId><Name>librairiecontact</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2WDE0ZTZ0JHOQ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5774</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>cGBEz2Vhh3D1cXhWMdHnGa22s8%2F6B5kz%2FEfWgJppw2HxCjgY%2BuFh3WAgFUAOwBYQJC19GQVF3%2FdzRiDojANYRkYIQhnX7NVYWMSKcKZWZS10cbFpZ7hm9nVhnXyx9bBbf6TCZrIRyC4%3D</OfferListingId><ExchangeId>Y20M2343623M2916371</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6O0DTKBQ892</MerchantId><Name>livres_en_stocks</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6O0DTKBQ892</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5764</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>pV3NB3A%2BLUO%2FZpk8PD8eRlTMtDBRW%2BP2Exx0eDW%2B%2FrAXam2lI2PUInFXZSc9Tds27FD9PT0SXxBnGAoIB2ArsXV9kOYWRI6AjHQrHs%2BSWkKdYatwYBGo3LywUhslFDqhsAVuR34oNlw%3D</OfferListingId><ExchangeId>Y16M6500383M0666961</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ERDFR0BEJ3HJ</MerchantId><Name>librairie_coiffard</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3ERDFR0BEJ3HJ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>14313</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>HbwboMZDeJ9d5FrPLLTCuL53EczZmSot3vpcZ06peME4DOXIWz8qwRB04TyHRxDcy2cNg0pN%2F3MQzZmnS7DZ9d04C7eZabKfnBr%2B7VSEt28m0i8H5G1GwZY0FAWMCEYiDK%2BZfQkYb8s%3D</OfferListingId><ExchangeId>Y15M4375369M8794716</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=Images&Service=AWSECommerceService&Signature=hehcoDGWD1y3KdojxLS1tzc6LxT3KOMS8D3ZdLba+qg=&Timestamp=2010-11-18T15:58:29Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:29 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><RequestId>515a6443-d7b5-4593-a3fc-e41c12ca74c3</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="AssociateTag"></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="Signature" Value="hehcoDGWD1y3KdojxLS1tzc6LxT3KOMS8D3ZdLba+qg="></Argument><Argument Name="ItemId" Value="0816614024"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Timestamp" Value="2010-11-18T15:58:29Z"></Argument><Argument Name="ResponseGroup" Value="Images"></Argument></Arguments><RequestProcessingTime>0.0105190000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Images</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">74</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage></ImageSet></ImageSets></Item></Items></ItemLookupResponse>
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Condition=All&IdType=ASIN&ItemId=0816614024,0143105825&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=N40ghG9yj9KjottQTHFzcI6z5Nqq53UhVXg3CNf4ONM=&Timestamp=2010-11-18T15:58:30Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:31 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>8ea018e1-ac82-4cbe-8972-01c857278093</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"N40ghG9yj9KjottQTHFzcI6z5Nqq53UhVXg3CNf4ONM=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0143105825\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:30Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.1147710000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0143105825</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>24</TotalNew><TotalUsed>29</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>54</TotalOffers><TotalOfferPages>6</TotalOfferPages><Offer><Merchant><MerchantId>A26J6JNN8TGTL9</MerchantId><Name>internationalbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A26J6JNN8TGTL9</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>161557</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Standard used condition. Thousands of books shipped daily!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FQ1BSMswTLtjyfCPUpbXwG7s7PW3HxqhbikR5D9kR80SodbXJdkGpSdsfPkXZw7O8ibm4dEo1N%2BcZNDjBZsrXFIwrjHPR0eCjPrmtP1ekapU5ys3tt4Qp3vnSjzOu%2BELUvk5kvX1i7I%3D</OfferListingId><ExchangeId>Y20M5045579M0716901</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A32UWF11CYXVV6</MerchantId><Name>Goodwill Southern California</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A32UWF11CYXVV6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2458</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Cover slightly worn Great reading copy! Donated books in good or better condition. Ships within 1 to 2 business days! Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pgBIXuEDFBflI1bS9vNCnpBDRHhC2QOxv20QQzpVeLnQ1qBmFemRbKmw4gNSd9AnFkK%2BwbIU6KKBJFKtG0WJAdxPDng6rv2cRBNX1QWUo2melDNtLI9fw5fHKOMowTKY0EM1gszepXk8IlXl82MzOw%3D%3D</OfferListingId><ExchangeId>Y20M6346366M6133622</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1HYNQNUU203U6</MerchantId><Name>Allgreatdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1HYNQNUU203U6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>265</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>HAS LOTS OF WEAR AND SOME WRITING</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ntue7QbbjsrP4xxOB2yhorKw1sDXT%2BJgiKltflZ4uTJ2v7N%2BS4wwAvRN%2BoLdjkVaH4dCkliWbWrS%2FQBvTgqx%2FV%2FcfOkQLKKZuP3M4LkYG0O6%2F%2FaSvkuk9tvX4YdDJR8AEB1jPaYaFs6kcsiIHwAd%2FQ%3D%3D</OfferListingId><ExchangeId>Y18M1601461M6417403</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A24FNSZCMCD126</MerchantId><Name>Ivy_League_Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A24FNSZCMCD126</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CT</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>6238</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>In a good to very good condition. A copy that has been read, but remains in clean condition. All pages are intact, and the cover is intact (including dust cover, if applicable). The spine may show signs of wear. Pages can include limited notes and highlighting, and the copy can include \"From the library of\" labels. WE HAVE BEEN RATED AMONG THE TOP HOLIDAY SELLERS FOR 2009 BASED ON OUTSTANDING PERFORMANCE ON THE BASIS OF NET SALES WITH OUR CUSTOMER SATISFACTION METRICS RECEIVING THE HIGHEST MARKS. Shipping within 24 hours Monday-Friday. 100% Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DvteVaAfsWrmQZ4Bn6GfkEJm8tr%2FbWPYDCx6fXigMKU21hZgMssDvviH%2FOwYDzptvXbHzyaKdaa15jj3nBYRzHi1Ikg9FuUu4YzrlgPFHMoNnvhpojy5nF1aB193ZXNurcbAdkYJ%2BxjLbzskm1PEYQ%3D%3D</OfferListingId><ExchangeId>Y13M6702794M0128387</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1V89HJ1H3KPCF</MerchantId><Name>great_prospects</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1V89HJ1H3KPCF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>937</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Some edge and corner wear. Minimal underlining. A few creases on front and back covers. A few creased pages. SHIPS IN 24 HOURS WITH DELIVERY CONFIRMATION, 100% Guaranteed Purchase!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ikABDD8McvoZbUUh%2BVOSg44TcF6rdch13TEOxDwASusm0VIv9rCUzN0e0OI0ZIwik3W0r3iAAmvcuUQcWKeaXoBNdJSYB5f%2FJ89XP6GCtwwRUbzpp2mw4mtdaCGZhfaowxMp2wPfbkEaR5A5r%2FroYg%3D%3D</OfferListingId><ExchangeId>Y14M0709019M1039576</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AJE7BDIZ1RUPC</MerchantId><Name>character1st</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AJE7BDIZ1RUPC</GlancePage><Location><CountryCode>US</CountryCode><StateCode>KS</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>902</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Very good condition, pages clean, mild wear to softcover. Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6w4LX%2FzfEFNcf8%2BeIYS%2FoJCEYKx4hA4ioPOQGDh6qzskMofsdDVk5aeli%2F1ZsbeVTz8%2BGLRYu3nJAKa1Z4ZrwleS50U2SLt5pMRACdWcDxxZ1ELoOVHMlUp6hPCfs10kHr%2F%2BiodjZJ0%3D</OfferListingId><ExchangeId>Y11M0917285M9675440</ExchangeId><Price><Amount>1375</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.75</FormattedPrice></Price><AmountSaved><Amount>1125</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.25</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AG3758TNHVZC4</MerchantId><Name>Wildwednesday</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AG3758TNHVZC4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>Sq%2Bza7PiYHWfjmrjUpyaiiU89GiLZtudro0pNOmw7AleJeZ6%2BHYkjort%2FT4bEPUbwKsN2xvqet9Fb6rpVQgDVRHGpYW3MXzbLQvRW5ajUvQYTp41P574G6vDYqWdzWimz7WVNy6XMpt7Sgc8MaJXYg%3D%3D</OfferListingId><ExchangeId>Y19M4862378M4836354</ExchangeId><Price><Amount>1500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.00</FormattedPrice></Price><AmountSaved><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASWK2P83YYFWO</MerchantId><Name>textbooksnow-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASWK2P83YYFWO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>40549</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Inventory subject to prior sale. Used items have varying degrees of wear, highlighting, etc. and may not include supplements such as infotrac or other web access codes. Expedited orders cannot be sent to PO Box. Sorry, not able to ship to APO, FPO, Alaska, and Hawaii.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Y9HFgklMp3MS8jrE8W4YkqC0Cd87ZA5%2FXXuwUg5XdlDdNoABAE4KiF6JLwVQvghRYqjybfj1%2FfkWbQV7caqPtHbHcMnNxXH4V99GJ7subQGbiMPwkeVnhF7l8YKQlC354YVr2U4puPo%3D</OfferListingId><ExchangeId>Y19M0508549M2284143</ExchangeId><Price><Amount>1588</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.88</FormattedPrice></Price><AmountSaved><Amount>912</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.12</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AACSFD8GA6SAY</MerchantId><Name>lb7852</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AACSFD8GA6SAY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>481</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Excellent condition - Looks New. Paperback. Pages are excellent. No marks or tears.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>IevwvC12ynQcRzKVOOEZcARSd6Gm10f733%2Fb0%2BU6Mjdu1qjGGKb0%2BsF8l%2BheKti1IRo9xyUIk7Dhw8T3MGp%2FIEWMmUEcqCHtcSsx698B7JZAPpM3H90qrLGYBB6AR1J3bl4apEFk42kHEBoDMIfqcw%3D%3D</OfferListingId><ExchangeId>Y14M5841050M5242811</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>185275</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Shows definite wear, and perhaps considerable marking on inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5zWYaVtaZdW3aGrzB35LuXROSo03O03%2F9WndKMYUAJH8Fysh3kIx4bO9PVXMO2RoXH4Qs48s5A%2BpwOA%2BuWRIp6Io4vqUzSN%2FRDZzHnkN4tvYe2F37p6wmUyz2maVBpialnPZbXdElw0%3D</OfferListingId><ExchangeId>Y18M1583729M8817691</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0143105825</ASIN><DetailPageURL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0143105825</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/tech-data/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Robert Hurley</Creator><Creator Role=\"Translator\">Mark Seem</Creator><Creator Role=\"Introduction\">Mark Seem</Creator><Creator Role=\"Translator\">Helen Lane</Creator><Creator Role=\"Preface\">Michel Foucault</Creator><DeweyDecimalNumber>616</DeweyDecimalNumber><EAN>9780143105824</EAN><Feature>ISBN13: 9780143105824</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0143105825</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Penguin Classics</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.00</FormattedPrice></ListPrice><Manufacturer>Penguin Classics</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>432</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">118</Height><Length Units=\"hundredths-inches\">819</Length><Weight Units=\"hundredths-pounds\">79</Weight><Width Units=\"hundredths-inches\">543</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-05-26</PublicationDate><Publisher>Penguin Classics</Publisher><Studio>Penguin Classics</Studio><Title>Anti-Oedipus: Capitalism and Schizophrenia (Penguin Classics)</Title><TradeInValue><Amount>250</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.50</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>15000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.00</FormattedPrice></LowestCollectiblePrice><TotalNew>31</TotalNew><TotalUsed>14</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>46</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>35209</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. 5+ million customers served-In business since 1997. Happy Customers is Our #1 Goal. Toll Free Support. 4 to 14 business day Delivery Time by US Post Office.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ke4mqzvmUxj13MmdId%2F40XykYYM19z0191vxzjaw4bw%2B4ut5DSAmMTrCXbL5WCXynSrMLErpx5T%2F4idnZUuf%2FzIt4Q4nhmfMVhkdpTPi4xakwF%2FwVGhQP7jZQucRnOLLFkHXPpqTKms%3D</OfferListingId><ExchangeId>Y11M1567708M8523810</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>490</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>35209</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>a3fhFULHVLlMZYhd%2F9LxNKkf1EBCPC54KixNg5Bsdwvjcc1TKaGBoe8lW0QgAXaFmWceDdigLt3XdscEkTQSqHTO29oFxswwP4RjBGzbpPATGlVPsmxjGajadDQyYf3KS0H3LKqU9bc%3D</OfferListingId><ExchangeId>Y11M3848980M3444090</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>495</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>31410</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>1Dh8LoUI3b%2BtH0dHpEQBVU3Qp%2BfS6udR6IrbMVVSs4XVTf%2FnAwcZsEHOT8Iv1jSafIgW7h%2B0rhzMUsEvAkoaqbaUV0nL3LPD7jDx4MbVmM9cmVm5sXtpKanJGupT%2FCDHrt0XkcagBT8%3D</OfferListingId><ExchangeId>Y12M1181029M9303018</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>26136</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>cSwkIaygXvTSFoEU55EewI1OGCEHll5BdNB7XdfrzEx6t75GlKEC4ljzZ9dp1JTyTc8SSenK3btelJdRm93wZ6ULjAw3K1fmCFJ%2FNdnhZ0vjrIlH7zCq3tKijhlsAh8ArTObFVITh0zIDqTrLd9q3g%3D%3D</OfferListingId><ExchangeId>Y11M3981673M7711499</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17349</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ukOoTTUZgckAf20ro9LerAk%2Ffr7fqiHI3WRrsnI9TxYaxIPlwjYDh2TsI512R0CRQ5LGNJClf0S0%2BZfWX5rd2kF1y%2BvLmT1BvinTfFnzl2tXmJnwmhqZGvaUgUH2FsTqepN5ffhwAzo%3D</OfferListingId><ExchangeId>Y11M1470360M3110989</ExchangeId><Price><Amount>1280</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.80</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HY4G4FBZK8H4</MerchantId><Name>BuriedintheSand</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HY4G4FBZK8H4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CO</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>0VxO%2BmTyRsPcqfuLgEnRGPP7fBkMIbtBw8kaOHF1WdP7cOoZk87VbKKrvXkHr3gRPzi4UTAlq8nfrM4G7gi5OSqb1vu2r5a0bGpwPMWw2pBz2q2MLDe6BxnFB0ywxzH%2BSvaiQRHiW3cWj2SOjpioJg%3D%3D</OfferListingId><ExchangeId>Y19M6577051M0679616</ExchangeId><Price><Amount>1300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.00</FormattedPrice></Price><AmountSaved><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17349</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pk%2FJQG5fDo75dwNFK931AihFIViB2QS2LivVtOn1FHSz8sZCC2S9t0S0hX25Y7dvqSmEnw0SbAwcvJA8uIdjcAbiU04efA4sDac0CycvlAAsc4kaztlOrE%2Bi38I8kDeyzC%2FoIMl1MHE%3D</OfferListingId><ExchangeId>Y11M0209708M5718954</ExchangeId><Price><Amount>1329</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.29</FormattedPrice></Price><AmountSaved><Amount>871</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.71</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>99</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>58080</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>PxBFJru9wbrspBRXMIb24QRmcdSn31Qjablv29Uugr8ve3n5uS3wnSfZHz3%2B7r0uM6lFXykq65ehKSSE758EO2MYAMBWNPdJr%2BRx43SmD82gDY4ABjIfGs%2BYZPsEgI77ZE3mrqSEDUS6r6v%2Bllqv7A%3D%3D</OfferListingId><ExchangeId>Y11M4816761M6624986</ExchangeId><Price><Amount>1383</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.83</FormattedPrice></Price><AmountSaved><Amount>817</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.17</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>46937</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>3hR6330ryGaVfSk2Y%2F%2F4jkEMkhKzGcCIU5fjwBusDNlWOVY6qxmfEvJw3Cj4mxmDuR2PN3Ylnf%2FirGfgOS7SC0ecGasjbwaxvcKBAAhPmRLBBhC0jEEN%2BVjSbfcby82dp7nhf4DGDifNDE5ciu9jpA%3D%3D</OfferListingId><ExchangeId>Y11M0530231M5949393</ExchangeId><Price><Amount>1386</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.86</FormattedPrice></Price><AmountSaved><Amount>814</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.14</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2OMGVG4337Z2A</MerchantId><Name>booksXpress</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2OMGVG4337Z2A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>7298</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand NEW over 200k titles In Stock..100% Money Back Guarantee..Tracking and Delivery Notification sent to your email</ConditionNote></OfferAttributes><OfferListing><OfferListingId>rvTrfHyBGnp7zlBmr1e02%2FMw5d3spckJPQCNiJ7yaTBMxnlEJCuSm6Gghg2NheL7sPjthnOwKw%2BYVRdeX19H44ie%2Fy0rpHgUecL83tQW%2BxTc085NmEkFkIKkm%2BgeMzqSEval%2FQtzPZm1G1w7k6Gomg%3D%3D</OfferListingId><ExchangeId>Y11M3534465M8369763</ExchangeId><Price><Amount>1396</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.96</FormattedPrice></Price><AmountSaved><Amount>804</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.04</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Condition=All&IdType=ASIN&ItemId=0816614024&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=QTbHGTWiwkK9dgtzLllGtnNmV886iU55AtowNVznmX8=&Timestamp=2010-11-18T15:58:30Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:30 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ea5be987-dde7-43ec-b149-812c7a69ecf1</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"QTbHGTWiwkK9dgtzLllGtnNmV886iU55AtowNVznmX8=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:30Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0259500000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>24</TotalNew><TotalUsed>29</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>54</TotalOffers><TotalOfferPages>6</TotalOfferPages><Offer><Merchant><MerchantId>A26J6JNN8TGTL9</MerchantId><Name>internationalbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A26J6JNN8TGTL9</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>161552</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Standard used condition. Thousands of books shipped daily!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FQ1BSMswTLtjyfCPUpbXwG7s7PW3HxqhbikR5D9kR80SodbXJdkGpSdsfPkXZw7O8ibm4dEo1N%2BcZNDjBZsrXFIwrjHPR0eCjPrmtP1ekapU5ys3tt4Qp3vnSjzOu%2BELUvk5kvX1i7I%3D</OfferListingId><ExchangeId>Y20M5045579M0716901</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A32UWF11CYXVV6</MerchantId><Name>Goodwill Southern California</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A32UWF11CYXVV6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2458</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Cover slightly worn Great reading copy! Donated books in good or better condition. Ships within 1 to 2 business days! Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pgBIXuEDFBflI1bS9vNCnpBDRHhC2QOxv20QQzpVeLnQ1qBmFemRbKmw4gNSd9AnFkK%2BwbIU6KKBJFKtG0WJAdxPDng6rv2cRBNX1QWUo2melDNtLI9fw5fHKOMowTKY0EM1gszepXk8IlXl82MzOw%3D%3D</OfferListingId><ExchangeId>Y20M6346366M6133622</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1HYNQNUU203U6</MerchantId><Name>Allgreatdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1HYNQNUU203U6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>265</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>HAS LOTS OF WEAR AND SOME WRITING</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ntue7QbbjsrP4xxOB2yhorKw1sDXT%2BJgiKltflZ4uTJ2v7N%2BS4wwAvRN%2BoLdjkVaH4dCkliWbWrS%2FQBvTgqx%2FV%2FcfOkQLKKZuP3M4LkYG0O6%2F%2FaSvkuk9tvX4YdDJR8AEB1jPaYaFs6kcsiIHwAd%2FQ%3D%3D</OfferListingId><ExchangeId>Y18M1601461M6417403</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A24FNSZCMCD126</MerchantId><Name>Ivy_League_Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A24FNSZCMCD126</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CT</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>6237</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>In a good to very good condition. A copy that has been read, but remains in clean condition. All pages are intact, and the cover is intact (including dust cover, if applicable). The spine may show signs of wear. Pages can include limited notes and highlighting, and the copy can include \"From the library of\" labels. WE HAVE BEEN RATED AMONG THE TOP HOLIDAY SELLERS FOR 2009 BASED ON OUTSTANDING PERFORMANCE ON THE BASIS OF NET SALES WITH OUR CUSTOMER SATISFACTION METRICS RECEIVING THE HIGHEST MARKS. Shipping within 24 hours Monday-Friday. 100% Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DvteVaAfsWrmQZ4Bn6GfkEJm8tr%2FbWPYDCx6fXigMKU21hZgMssDvviH%2FOwYDzptvXbHzyaKdaa15jj3nBYRzHi1Ikg9FuUu4YzrlgPFHMoNnvhpojy5nF1aB193ZXNurcbAdkYJ%2BxjLbzskm1PEYQ%3D%3D</OfferListingId><ExchangeId>Y13M6702794M0128387</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1V89HJ1H3KPCF</MerchantId><Name>great_prospects</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1V89HJ1H3KPCF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>937</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Some edge and corner wear. Minimal underlining. A few creases on front and back covers. A few creased pages. SHIPS IN 24 HOURS WITH DELIVERY CONFIRMATION, 100% Guaranteed Purchase!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ikABDD8McvoZbUUh%2BVOSg44TcF6rdch13TEOxDwASusm0VIv9rCUzN0e0OI0ZIwik3W0r3iAAmvcuUQcWKeaXoBNdJSYB5f%2FJ89XP6GCtwwRUbzpp2mw4mtdaCGZhfaowxMp2wPfbkEaR5A5r%2FroYg%3D%3D</OfferListingId><ExchangeId>Y14M0709019M1039576</ExchangeId><Price><Amount>1374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.74</FormattedPrice></Price><AmountSaved><Amount>1126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.26</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AJE7BDIZ1RUPC</MerchantId><Name>character1st</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AJE7BDIZ1RUPC</GlancePage><Location><CountryCode>US</CountryCode><StateCode>KS</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>902</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Very good condition, pages clean, mild wear to softcover. Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6w4LX%2FzfEFNcf8%2BeIYS%2FoJCEYKx4hA4ioPOQGDh6qzskMofsdDVk5aeli%2F1ZsbeVTz8%2BGLRYu3nJAKa1Z4ZrwleS50U2SLt5pMRACdWcDxxZ1ELoOVHMlUp6hPCfs10kHr%2F%2BiodjZJ0%3D</OfferListingId><ExchangeId>Y11M0917285M9675440</ExchangeId><Price><Amount>1375</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.75</FormattedPrice></Price><AmountSaved><Amount>1125</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.25</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AG3758TNHVZC4</MerchantId><Name>Wildwednesday</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AG3758TNHVZC4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>Sq%2Bza7PiYHWfjmrjUpyaiiU89GiLZtudro0pNOmw7AleJeZ6%2BHYkjort%2FT4bEPUbwKsN2xvqet9Fb6rpVQgDVRHGpYW3MXzbLQvRW5ajUvQYTp41P574G6vDYqWdzWimz7WVNy6XMpt7Sgc8MaJXYg%3D%3D</OfferListingId><ExchangeId>Y19M4862378M4836354</ExchangeId><Price><Amount>1500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.00</FormattedPrice></Price><AmountSaved><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASWK2P83YYFWO</MerchantId><Name>textbooksnow-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASWK2P83YYFWO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>40548</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Inventory subject to prior sale. Used items have varying degrees of wear, highlighting, etc. and may not include supplements such as infotrac or other web access codes. Expedited orders cannot be sent to PO Box. Sorry, not able to ship to APO, FPO, Alaska, and Hawaii.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Y9HFgklMp3MS8jrE8W4YkqC0Cd87ZA5%2FXXuwUg5XdlDdNoABAE4KiF6JLwVQvghRYqjybfj1%2FfkWbQV7caqPtHbHcMnNxXH4V99GJ7subQGbiMPwkeVnhF7l8YKQlC354YVr2U4puPo%3D</OfferListingId><ExchangeId>Y19M0508549M2284143</ExchangeId><Price><Amount>1588</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.88</FormattedPrice></Price><AmountSaved><Amount>912</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.12</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AACSFD8GA6SAY</MerchantId><Name>lb7852</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AACSFD8GA6SAY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>481</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Excellent condition - Looks New. Paperback. Pages are excellent. No marks or tears.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>IevwvC12ynQcRzKVOOEZcARSd6Gm10f733%2Fb0%2BU6Mjdu1qjGGKb0%2BsF8l%2BheKti1IRo9xyUIk7Dhw8T3MGp%2FIEWMmUEcqCHtcSsx698B7JZAPpM3H90qrLGYBB6AR1J3bl4apEFk42kHEBoDMIfqcw%3D%3D</OfferListingId><ExchangeId>Y14M5841050M5242811</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>185265</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Shows definite wear, and perhaps considerable marking on inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5zWYaVtaZdW3aGrzB35LuXROSo03O03%2F9WndKMYUAJH8Fysh3kIx4bO9PVXMO2RoXH4Qs48s5A%2BpwOA%2BuWRIp6Io4vqUzSN%2FRDZzHnkN4tvYe2F37p6wmUyz2maVBpialnPZbXdElw0%3D</OfferListingId><ExchangeId>Y18M1583729M8817691</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Author=Orwell&Operation=ItemSearch&SearchIndex=Books&Service=AWSECommerceService&Signature=0k/Jju04OxqW0BiDIg4yU0ZR06YeCG//RjarNCaiupc=&Timestamp=2010-11-18T15:58:32Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:33 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ba9a852e-308b-4fa9-a428-677f546f783e</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Author\" Value=\"Orwell\"></Argument><Argument Name=\"Signature\" Value=\"0k/Jju04OxqW0BiDIg4yU0ZR06YeCG//RjarNCaiupc=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:32Z\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument></Arguments><RequestProcessingTime>0.4018250000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Author>Orwell</Author><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><MerchantId>Amazon</MerchantId><ResponseGroup>Small</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>1332</TotalResults><TotalPages>134</TotalPages><Item><ASIN>0452284236</ASIN><DetailPageURL>http://www.amazon.com/Nineteen-Eighty-Four-George-Orwell/dp/0452284236%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0452284236</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Nineteen-Eighty-Four-George-Orwell/dp/tech-data/0452284236%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0452284236%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0452284236%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0452284236%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0452284236%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0452284236%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0452284236%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284236</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Afterword\">Erich Fromm</Creator><Creator Role=\"Foreword\">Thomas Pynchon</Creator><Creator Role=\"Designer\">Daniel Lagin</Creator><Manufacturer>Plume</Manufacturer><ProductGroup>Book</ProductGroup><Title>Nineteen Eighty-Four</Title></ItemAttributes></Item><Item><ASIN>B002HWSY2A</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-Fairy-Story-ebook/dp/B002HWSY2A%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002HWSY2A</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-Fairy-Story-ebook/dp/tech-data/B002HWSY2A%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002HWSY2A%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002HWSY2A%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002HWSY2A%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002HWSY2A%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002HWSY2A%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002HWSY2A%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002HWSY2A</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Author>Raplh Steadman</Author><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Animal Farm: A Fairy Story</Title></ItemAttributes></Item><Item><ASIN>0151010269</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-1984-George-Orwell/dp/0151010269%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0151010269</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-1984-George-Orwell/dp/tech-data/0151010269%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0151010269%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0151010269%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0151010269%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Introduction\">Christopher Hitchens</Creator><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>Book</ProductGroup><Title>Animal Farm and 1984</Title></ItemAttributes></Item><Item><ASIN>0141183055</ASIN><DetailPageURL>http://www.amazon.com/Homage-Catalonia-Penguin-Modern-Classics/dp/0141183055%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0141183055</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Homage-Catalonia-Penguin-Modern-Classics/dp/tech-data/0141183055%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0141183055%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0141183055%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0141183055%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0141183055%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0141183055%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0141183055%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141183055</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Editor\">Peter Davison</Creator><Creator Role=\"Introduction\">Julian Symons</Creator><Manufacturer>Penguin Classics</Manufacturer><ProductGroup>Book</ProductGroup><Title>Homage to Catalonia (Penguin Modern Classics)</Title></ItemAttributes></Item><Item><ASIN>015626224X</ASIN><DetailPageURL>http://www.amazon.com/Down-Paris-London-George-Orwell/dp/015626224X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D015626224X</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Down-Paris-London-George-Orwell/dp/tech-data/015626224X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D015626224X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D015626224X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D015626224X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/015626224X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/015626224X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/015626224X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D015626224X</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>Down and Out in Paris and London</Title></ItemAttributes></Item><Item><ASIN>B000SEH4AW</ASIN><DetailPageURL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SEH4AW</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/tech-data/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Everyman's Library</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Nineteen Eighty-Four</Title></ItemAttributes></Item><Item><ASIN>0156186004</ASIN><DetailPageURL>http://www.amazon.com/Collection-Essays-George-Orwell/dp/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0156186004</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Collection-Essays-George-Orwell/dp/tech-data/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>A Collection of Essays</Title></ItemAttributes></Item><Item><ASIN>B003WJQ6RW</ASIN><DetailPageURL>http://www.amazon.com/Burmese-Days-ebook/dp/B003WJQ6RW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003WJQ6RW</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Burmese-Days-ebook/dp/tech-data/B003WJQ6RW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003WJQ6RW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003WJQ6RW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003WJQ6RW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003WJQ6RW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003WJQ6RW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003WJQ6RW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003WJQ6RW</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Burmese Days</Title></ItemAttributes></Item><Item><ASIN>0156033070</ASIN><DetailPageURL>http://www.amazon.com/All-Art-Propaganda-George-Orwell/dp/0156033070%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0156033070</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/All-Art-Propaganda-George-Orwell/dp/tech-data/0156033070%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0156033070%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0156033070%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0156033070%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0156033070%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0156033070%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0156033070%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156033070</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Author>Keith Gessen</Author><Creator Role=\"Editor\">George Packer</Creator><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>All Art Is Propaganda</Title></ItemAttributes></Item><Item><ASIN>0375415033</ASIN><DetailPageURL>http://www.amazon.com/Essays-Everymans-Library-Classics-Contemporary/dp/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0375415033</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Essays-Everymans-Library-Classics-Contemporary/dp/tech-data/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Everyman's Library</Manufacturer><ProductGroup>Book</ProductGroup><Title>Essays (Everyman's Library Classics &amp; Contemporary Classics)</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=482224816X&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=eoRjlMiVpwjGChNwvEdXq5RF3pb+/OYmsdTXOblK3Qc=&Timestamp=2010-11-18T15:58:33Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:34 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>8f7d74a4-bbc9-4eaa-a07c-e51a4dd4586b</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"eoRjlMiVpwjGChNwvEdXq5RF3pb+/OYmsdTXOblK3Qc=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"482224816X\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:33Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0196870000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>482224816X</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>482224816X</ASIN><DetailPageURL>http://www.amazon.co.jp/%E3%82%B9%E3%83%86%E3%82%A3%E3%83%BC%E3%83%96%E3%83%BB%E3%82%B8%E3%83%A7%E3%83%96%E3%82%BA-%E9%A9%9A%E7%95%B0%E3%81%AE%E3%83%97%E3%83%AC%E3%82%BC%E3%83%B3%E2%80%95%E4%BA%BA%E3%80%85%E3%82%92%E6%83%B9%E3%81%8D%E3%81%A4%E3%81%91%E3%82%8B18%E3%81%AE%E6%B3%95%E5%89%87-%E3%82%AB%E3%83%BC%E3%83%9E%E3%82%A4%E3%83%B3%E3%83%BB%E3%82%AC%E3%83%AD/dp/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D482224816X</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D482224816X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink></ItemLinks><ItemAttributes><Author>\xE3\x82\xAB\xE3\x83\xBC\xE3\x83\x9E\xE3\x82\xA4\xE3\x83\xB3\xE3\x83\xBB\xE3\x82\xAC\xE3\x83\xAD</Author><Binding>\xE5\x8D\x98\xE8\xA1\x8C\xE6\x9C\xAC\xEF\xBC\x88\xE3\x82\xBD\xE3\x83\x95\xE3\x83\x88\xE3\x82\xAB\xE3\x83\x90\xE3\x83\xBC\xEF\xBC\x89</Binding><Creator Role=\"\xE3\x81\x9D\xE3\x81\xAE\xE4\xBB\x96\">\xE5\xA4\x96\xE6\x9D\x91\xE4\xBB\x81 \xE8\xA7\xA3\xE8\xAA\xAC</Creator><Creator Role=\"\xE7\xBF\xBB\xE8\xA8\xB3\">\xE4\xBA\x95\xE5\x8F\xA3\xE8\x80\x95\xE4\xBA\x8C</Creator><EAN>9784822248161</EAN><IsAdultProduct>0</IsAdultProduct><ISBN>482224816X</ISBN><Label>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Label><Languages><Language><Name>\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E</Name><Type>Unknown</Type></Language></Languages><ListPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></ListPrice><Manufacturer>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Manufacturer><NumberOfPages>408</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">110</Height><Length Units=\"hundredths-inches\">740</Length><Weight Units=\"hundredths-pounds\">84</Weight><Width Units=\"hundredths-inches\">512</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-07-15</PublicationDate><Publisher>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Publisher><Studio>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Studio><Title>\xE3\x82\xB9\xE3\x83\x86\xE3\x82\xA3\xE3\x83\xBC\xE3\x83\x96\xE3\x83\xBB\xE3\x82\xB8\xE3\x83\xA7\xE3\x83\x96\xE3\x82\xBA \xE9\xA9\x9A\xE7\x95\xB0\xE3\x81\xAE\xE3\x83\x97\xE3\x83\xAC\xE3\x82\xBC\xE3\x83\xB3\xE2\x80\x95\xE4\xBA\xBA\xE3\x80\x85\xE3\x82\x92\xE6\x83\xB9\xE3\x81\x8D\xE3\x81\xA4\xE3\x81\x91\xE3\x82\x8B18\xE3\x81\xAE\xE6\xB3\x95\xE5\x89\x87</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1530</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,530</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>2000</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 2,000</FormattedPrice></LowestCollectiblePrice><TotalNew>3</TotalNew><TotalUsed>15</TotalUsed><TotalCollectible>3</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>AN1VRQENFRJN5</MerchantId><Name>Amazon.co.jp</Name><GlancePage>http://www.amazon.co.jp/gp/help/seller/home.html?seller=AN1VRQENFRJN5</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>jVC6rwYiMQ7W1X83K0U5ezAN9vgMIMU7%2BjNa0tguH6cn38SuuvpswJEffo6pwWvoIEzsDGMPUHo6ISqMxMfoddPDHDF93IYI</OfferListingId><Price><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></Price><Availability>\xE5\x9C\xA8\xE5\xBA\xAB\xE3\x81\x82\xE3\x82\x8A\xE3\x80\x82</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing><LoyaltyPoints><Points>189</Points><TypicalRedemptionValue><Amount>189</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 189</FormattedPrice></TypicalRedemptionValue></LoyaltyPoints></Offer></Offers></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Keywords=zizek%20lacan&Operation=ItemSearch&SearchIndex=Books&Service=AWSECommerceService&Signature=LRSW1esHdytFNnA19ycDPS4Up8BSQ6Q+etbwlKnsnw0=&Sort=relevancerank&Timestamp=2010-11-18T15:58:34Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:35 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>bfc61e6d-06b4-4415-a57f-1c20e741e325</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"LRSW1esHdytFNnA19ycDPS4Up8BSQ6Q+etbwlKnsnw0=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Keywords\" Value=\"zizek lacan\"></Argument><Argument Name=\"Sort\" Value=\"relevancerank\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:34Z\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument></Arguments><RequestProcessingTime>0.2685290000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><Keywords>zizek lacan</Keywords><MerchantId>Amazon</MerchantId><ResponseGroup>Small</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex><Sort>relevancerank</Sort></ItemSearchRequest></Request><TotalResults>71</TotalResults><TotalPages>8</TotalPages><Item><ASIN>0393329550</ASIN><DetailPageURL>http://www.amazon.com/How-Read-Lacan/dp/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0393329550</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/How-Read-Lacan/dp/tech-data/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Creator Role=\"Series Editor\">Simon Critchley</Creator><Manufacturer>W. W. Norton &amp; Company</Manufacturer><ProductGroup>Book</ProductGroup><Title>How to Read Lacan (How to Read)</Title></ItemAttributes></Item><Item><ASIN>026274015X</ASIN><DetailPageURL>http://www.amazon.com/Looking-Awry-Introduction-Jacques-through/dp/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D026274015X</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Looking-Awry-Introduction-Jacques-through/dp/tech-data/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>The MIT Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Looking Awry: An Introduction to Jacques Lacan through Popular Culture (October Books)</Title></ItemAttributes></Item><Item><ASIN>0415772591</ASIN><DetailPageURL>http://www.amazon.com/Enjoy-Your-Symptom-Hollywood-Routledge/dp/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0415772591</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Enjoy-Your-Symptom-Hollywood-Routledge/dp/tech-data/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>Routledge</Manufacturer><ProductGroup>Book</ProductGroup><Title>Enjoy Your Symptom!: Jacques Lacan in Hollywood and Out (Routledge Classics)</Title></ItemAttributes></Item><Item><ASIN>0860915921</ASIN><DetailPageURL>http://www.amazon.com/Everything-Always-Wanted-about-Lacan/dp/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0860915921</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Everything-Always-Wanted-about-Lacan/dp/tech-data/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink></ItemLinks><ItemAttributes><Creator Role=\"Editor\">Slavoj Zizek</Creator><Manufacturer>Verso</Manufacturer><ProductGroup>Book</ProductGroup><Title>Everything You Always Wanted to Know about Lacan: But Were Afraid to Ask Hitchcock</Title></ItemAttributes></Item><Item><ASIN>3851320379</ASIN><DetailPageURL>http://www.amazon.com/Mehr-Geniessen-Lacan-Popularkultur-war-German/dp/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D3851320379</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Mehr-Geniessen-Lacan-Popularkultur-war-German/dp/tech-data/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>Turia &amp; Kant</Manufacturer><ProductGroup>Book</ProductGroup><Title>Mehr-Geniessen: Lacan in der Popularkultur (Wo es war) (German Edition)</Title></ItemAttributes></Item><Item><ASIN>0415278627</ASIN><DetailPageURL>http://www.amazon.com/Jacques-Lacan-Critical-Evaluations-Cultural/dp/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0415278627</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Jacques-Lacan-Critical-Evaluations-Cultural/dp/tech-data/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink></ItemLinks><ItemAttributes><Author>Jerry Aline Flieger</Author><Creator Role=\"Editor\">Slavoj Zizek</Creator><Manufacturer>Routledge</Manufacturer><ProductGroup>Book</ProductGroup><Title>Jacques Lacan: Critical Evaluations in Cultural Theory</Title></ItemAttributes></Item><Item><ASIN>0230603300</ASIN><DetailPageURL>http://www.amazon.com/Joyce-through-Lacan-Zizek-Explorations/dp/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0230603300</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Joyce-through-Lacan-Zizek-Explorations/dp/tech-data/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink></ItemLinks><ItemAttributes><Author>Shelly Brivic</Author><Manufacturer>Palgrave Macmillan</Manufacturer><ProductGroup>Book</ProductGroup><Title>Joyce through Lacan and Zizek: Explorations (New Directions in Irish and Irish American Literature)</Title></ItemAttributes></Item><Item><ASIN>B000F2CCUY</ASIN><DetailPageURL>http://www.amazon.com/inverse-side-structure-Deleuze-Criticism/dp/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000F2CCUY</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/inverse-side-structure-Deleuze-Criticism/dp/tech-data/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink></ItemLinks><ItemAttributes><Author>Daniel W. Smith</Author><Manufacturer>Thomson Gale</Manufacturer><ProductGroup>Book</ProductGroup><Title>The inverse side of the structure: Zizek on Deleuze on Lacan.(Slavoj Zizek)(Gilles Deleuze)(Jacques Lacan): An article from: Criticism</Title></ItemAttributes></Item><Item><ASIN>1159126976</ASIN><DetailPageURL>http://www.amazon.com/Lacanismus-Psychoanalytische-%C3%96dipuskonflikt-Spiegelstadium-Interpassivit%C3%A4t/dp/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1159126976</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Lacanismus-Psychoanalytische-%C3%96dipuskonflikt-Spiegelstadium-Interpassivit%C3%A4t/dp/tech-data/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink></ItemLinks><ItemAttributes><Creator Role=\"Editor\">B\xC3\xBCcher Gruppe</Creator><Manufacturer>Books LLC</Manufacturer><ProductGroup>Book</ProductGroup><Title>Lacanismus: Slavoj Zizek, Jacques Lacan, Psychoanalytische Filmtheorie, Objekt Klein A, \xC3\x96dipuskonflikt, Spiegelstadium, Interpassivit\xC3\xA4t (German Edition)</Title></ItemAttributes></Item><Item><ASIN>B003QEZTMQ</ASIN><DetailPageURL>http://www.amazon.com/Joyce-Through-Lacan-Zizek-Finnegans/dp/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003QEZTMQ</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Joyce-Through-Lacan-Zizek-Finnegans/dp/tech-data/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink></ItemLinks><ItemAttributes><Author>Shelly Brivic</Author><Manufacturer>Unknown</Manufacturer><ProductGroup>Book</ProductGroup><Title>Joyce Through Lacan and Zizek: From A Portrait of the Artist to Finnegans Wake</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Operation=ItemSearch&Power=deleuze%20binding:kindle&ResponseGroup=ItemAttributes&SearchIndex=Books&Service=AWSECommerceService&Signature=UBonyksTR36f7wuMaFYYSnUoG1CCn4YPawD49r8htPE=&Timestamp=2010-11-18T15:58:35Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:36 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>77a416a5-ae5f-4a09-82b0-c4b71903cbfa</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Power\" Value=\"deleuze binding:kindle\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument><Argument Name=\"Signature\" Value=\"UBonyksTR36f7wuMaFYYSnUoG1CCn4YPawD49r8htPE=\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:35Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.4089780000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><MerchantId>Amazon</MerchantId><Power>deleuze binding:kindle</Power><ResponseGroup>ItemAttributes</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>23</TotalResults><TotalPages>3</TotalPages><Item><ASIN>B002MAPRNG</ASIN><DetailPageURL>http://www.amazon.com/Creative-Evolution-ebook/dp/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPRNG</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Creative-Evolution-ebook/dp/tech-data/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Creative Evolution</Title></ItemAttributes></Item><Item><ASIN>B000FA5YU6</ASIN><DetailPageURL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5YU6</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/tech-data/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203029923</EISBN><Format>Kindle eBook</Format><Label>Taylor &amp; Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.95</FormattedPrice></ListPrice><Manufacturer>Taylor &amp; Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>200</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor &amp; Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor &amp; Francis</Studio><Title>Gilles Deleuze</Title></ItemAttributes></Item><Item><ASIN>B002MAPROU</ASIN><DetailPageURL>http://www.amazon.com/Laughter-Essay-Meaning-Comic-ebook/dp/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPROU</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Laughter-Essay-Meaning-Comic-ebook/dp/tech-data/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Laughter : an Essay on the Meaning of the Comic</Title></ItemAttributes></Item><Item><ASIN>B003PDN9Z2</ASIN><DetailPageURL>http://www.amazon.com/Chaos-Territory-Art-Deleuze-ebook/dp/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003PDN9Z2</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Chaos-Territory-Art-Deleuze-ebook/dp/tech-data/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink></ItemLinks><ItemAttributes><Author>Elizabeth Grosz</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>700.1</DeweyDecimalNumber><EISBN>9780231517874</EISBN><Format>Kindle eBook</Format><Label>Columbia University Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2250</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.50</FormattedPrice></ListPrice><Manufacturer>Columbia University Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>136</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-05-07</PublicationDate><Publisher>Columbia University Press</Publisher><ReleaseDate>2008-05-07</ReleaseDate><Studio>Columbia University Press</Studio><Title>Chaos, Territory, Art: Deleuze and the Framing of the Earth</Title></ItemAttributes></Item><Item><ASIN>B0042XAME0</ASIN><DetailPageURL>http://www.amazon.com/Skin-Film-Intercultural-Embodiment-ebook/dp/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0042XAME0</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Skin-Film-Intercultural-Embodiment-ebook/dp/tech-data/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink></ItemLinks><ItemAttributes><Author>Laura U. Marks</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>791.43091724</DeweyDecimalNumber><EISBN>9780822381372</EISBN><Format>Kindle Book</Format><Label>Duke University Press Books</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.95</FormattedPrice></ListPrice><Manufacturer>Duke University Press Books</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>320</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>1999-01-01</PublicationDate><Publisher>Duke University Press Books</Publisher><ReleaseDate>1999-01-01</ReleaseDate><Studio>Duke University Press Books</Studio><Title>The Skin of the Film: Intercultural Cinema, Embodiment, and the Senses</Title></ItemAttributes></Item><Item><ASIN>B004445HMO</ASIN><DetailPageURL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004445HMO</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/tech-data/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink></ItemLinks><ItemAttributes><Binding>Kindle Edition</Binding><Creator Role=\"Editor\">D. N. Rodowick</Creator><DeweyDecimalNumber>791.4301</DeweyDecimalNumber><EISBN>9781452930473</EISBN><Format>Kindle Book</Format><Label>Univ Of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.50</FormattedPrice></ListPrice><Manufacturer>Univ Of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>416</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2010-12-21</PublicationDate><Publisher>Univ Of Minnesota Press</Publisher><ReleaseDate>2010-12-21</ReleaseDate><Studio>Univ Of Minnesota Press</Studio><Title>Afterimages of Gilles Deleuze's Film Philosophy</Title></ItemAttributes></Item><Item><ASIN>B000SIYHXA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SIYHXA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/tech-data/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Andrew Ballantyne</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203934203</EISBN><Format>Kindle eBook</Format><Label>T &amp; F Books UK</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2798</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.98</FormattedPrice></ListPrice><Manufacturer>T &amp; F Books UK</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>124</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-01-23</PublicationDate><Publisher>T &amp; F Books UK</Publisher><ReleaseDate>2009-01-23</ReleaseDate><Studio>T &amp; F Books UK</Studio><Title>Deleuze and Guattari: For Architects</Title></ItemAttributes></Item><Item><ASIN>B004BSFNO0</ASIN><DetailPageURL>http://www.amazon.com/Philosophy-Turbulent-Times-Canguilhem-ebook/dp/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004BSFNO0</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Philosophy-Turbulent-Times-Canguilhem-ebook/dp/tech-data/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink></ItemLinks><ItemAttributes><Author>Elisabeth Roudinesco</Author><Binding>Kindle Edition</Binding><Creator Role=\"Translator\">William McCuaig</Creator><DeweyDecimalNumber>149</DeweyDecimalNumber><Format>Kindle Book</Format><Label>Columbia University Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.99</FormattedPrice></ListPrice><Manufacturer>Columbia University Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>208</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-09-30</PublicationDate><Publisher>Columbia University Press</Publisher><ReleaseDate>2010-05-01</ReleaseDate><Studio>Columbia University Press</Studio><Title>Philosophy in Turbulent Times: Canguilhem, Sartre, Foucault, Althusser, Deleuze, Derrida</Title></ItemAttributes></Item><Item><ASIN>B002KKCVCI</ASIN><DetailPageURL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002KKCVCI</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/tech-data/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9781741150018</EISBN><Format>Kindle Book</Format><Label>Allen &amp; Unwin</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></ListPrice><Manufacturer>Allen &amp; Unwin</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>240</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2003-04-01</PublicationDate><Publisher>Allen &amp; Unwin</Publisher><ReleaseDate>2002-01-08</ReleaseDate><Studio>Allen &amp; Unwin</Studio><Title>Understanding Deleuze</Title></ItemAttributes></Item><Item><ASIN>B000FA5WSA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5WSA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/tech-data/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Eugene W. Holland</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203007426</EISBN><Format>Kindle eBook</Format><Label>Taylor &amp; Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$41.95</FormattedPrice></ListPrice><Manufacturer>Taylor &amp; Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>176</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor &amp; Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor &amp; Francis</Studio><Title>Deleuze and Guattari's Anti-Oedipus</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,26 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Keywords=deleuze&Operation=ItemSearch&ResponseGroup=ItemAttributes&SearchIndex=KindleStore&Service=AWSECommerceService&Signature=BWoxhJjS4UVOH1+VTpOr0gjLbSEmmMW3AHk9MU+rKzA=&Timestamp=2010-11-18T15:58:36Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:37 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>15c0f513-ad53-4a12-a6de-ebdff6e57b96</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"BWoxhJjS4UVOH1+VTpOr0gjLbSEmmMW3AHk9MU+rKzA=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Keywords\" Value=\"deleuze\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:36Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"SearchIndex\" Value=\"KindleStore\"></Argument></Arguments><RequestProcessingTime>0.2174430000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><Keywords>deleuze</Keywords><MerchantId>Amazon</MerchantId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>KindleStore</SearchIndex></ItemSearchRequest></Request><TotalResults>23</TotalResults><TotalPages>3</TotalPages><Item><ASIN>B000FA5YU6</ASIN><DetailPageURL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5YU6</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/tech-data/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203029923</EISBN><Format>Kindle eBook</Format><Label>Taylor &amp; Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.95</FormattedPrice></ListPrice><Manufacturer>Taylor &amp; Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>200</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor &amp; Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor &amp; Francis</Studio><Title>Gilles Deleuze</Title></ItemAttributes></Item><Item><ASIN>B000FA5WSA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5WSA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/tech-data/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Eugene W. Holland</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203007426</EISBN><Format>Kindle eBook</Format><Label>Taylor &amp; Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$41.95</FormattedPrice></ListPrice><Manufacturer>Taylor &amp; Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>176</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor &amp; Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor &amp; Francis</Studio><Title>Deleuze and Guattari's Anti-Oedipus</Title></ItemAttributes></Item><Item><ASIN>B002KKCVCI</ASIN><DetailPageURL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002KKCVCI</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/tech-data/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9781741150018</EISBN><Format>Kindle Book</Format><Label>Allen &amp; Unwin</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></ListPrice><Manufacturer>Allen &amp; Unwin</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>240</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2003-04-01</PublicationDate><Publisher>Allen &amp; Unwin</Publisher><ReleaseDate>2002-01-08</ReleaseDate><Studio>Allen &amp; Unwin</Studio><Title>Understanding Deleuze</Title></ItemAttributes></Item><Item><ASIN>B003E2UPR4</ASIN><DetailPageURL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003E2UPR4</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/tech-data/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink></ItemLinks><ItemAttributes><Author>Steven Shaviro</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>192</DeweyDecimalNumber><EISBN>9780262261159</EISBN><Format>Kindle eBook</Format><Label>The MIT Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.00</FormattedPrice></ListPrice><Manufacturer>The MIT Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>192</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-05-29</PublicationDate><Publisher>The MIT Press</Publisher><ReleaseDate>2009-05-29</ReleaseDate><Studio>The MIT Press</Studio><Title>Without Criteria: Kant, Whitehead, Deleuze, and Aesthetics</Title></ItemAttributes></Item><Item><ASIN>B000SIYHXA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SIYHXA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/tech-data/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Andrew Ballantyne</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203934203</EISBN><Format>Kindle eBook</Format><Label>T &amp; F Books UK</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2798</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.98</FormattedPrice></ListPrice><Manufacturer>T &amp; F Books UK</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>124</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-01-23</PublicationDate><Publisher>T &amp; F Books UK</Publisher><ReleaseDate>2009-01-23</ReleaseDate><Studio>T &amp; F Books UK</Studio><Title>Deleuze and Guattari: For Architects</Title></ItemAttributes></Item><Item><ASIN>B003U6Z2JA</ASIN><DetailPageURL>http://www.amazon.com/Bergson-Deleuze-Encounters-Transcendental-Experience-ebook/dp/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003U6Z2JA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Bergson-Deleuze-Encounters-Transcendental-Experience-ebook/dp/tech-data/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Valentine Moulard-leonard</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780791477953</EISBN><Format>Kindle Book</Format><Label>State University of New York Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.95</FormattedPrice></ListPrice><Manufacturer>State University of New York Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>197</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-08-07</PublicationDate><Publisher>State University of New York Press</Publisher><ReleaseDate>2008-08-07</ReleaseDate><Studio>State University of New York Press</Studio><Title>Bergson-Deleuze Encounters: Transcendental Experience and the Thought of the Virtual</Title></ItemAttributes></Item><Item><ASIN>B003HIXT6Y</ASIN><DetailPageURL>http://www.amazon.com/Onto-Ethologies-Environments-Heidegger-Merleau-Ponty-ebook/dp/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003HIXT6Y</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Onto-Ethologies-Environments-Heidegger-Merleau-Ponty-ebook/dp/tech-data/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink></ItemLinks><ItemAttributes><Author>Brett Buchanan</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>113.8</DeweyDecimalNumber><EISBN>9780791477465</EISBN><Format>Kindle Book</Format><Label>State University of New York Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2495</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$24.95</FormattedPrice></ListPrice><Manufacturer>State University of New York Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>223</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-11-06</PublicationDate><Publisher>State University of New York Press</Publisher><ReleaseDate>2008-11-06</ReleaseDate><Studio>State University of New York Press</Studio><Title>Onto-Ethologies: The Animal Environments of Uexkull, Heidegger, Merleau-Ponty, and Deleuze</Title></ItemAttributes></Item><Item><ASIN>B000OI17AA</ASIN><DetailPageURL>http://www.amazon.com/A-Shock-to-Thought-ebook/dp/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000OI17AA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/A-Shock-to-Thought-ebook/dp/tech-data/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Brian Massumi</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>801.93</DeweyDecimalNumber><EISBN>9780203994368</EISBN><Format>Kindle eBook</Format><Label>Taylor &amp; Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$41.95</FormattedPrice></ListPrice><Manufacturer>Taylor &amp; Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>296</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2007-03-16</PublicationDate><Publisher>Taylor &amp; Francis</Publisher><ReleaseDate>2007-03-16</ReleaseDate><Studio>Taylor &amp; Francis</Studio><Title>A Shock to Thought</Title></ItemAttributes></Item><Item><ASIN>B004445HMO</ASIN><DetailPageURL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004445HMO</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/tech-data/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink></ItemLinks><ItemAttributes><Binding>Kindle Edition</Binding><Creator Role=\"Editor\">D. N. Rodowick</Creator><DeweyDecimalNumber>791.4301</DeweyDecimalNumber><EISBN>9781452930473</EISBN><Format>Kindle Book</Format><Label>Univ Of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.50</FormattedPrice></ListPrice><Manufacturer>Univ Of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>416</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2010-12-21</PublicationDate><Publisher>Univ Of Minnesota Press</Publisher><ReleaseDate>2010-12-21</ReleaseDate><Studio>Univ Of Minnesota Press</Studio><Title>Afterimages of Gilles Deleuze's Film Philosophy</Title></ItemAttributes></Item><Item><ASIN>B002MAPRNG</ASIN><DetailPageURL>http://www.amazon.com/Creative-Evolution-ebook/dp/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPRNG</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Creative-Evolution-ebook/dp/tech-data/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Creative Evolution</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
26
+ http_version: "1.1"
@@ -0,0 +1,151 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://ecs.amazonaws.co.uk:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=Ylfvb8fP/DaDIliy2R/EE1zmRZJGP0LDMDrH/a/WNj4=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Thu, 18 Nov 2010 15:58:40 GMT
15
+ server:
16
+ - Server
17
+ content-type:
18
+ - text/xml;charset=UTF-8
19
+ vary:
20
+ - Accept-Encoding,User-Agent
21
+ nncoection:
22
+ - close
23
+ transfer-encoding:
24
+ - chunked
25
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>cb545530-9373-44c9-a8a0-ba3b3159a31a</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"Ylfvb8fP/DaDIliy2R/EE1zmRZJGP0LDMDrH/a/WNj4=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0112290000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.uk/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.uk/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.uk/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.uk/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.uk/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1400</Amount><CurrencyCode>GBP</CurrencyCode><FormattedPrice>\xC2\xA314.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12-01</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
26
+ http_version: "1.1"
27
+ - !ruby/struct:VCR::HTTPInteraction
28
+ request: !ruby/struct:VCR::Request
29
+ method: :get
30
+ uri: http://ecs.amazonaws.de:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=O3DB4115bkYPwrxmVX4yTA7UgQ5jWlVoSWuyhK2sI6Q=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
31
+ body:
32
+ headers:
33
+ response: !ruby/struct:VCR::Response
34
+ status: !ruby/struct:VCR::ResponseStatus
35
+ code: 200
36
+ message: OK
37
+ headers:
38
+ date:
39
+ - Thu, 18 Nov 2010 15:58:40 GMT
40
+ server:
41
+ - Server
42
+ content-type:
43
+ - text/xml;charset=UTF-8
44
+ vary:
45
+ - Accept-Encoding,User-Agent
46
+ nncoection:
47
+ - close
48
+ transfer-encoding:
49
+ - chunked
50
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>bb01499d-5005-4ed8-bcab-df6a9ca8ad81</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"O3DB4115bkYPwrxmVX4yTA7UgQ5jWlVoSWuyhK2sI6Q=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0079180000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.de/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.de/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.de/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.de/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.de/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Binding>Taschenbuch</Binding><Creator Role=\"K\xC3\xBCnstler\">Felix Guattari</Creator><Creator Role=\"\xC3\x9Cbersetzer\">Brian Massumi</Creator><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>Englisch</Name><Type>Unknown</Type></Language><Language><Name>Englisch</Name><Type>Original Language</Type></Language><Language><Name>Englisch</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1934</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 19,34</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
51
+ http_version: "1.1"
52
+ - !ruby/struct:VCR::HTTPInteraction
53
+ request: !ruby/struct:VCR::Request
54
+ method: :get
55
+ uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=ltrdmWKqTxcHz2UnIh2O9oKN9+nVOl5lgvDCLUDJgFA=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
56
+ body:
57
+ headers:
58
+ response: !ruby/struct:VCR::Response
59
+ status: !ruby/struct:VCR::ResponseStatus
60
+ code: 200
61
+ message: OK
62
+ headers:
63
+ date:
64
+ - Thu, 18 Nov 2010 15:58:40 GMT
65
+ server:
66
+ - Server
67
+ content-type:
68
+ - text/xml;charset=UTF-8
69
+ vary:
70
+ - Accept-Encoding,User-Agent
71
+ nncoection:
72
+ - close
73
+ transfer-encoding:
74
+ - chunked
75
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>e23fe62d-0170-4c15-8e09-84891b93a2c4</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"ltrdmWKqTxcHz2UnIh2O9oKN9+nVOl5lgvDCLUDJgFA=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0399040000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.fr/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Broch\xC3\xA9</Binding><Creator Role=\"Traduction\">Brian Massumi</Creator><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>Anglais</Name><Type>Unknown</Type></Language><Language><Name>Anglais</Name><Type>Original Language</Type></Language><Language><Name>Anglais</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1907</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 19,07</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12-01</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
76
+ http_version: "1.1"
77
+ - !ruby/struct:VCR::HTTPInteraction
78
+ request: !ruby/struct:VCR::Request
79
+ method: :get
80
+ uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=36meLo/V4PyKOYP8a7YjZF2bUfjcKnzRMeH3CX9qq/Y=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
81
+ body:
82
+ headers:
83
+ response: !ruby/struct:VCR::Response
84
+ status: !ruby/struct:VCR::ResponseStatus
85
+ code: 200
86
+ message: OK
87
+ headers:
88
+ date:
89
+ - Thu, 18 Nov 2010 15:58:40 GMT
90
+ server:
91
+ - Server
92
+ content-type:
93
+ - text/xml;charset=UTF-8
94
+ vary:
95
+ - Accept-Encoding,User-Agent
96
+ nncoection:
97
+ - close
98
+ transfer-encoding:
99
+ - chunked
100
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>e52b66ae-6550-4941-b185-0593e0e0a5cd</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"36meLo/V4PyKOYP8a7YjZF2bUfjcKnzRMeH3CX9qq/Y=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0081920000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes></Item></Items></ItemLookupResponse>"
101
+ http_version: "1.1"
102
+ - !ruby/struct:VCR::HTTPInteraction
103
+ request: !ruby/struct:VCR::Request
104
+ method: :get
105
+ uri: http://ecs.amazonaws.ca:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=XoIRPVHc+sm5yLNYbMI7TsJubTAGHW7ee3i1YZR9nRQ=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
106
+ body:
107
+ headers:
108
+ response: !ruby/struct:VCR::Response
109
+ status: !ruby/struct:VCR::ResponseStatus
110
+ code: 200
111
+ message: OK
112
+ headers:
113
+ date:
114
+ - Thu, 18 Nov 2010 15:58:40 GMT
115
+ server:
116
+ - Server
117
+ content-type:
118
+ - text/xml;charset=UTF-8
119
+ vary:
120
+ - Accept-Encoding,User-Agent
121
+ nncoection:
122
+ - close
123
+ transfer-encoding:
124
+ - chunked
125
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>c2c4f4ac-7046-4d2f-9fd7-3b1875300f07</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"XoIRPVHc+sm5yLNYbMI7TsJubTAGHW7ee3i1YZR9nRQ=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0111990000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.ca/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.ca/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.ca/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.ca/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.ca/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Brian Massumi</Creator><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2521</Amount><CurrencyCode>CAD</CurrencyCode><FormattedPrice>CDN$ 25.21</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-11</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
126
+ http_version: "1.1"
127
+ - !ruby/struct:VCR::HTTPInteraction
128
+ request: !ruby/struct:VCR::Request
129
+ method: :get
130
+ uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=oUQHxB50GPnME05Kkf+11wxvCaH+DKDXkfjGXqzWvxc=&Timestamp=2010-11-18T15:58:39Z&Version=2010-09-01
131
+ body:
132
+ headers:
133
+ response: !ruby/struct:VCR::Response
134
+ status: !ruby/struct:VCR::ResponseStatus
135
+ code: 200
136
+ message: OK
137
+ headers:
138
+ date:
139
+ - Thu, 18 Nov 2010 15:58:40 GMT
140
+ server:
141
+ - Server
142
+ content-type:
143
+ - text/xml;charset=UTF-8
144
+ vary:
145
+ - Accept-Encoding,User-Agent
146
+ nncoection:
147
+ - close
148
+ transfer-encoding:
149
+ - chunked
150
+ body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>3f45172f-cdfb-47ed-876d-4229cba860c2</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"oUQHxB50GPnME05Kkf+11wxvCaH+DKDXkfjGXqzWvxc=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-18T15:58:39Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0090090000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.jp/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>\xE3\x83\x9A\xE3\x83\xBC\xE3\x83\x91\xE3\x83\xBC\xE3\x83\x90\xE3\x83\x83\xE3\x82\xAF</Binding><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>Univ of Minnesota Pr</Label><Languages><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Unknown</Type></Language><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Original Language</Type></Language><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2147</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 2,147</FormattedPrice></ListPrice><Manufacturer>Univ of Minnesota Pr</Manufacturer><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>Univ of Minnesota Pr</Publisher><Studio>Univ of Minnesota Pr</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
151
+ http_version: "1.1"