lcbo 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/.gitignore +1 -0
  2. data/CHANGELOG.md +3 -0
  3. data/Gemfile +6 -0
  4. data/Gemfile.lock +18 -0
  5. data/LICENSE +18 -0
  6. data/README.md +29 -0
  7. data/Rakefile +62 -0
  8. data/lcbo.gemspec +29 -0
  9. data/lib/lcbo.rb +23 -0
  10. data/lib/lcbo/crawlers.rb +4 -0
  11. data/lib/lcbo/crawlers/inventories_crawler.rb +15 -0
  12. data/lib/lcbo/crawlers/product_lists_crawler.rb +23 -0
  13. data/lib/lcbo/crawlers/products_crawler.rb +16 -0
  14. data/lib/lcbo/crawlers/stores_crawler.rb +16 -0
  15. data/lib/lcbo/crawlkit.rb +24 -0
  16. data/lib/lcbo/crawlkit/eventable.rb +56 -0
  17. data/lib/lcbo/crawlkit/fastdate_helper.rb +40 -0
  18. data/lib/lcbo/crawlkit/page.rb +141 -0
  19. data/lib/lcbo/crawlkit/request.rb +51 -0
  20. data/lib/lcbo/crawlkit/request_prototype.rb +31 -0
  21. data/lib/lcbo/crawlkit/response.rb +48 -0
  22. data/lib/lcbo/crawlkit/titlecase_helper.rb +97 -0
  23. data/lib/lcbo/crawlkit/volume_helper.rb +46 -0
  24. data/lib/lcbo/ext.rb +13 -0
  25. data/lib/lcbo/helpers.rb +34 -0
  26. data/lib/lcbo/pages.rb +4 -0
  27. data/lib/lcbo/pages/inventory_page.rb +60 -0
  28. data/lib/lcbo/pages/product_list_page.rb +85 -0
  29. data/lib/lcbo/pages/product_page.rb +296 -0
  30. data/lib/lcbo/pages/store_page.rb +196 -0
  31. data/lib/lcbo/version.rb +3 -0
  32. data/spec/crawlkit/eventable_spec.rb +23 -0
  33. data/spec/crawlkit/fastdate_helper_spec.rb +18 -0
  34. data/spec/crawlkit/page_spec.rb +114 -0
  35. data/spec/crawlkit/request_prototype_spec.rb +5 -0
  36. data/spec/crawlkit/request_spec.rb +41 -0
  37. data/spec/crawlkit/response_spec.rb +5 -0
  38. data/spec/crawlkit/titlecase_helper_spec.rb +30 -0
  39. data/spec/crawlkit/volume_helper_spec.rb +21 -0
  40. data/spec/crawlkit_spec.rb +5 -0
  41. data/spec/lcbo_spec.rb +38 -0
  42. data/spec/pages/inventory_pages.yml +1685 -0
  43. data/spec/pages/inventory_pages/1.html +11649 -0
  44. data/spec/pages/inventory_pages/2.html +495 -0
  45. data/spec/pages/product_list_pages.yml +108 -0
  46. data/spec/pages/product_list_pages/1.html +4866 -0
  47. data/spec/pages/product_pages.yml +258 -0
  48. data/spec/pages/product_pages/1.html +1319 -0
  49. data/spec/pages/product_pages/2.html +1343 -0
  50. data/spec/pages/product_pages/3.html +1336 -0
  51. data/spec/pages/product_pages/4.html +1319 -0
  52. data/spec/pages/product_pages/5.html +1324 -0
  53. data/spec/pages/product_pages/6.html +1319 -0
  54. data/spec/pages/product_pages/7.html +1314 -0
  55. data/spec/pages/store_pages.yml +80 -0
  56. data/spec/pages/store_pages/1.html +592 -0
  57. data/spec/pages/store_pages/2.html +592 -0
  58. data/spec/pages_spec.rb +34 -0
  59. data/spec/spec_helper.rb +77 -0
  60. metadata +205 -0
@@ -0,0 +1,3 @@
1
+ module LCBO
2
+ VERSION = '0.9.0'
3
+ end
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::Eventable, 'when mixed into a class' do
4
+
5
+ it 'should have three callbacks' do
6
+ SpecHelper::Evented.callbacks.size.should == 3
7
+ end
8
+
9
+ context 'upon firing the events' do
10
+ before :all do
11
+ @evented = SpecHelper::Evented.new
12
+ @evented.request!
13
+ end
14
+
15
+ it 'should run all events and fire all callbacks' do
16
+ @evented.requested.should be_true
17
+ @evented.test_1.should be_true
18
+ @evented.test_2.should be_true
19
+ @evented.test_3.should be_true
20
+ end
21
+ end
22
+
23
+ end
@@ -0,0 +1,18 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::FastDateHelper do
4
+ @expectations = {
5
+ '' => nil,
6
+ ' ' => nil,
7
+ "\n" => nil,
8
+ 'belch-fart-2' => nil,
9
+ 'Jan 2, 2001' => '2001-01-02',
10
+ 'Dec 22, 2010' => '2010-12-22',
11
+ 'Feb 26, 1960' => '1960-02-26' }
12
+
13
+ @expectations.each_pair do |input, expectation|
14
+ it "should translate: #{input.inspect} to: #{expectation.inspect}" do
15
+ LCBO::CrawlKit::FastDateHelper[input].should == expectation
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,114 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::Page do
4
+
5
+ it 'should have a collection of emittable fields' do
6
+ SpecHelper::GetPage.fields.should include(:bro_no, :name, :desc)
7
+ SpecHelper::PostPage.fields.should include(:q, :type, :names)
8
+ SpecHelper::EventedPage.fields.should include(:message)
9
+ end
10
+
11
+ describe SpecHelper::GetPage do
12
+ it 'should default to a GET request' do
13
+ SpecHelper::GetPage.http_method.should == :get
14
+ end
15
+
16
+ context 'when requested' do
17
+ before :all do
18
+ @page = SpecHelper::GetPage.request(:bro_no => 1)
19
+ end
20
+
21
+ it 'should not be parsed' do
22
+ @page.is_parsed?.should be_false
23
+ end
24
+
25
+ it 'should have a valid response object' do
26
+ @page.response.should be_a(LCBO::CrawlKit::Response)
27
+ end
28
+
29
+ context 'the response' do
30
+ before :all do
31
+ @page.process
32
+ end
33
+
34
+ it 'should be directly parsable' do
35
+ page = SpecHelper::GetPage.parse(@page.response)
36
+ page.as_hash.values.should include(*@page.as_hash.values)
37
+ end
38
+
39
+ it 'should be parsable from a hash representation' do
40
+ page = SpecHelper::GetPage.parse(@page.response.as_hash)
41
+ page.as_hash.values.should include(*@page.as_hash.values)
42
+ end
43
+ end
44
+ end
45
+
46
+ context 'when processed' do
47
+ before :all do
48
+ @page = SpecHelper::GetPage.process(:bro_no => 1)
49
+ end
50
+
51
+ it 'should expand the URI template' do
52
+ @page.response.uri.should == 'http://bros.local/bros/1'
53
+ end
54
+
55
+ it 'should emit expected values' do
56
+ @page.bro_no.should == 1
57
+ @page.name.should == 'Carsten'
58
+ @page.desc.should == 'Carsten is a bro.'
59
+ end
60
+
61
+ it 'should emit a hash of expected values' do
62
+ hsh = @page.as_hash
63
+ hsh[:bro_no].should == 1
64
+ hsh[:name].should == 'Carsten'
65
+ hsh[:desc].should == 'Carsten is a bro.'
66
+ end
67
+ end
68
+ end
69
+
70
+ describe SpecHelper::PostPage do
71
+ it 'should overide the default get http method with post' do
72
+ SpecHelper::PostPage.http_method.should == :post
73
+ end
74
+
75
+ context 'when processed' do
76
+ before :all do
77
+ @page = SpecHelper::PostPage.process(nil, :q => 'test', :type => 'test')
78
+ end
79
+
80
+ it 'should overide default body params with provided params' do
81
+ @page.body_params[:q].should == 'test'
82
+ @page.body_params[:type].should == 'test'
83
+ end
84
+
85
+ it 'should have a valid uri template' do
86
+ @page.response.uri.should == 'http://bros.local/search'
87
+ end
88
+
89
+ it 'should parse the page' do
90
+ @page.as_hash[:names].should include('Carsten', 'Kieran', 'Kevin')
91
+ end
92
+ end
93
+ end
94
+
95
+ describe SpecHelper::EventedPage do
96
+ it 'should override the default http method with PUT' do
97
+ SpecHelper::EventedPage.http_method.should == :put
98
+ end
99
+
100
+ context '(instantiated)' do
101
+ before :all do
102
+ @page = SpecHelper::EventedPage.process(:bro_no => 1)
103
+ end
104
+
105
+ it 'should fire the included events' do
106
+ @page.before_request.should be_true
107
+ @page.after_request.should be_true
108
+ @page.before_parse.should be_true
109
+ @page.after_parse.should be_true
110
+ end
111
+ end
112
+ end
113
+
114
+ end
@@ -0,0 +1,5 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::RequestPrototype do
4
+
5
+ end
@@ -0,0 +1,41 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::Request do
4
+
5
+ context 'GetRequest' do
6
+ before :all do
7
+ pro = LCBO::CrawlKit::RequestPrototype.new('http://bros.local/bros/{bro_no}')
8
+ @request = LCBO::CrawlKit::Request.new(pro, :bro_no => 1)
9
+ end
10
+
11
+ it 'should perform a get request' do
12
+ @request.config[:method].should == :get
13
+ end
14
+
15
+ it 'should build a uri based on the query param input' do
16
+ @request.uri.should == 'http://bros.local/bros/1'
17
+ end
18
+
19
+ it 'should perform the request' do
20
+ @request.run.body.should == BRO_HTML
21
+ end
22
+ end
23
+
24
+ context 'PostRequest' do
25
+ before :all do
26
+ pro = LCBO::CrawlKit::RequestPrototype.new(
27
+ 'http://bros.local/search', :post,
28
+ { :q => '', :type => 'all' })
29
+ @request = LCBO::CrawlKit::Request.new(
30
+ pro, {}, { :q => 'test', :type => 'bro' })
31
+ end
32
+
33
+ it 'should build a uri appropriately' do
34
+ @request.uri.should == 'http://bros.local/search'
35
+ end
36
+
37
+ it 'should perform the request' do
38
+ @request.run.body.should == BRO_SEARCH_HTML
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,5 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::Response do
4
+
5
+ end
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ require 'spec_helper'
3
+
4
+ describe LCBO::CrawlKit::TitleCaseHelper do
5
+ @expectations = {
6
+ 'PURPLE DRANK' => 'Purple Drank',
7
+ 'BEST-WINE EVAR!' => 'Best-Wine Evar!',
8
+ 'MONDAVI TO-KALON FUMÉ BLANC' => 'Mondavi To-Kalon Fumé Blanc',
9
+ 'ÉVE PICARD' => 'Éve Picard',
10
+ 'R. PHILLIPS NIGHT HARVEST SHIRAZ' => 'R. Phillips Night Harvest Shiraz',
11
+ '02 OPUS ONE NAPA VALLEY C.V.B.G' => '02 Opus One Napa Valley C.V.B.G',
12
+ 'LONDON XXX' => 'London XXX',
13
+ 'SOME NICE VQA WINE' => 'Some Nice VQA Wine',
14
+ 'A PRODUCT NAME (WITH STUPID CRAP' => 'A Product Name',
15
+ 'A PRODUCT NAME (FROM FRANCE)' => 'A Product Name',
16
+ 'SOMEONE\'S PRODUCT' => 'Someone\'s Product' }
17
+
18
+ @expectations.each_pair do |input, expectation|
19
+ it "should convert: #{input.inspect} to: #{expectation.inspect}" do
20
+ LCBO::CrawlKit::TitleCaseHelper[input].should == expectation
21
+ end
22
+ end
23
+
24
+ it 'should translate lowercase characters to uppercase characters properly' do
25
+ upper = LCBO::CrawlKit::TitleCaseHelper::UPPER_CHARS
26
+ lower = LCBO::CrawlKit::TitleCaseHelper::LOWER_CHARS
27
+ LCBO::CrawlKit::TitleCaseHelper.upcase(lower).should == upper
28
+ end
29
+
30
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit::VolumeHelper do
4
+ @expectations = {
5
+ '10x500 mL bottles' => 5000,
6
+ '6x330 mL cans' => 1980,
7
+ '1500 mL bottle' => 1500,
8
+ 'null' => 0,
9
+ '' => 0,
10
+ ' ' => 0,
11
+ "\n" => 0,
12
+ 'case' => 0,
13
+ '6 parts' => 0,
14
+ nil => 0 }
15
+
16
+ @expectations.each_pair do |input, expectation|
17
+ it "should convert: #{input.inspect} to: #{expectation.inspect}" do
18
+ LCBO::CrawlKit::VolumeHelper[input].should == expectation
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,5 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO::CrawlKit do
4
+
5
+ end
data/spec/lcbo_spec.rb ADDED
@@ -0,0 +1,38 @@
1
+ require 'spec_helper'
2
+
3
+ describe LCBO do
4
+ context 'configuration' do
5
+ it 'should be a hash' do
6
+ LCBO.config.should be_a(Hash)
7
+ end
8
+
9
+ it 'should be configurable' do
10
+ LCBO.config[:user_agent] = 'Test'
11
+ LCBO.config[:user_agent].should == 'Test'
12
+ LCBO.reset_config!
13
+ LCBO.config[:user_agent].should be_nil
14
+ end
15
+ end
16
+
17
+ context 'helper methods' do
18
+ it 'provides LCBO.parse' do
19
+ LCBO.should respond_to(:parse)
20
+ end
21
+
22
+ it 'provides LCBO.product' do
23
+ LCBO.should respond_to(:product)
24
+ end
25
+
26
+ it 'provides LCBO.store' do
27
+ LCBO.should respond_to(:store)
28
+ end
29
+
30
+ it 'provides LCBO.inventory' do
31
+ LCBO.should respond_to(:inventory)
32
+ end
33
+
34
+ it 'provides LCBO.product_list' do
35
+ LCBO.should respond_to(:product_list)
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,1685 @@
1
+ - :file: 1.html
2
+ :desc: Product with inventories
3
+ :uri: http://www.lcbo.com/lcbo-ear/lcbo/product/inventory/searchResults.do?language=EN&itemNumber=18
4
+ :method: :get
5
+ :query_params:
6
+ :product_no: 18
7
+ :expectation:
8
+ :product_no: 18
9
+ :inventory_count: 58866
10
+ :inventories:
11
+ - :updated_on: "2010-07-21"
12
+ :store_no: 444
13
+ :quantity: 1303
14
+ - :updated_on: "2010-07-21"
15
+ :store_no: 355
16
+ :quantity: 1146
17
+ - :updated_on: "2010-07-21"
18
+ :store_no: 228
19
+ :quantity: 1139
20
+ - :updated_on: "2010-07-21"
21
+ :store_no: 329
22
+ :quantity: 1138
23
+ - :updated_on: "2010-07-21"
24
+ :store_no: 171
25
+ :quantity: 1106
26
+ - :updated_on: "2010-07-21"
27
+ :store_no: 226
28
+ :quantity: 1022
29
+ - :updated_on: "2010-07-21"
30
+ :store_no: 6
31
+ :quantity: 842
32
+ - :updated_on: "2010-07-21"
33
+ :store_no: 416
34
+ :quantity: 803
35
+ - :updated_on: "2010-07-21"
36
+ :store_no: 555
37
+ :quantity: 768
38
+ - :updated_on: "2010-07-20"
39
+ :store_no: 458
40
+ :quantity: 763
41
+ - :updated_on: "2010-07-21"
42
+ :store_no: 408
43
+ :quantity: 731
44
+ - :updated_on: "2010-07-21"
45
+ :store_no: 590
46
+ :quantity: 731
47
+ - :updated_on: "2010-07-21"
48
+ :store_no: 164
49
+ :quantity: 604
50
+ - :updated_on: "2010-07-21"
51
+ :store_no: 383
52
+ :quantity: 603
53
+ - :updated_on: "2010-07-21"
54
+ :store_no: 1
55
+ :quantity: 596
56
+ - :updated_on: "2010-07-21"
57
+ :store_no: 19
58
+ :quantity: 596
59
+ - :updated_on: "2010-07-21"
60
+ :store_no: 523
61
+ :quantity: 569
62
+ - :updated_on: "2010-07-21"
63
+ :store_no: 436
64
+ :quantity: 564
65
+ - :updated_on: "2010-07-21"
66
+ :store_no: 182
67
+ :quantity: 562
68
+ - :updated_on: "2010-07-21"
69
+ :store_no: 703
70
+ :quantity: 558
71
+ - :updated_on: "2010-07-21"
72
+ :store_no: 346
73
+ :quantity: 529
74
+ - :updated_on: "2010-07-21"
75
+ :store_no: 183
76
+ :quantity: 519
77
+ - :updated_on: "2010-07-21"
78
+ :store_no: 360
79
+ :quantity: 493
80
+ - :updated_on: "2010-07-21"
81
+ :store_no: 3
82
+ :quantity: 489
83
+ - :updated_on: "2010-07-21"
84
+ :store_no: 553
85
+ :quantity: 475
86
+ - :updated_on: "2010-07-21"
87
+ :store_no: 445
88
+ :quantity: 455
89
+ - :updated_on: "2010-07-21"
90
+ :store_no: 632
91
+ :quantity: 448
92
+ - :updated_on: "2010-07-21"
93
+ :store_no: 5
94
+ :quantity: 444
95
+ - :updated_on: "2010-07-21"
96
+ :store_no: 334
97
+ :quantity: 435
98
+ - :updated_on: "2010-07-21"
99
+ :store_no: 470
100
+ :quantity: 430
101
+ - :updated_on: "2010-07-21"
102
+ :store_no: 362
103
+ :quantity: 428
104
+ - :updated_on: "2010-07-21"
105
+ :store_no: 511
106
+ :quantity: 428
107
+ - :updated_on: "2010-07-21"
108
+ :store_no: 564
109
+ :quantity: 426
110
+ - :updated_on: "2010-07-21"
111
+ :store_no: 188
112
+ :quantity: 425
113
+ - :updated_on: "2010-07-21"
114
+ :store_no: 14
115
+ :quantity: 422
116
+ - :updated_on: "2010-07-21"
117
+ :store_no: 572
118
+ :quantity: 417
119
+ - :updated_on: "2010-07-21"
120
+ :store_no: 217
121
+ :quantity: 414
122
+ - :updated_on: "2010-07-21"
123
+ :store_no: 12
124
+ :quantity: 413
125
+ - :updated_on: "2010-07-21"
126
+ :store_no: 533
127
+ :quantity: 411
128
+ - :updated_on: "2010-07-21"
129
+ :store_no: 140
130
+ :quantity: 401
131
+ - :updated_on: "2010-07-21"
132
+ :store_no: 218
133
+ :quantity: 394
134
+ - :updated_on: "2010-07-21"
135
+ :store_no: 269
136
+ :quantity: 389
137
+ - :updated_on: "2010-07-21"
138
+ :store_no: 542
139
+ :quantity: 388
140
+ - :updated_on: "2010-07-21"
141
+ :store_no: 485
142
+ :quantity: 383
143
+ - :updated_on: "2010-07-21"
144
+ :store_no: 11
145
+ :quantity: 378
146
+ - :updated_on: "2010-07-21"
147
+ :store_no: 356
148
+ :quantity: 374
149
+ - :updated_on: "2010-07-21"
150
+ :store_no: 771
151
+ :quantity: 371
152
+ - :updated_on: "2010-07-21"
153
+ :store_no: 398
154
+ :quantity: 362
155
+ - :updated_on: "2010-07-21"
156
+ :store_no: 618
157
+ :quantity: 358
158
+ - :updated_on: "2010-07-21"
159
+ :store_no: 536
160
+ :quantity: 357
161
+ - :updated_on: "2010-07-21"
162
+ :store_no: 601
163
+ :quantity: 356
164
+ - :updated_on: "2010-07-21"
165
+ :store_no: 534
166
+ :quantity: 354
167
+ - :updated_on: "2010-07-21"
168
+ :store_no: 20
169
+ :quantity: 351
170
+ - :updated_on: "2010-07-21"
171
+ :store_no: 698
172
+ :quantity: 350
173
+ - :updated_on: "2010-07-21"
174
+ :store_no: 452
175
+ :quantity: 348
176
+ - :updated_on: "2010-07-21"
177
+ :store_no: 185
178
+ :quantity: 340
179
+ - :updated_on: "2010-07-21"
180
+ :store_no: 619
181
+ :quantity: 338
182
+ - :updated_on: "2010-07-21"
183
+ :store_no: 525
184
+ :quantity: 314
185
+ - :updated_on: "2010-07-21"
186
+ :store_no: 629
187
+ :quantity: 308
188
+ - :updated_on: "2010-07-21"
189
+ :store_no: 321
190
+ :quantity: 301
191
+ - :updated_on: "2010-07-21"
192
+ :store_no: 434
193
+ :quantity: 291
194
+ - :updated_on: "2010-07-21"
195
+ :store_no: 630
196
+ :quantity: 285
197
+ - :updated_on: "2010-07-21"
198
+ :store_no: 426
199
+ :quantity: 282
200
+ - :updated_on: "2010-07-21"
201
+ :store_no: 545
202
+ :quantity: 281
203
+ - :updated_on: "2010-07-21"
204
+ :store_no: 198
205
+ :quantity: 270
206
+ - :updated_on: "2010-07-21"
207
+ :store_no: 115
208
+ :quantity: 266
209
+ - :updated_on: "2010-07-21"
210
+ :store_no: 486
211
+ :quantity: 261
212
+ - :updated_on: "2010-07-21"
213
+ :store_no: 21
214
+ :quantity: 255
215
+ - :updated_on: "2010-07-21"
216
+ :store_no: 200
217
+ :quantity: 254
218
+ - :updated_on: "2010-07-21"
219
+ :store_no: 15
220
+ :quantity: 253
221
+ - :updated_on: "2010-07-21"
222
+ :store_no: 499
223
+ :quantity: 247
224
+ - :updated_on: "2010-07-21"
225
+ :store_no: 568
226
+ :quantity: 232
227
+ - :updated_on: "2010-07-21"
228
+ :store_no: 428
229
+ :quantity: 224
230
+ - :updated_on: "2010-07-21"
231
+ :store_no: 9
232
+ :quantity: 221
233
+ - :updated_on: "2010-07-21"
234
+ :store_no: 163
235
+ :quantity: 216
236
+ - :updated_on: "2010-07-21"
237
+ :store_no: 617
238
+ :quantity: 209
239
+ - :updated_on: "2010-07-21"
240
+ :store_no: 10
241
+ :quantity: 199
242
+ - :updated_on: "2010-07-21"
243
+ :store_no: 390
244
+ :quantity: 197
245
+ - :updated_on: "2010-07-21"
246
+ :store_no: 584
247
+ :quantity: 197
248
+ - :updated_on: "2010-07-21"
249
+ :store_no: 65
250
+ :quantity: 192
251
+ - :updated_on: "2010-07-21"
252
+ :store_no: 546
253
+ :quantity: 189
254
+ - :updated_on: "2010-07-21"
255
+ :store_no: 776
256
+ :quantity: 187
257
+ - :updated_on: "2010-07-21"
258
+ :store_no: 326
259
+ :quantity: 185
260
+ - :updated_on: "2010-07-21"
261
+ :store_no: 149
262
+ :quantity: 184
263
+ - :updated_on: "2010-07-21"
264
+ :store_no: 279
265
+ :quantity: 183
266
+ - :updated_on: "2010-07-21"
267
+ :store_no: 18
268
+ :quantity: 182
269
+ - :updated_on: "2010-07-21"
270
+ :store_no: 361
271
+ :quantity: 181
272
+ - :updated_on: "2010-07-21"
273
+ :store_no: 265
274
+ :quantity: 179
275
+ - :updated_on: "2010-07-21"
276
+ :store_no: 631
277
+ :quantity: 178
278
+ - :updated_on: "2010-07-21"
279
+ :store_no: 253
280
+ :quantity: 177
281
+ - :updated_on: "2010-07-21"
282
+ :store_no: 187
283
+ :quantity: 174
284
+ - :updated_on: "2010-07-21"
285
+ :store_no: 212
286
+ :quantity: 173
287
+ - :updated_on: "2010-07-21"
288
+ :store_no: 8
289
+ :quantity: 172
290
+ - :updated_on: "2010-07-21"
291
+ :store_no: 191
292
+ :quantity: 171
293
+ - :updated_on: "2010-07-21"
294
+ :store_no: 415
295
+ :quantity: 171
296
+ - :updated_on: "2010-07-21"
297
+ :store_no: 505
298
+ :quantity: 167
299
+ - :updated_on: "2010-07-21"
300
+ :store_no: 623
301
+ :quantity: 167
302
+ - :updated_on: "2010-07-21"
303
+ :store_no: 494
304
+ :quantity: 163
305
+ - :updated_on: "2010-07-21"
306
+ :store_no: 443
307
+ :quantity: 161
308
+ - :updated_on: "2010-07-21"
309
+ :store_no: 587
310
+ :quantity: 158
311
+ - :updated_on: "2010-07-21"
312
+ :store_no: 73
313
+ :quantity: 156
314
+ - :updated_on: "2010-07-21"
315
+ :store_no: 495
316
+ :quantity: 152
317
+ - :updated_on: "2010-07-21"
318
+ :store_no: 148
319
+ :quantity: 151
320
+ - :updated_on: "2010-07-21"
321
+ :store_no: 404
322
+ :quantity: 151
323
+ - :updated_on: "2010-07-21"
324
+ :store_no: 378
325
+ :quantity: 148
326
+ - :updated_on: "2010-07-21"
327
+ :store_no: 25
328
+ :quantity: 147
329
+ - :updated_on: "2010-07-21"
330
+ :store_no: 624
331
+ :quantity: 146
332
+ - :updated_on: "2010-07-21"
333
+ :store_no: 242
334
+ :quantity: 145
335
+ - :updated_on: "2010-07-21"
336
+ :store_no: 481
337
+ :quantity: 145
338
+ - :updated_on: "2010-07-21"
339
+ :store_no: 34
340
+ :quantity: 141
341
+ - :updated_on: "2010-07-21"
342
+ :store_no: 243
343
+ :quantity: 140
344
+ - :updated_on: "2010-07-21"
345
+ :store_no: 573
346
+ :quantity: 140
347
+ - :updated_on: "2010-07-21"
348
+ :store_no: 22
349
+ :quantity: 139
350
+ - :updated_on: "2010-07-21"
351
+ :store_no: 95
352
+ :quantity: 137
353
+ - :updated_on: "2010-07-21"
354
+ :store_no: 27
355
+ :quantity: 136
356
+ - :updated_on: "2010-07-21"
357
+ :store_no: 411
358
+ :quantity: 135
359
+ - :updated_on: "2010-07-21"
360
+ :store_no: 154
361
+ :quantity: 134
362
+ - :updated_on: "2010-07-21"
363
+ :store_no: 179
364
+ :quantity: 134
365
+ - :updated_on: "2010-07-21"
366
+ :store_no: 214
367
+ :quantity: 134
368
+ - :updated_on: "2010-07-21"
369
+ :store_no: 263
370
+ :quantity: 134
371
+ - :updated_on: "2010-07-21"
372
+ :store_no: 2
373
+ :quantity: 132
374
+ - :updated_on: "2010-07-21"
375
+ :store_no: 252
376
+ :quantity: 132
377
+ - :updated_on: "2010-07-21"
378
+ :store_no: 384
379
+ :quantity: 132
380
+ - :updated_on: "2010-07-21"
381
+ :store_no: 84
382
+ :quantity: 130
383
+ - :updated_on: "2010-07-21"
384
+ :store_no: 432
385
+ :quantity: 129
386
+ - :updated_on: "2010-07-21"
387
+ :store_no: 324
388
+ :quantity: 126
389
+ - :updated_on: "2010-07-21"
390
+ :store_no: 325
391
+ :quantity: 125
392
+ - :updated_on: "2010-07-21"
393
+ :store_no: 371
394
+ :quantity: 125
395
+ - :updated_on: "2010-07-21"
396
+ :store_no: 31
397
+ :quantity: 124
398
+ - :updated_on: "2010-07-21"
399
+ :store_no: 167
400
+ :quantity: 122
401
+ - :updated_on: "2010-07-21"
402
+ :store_no: 38
403
+ :quantity: 120
404
+ - :updated_on: "2010-07-21"
405
+ :store_no: 186
406
+ :quantity: 120
407
+ - :updated_on: "2010-07-21"
408
+ :store_no: 344
409
+ :quantity: 117
410
+ - :updated_on: "2010-07-21"
411
+ :store_no: 248
412
+ :quantity: 115
413
+ - :updated_on: "2010-07-21"
414
+ :store_no: 437
415
+ :quantity: 115
416
+ - :updated_on: "2010-07-21"
417
+ :store_no: 366
418
+ :quantity: 114
419
+ - :updated_on: "2010-07-21"
420
+ :store_no: 4
421
+ :quantity: 113
422
+ - :updated_on: "2010-07-21"
423
+ :store_no: 412
424
+ :quantity: 113
425
+ - :updated_on: "2010-07-21"
426
+ :store_no: 64
427
+ :quantity: 112
428
+ - :updated_on: "2010-07-21"
429
+ :store_no: 425
430
+ :quantity: 111
431
+ - :updated_on: "2010-07-21"
432
+ :store_no: 288
433
+ :quantity: 109
434
+ - :updated_on: "2010-07-21"
435
+ :store_no: 438
436
+ :quantity: 108
437
+ - :updated_on: "2010-07-21"
438
+ :store_no: 636
439
+ :quantity: 106
440
+ - :updated_on: "2010-07-21"
441
+ :store_no: 209
442
+ :quantity: 104
443
+ - :updated_on: "2010-07-21"
444
+ :store_no: 359
445
+ :quantity: 104
446
+ - :updated_on: "2010-07-21"
447
+ :store_no: 465
448
+ :quantity: 104
449
+ - :updated_on: "2010-07-21"
450
+ :store_no: 417
451
+ :quantity: 101
452
+ - :updated_on: "2010-07-21"
453
+ :store_no: 40
454
+ :quantity: 100
455
+ - :updated_on: "2010-07-21"
456
+ :store_no: 57
457
+ :quantity: 99
458
+ - :updated_on: "2010-07-21"
459
+ :store_no: 549
460
+ :quantity: 99
461
+ - :updated_on: "2010-07-21"
462
+ :store_no: 233
463
+ :quantity: 97
464
+ - :updated_on: "2010-07-21"
465
+ :store_no: 237
466
+ :quantity: 96
467
+ - :updated_on: "2010-07-21"
468
+ :store_no: 559
469
+ :quantity: 96
470
+ - :updated_on: "2010-07-21"
471
+ :store_no: 207
472
+ :quantity: 95
473
+ - :updated_on: "2010-07-21"
474
+ :store_no: 143
475
+ :quantity: 94
476
+ - :updated_on: "2010-07-21"
477
+ :store_no: 152
478
+ :quantity: 94
479
+ - :updated_on: "2010-07-21"
480
+ :store_no: 373
481
+ :quantity: 94
482
+ - :updated_on: "2010-07-21"
483
+ :store_no: 407
484
+ :quantity: 94
485
+ - :updated_on: "2010-07-21"
486
+ :store_no: 556
487
+ :quantity: 93
488
+ - :updated_on: "2010-07-21"
489
+ :store_no: 700
490
+ :quantity: 92
491
+ - :updated_on: "2010-07-21"
492
+ :store_no: 106
493
+ :quantity: 90
494
+ - :updated_on: "2010-07-21"
495
+ :store_no: 515
496
+ :quantity: 89
497
+ - :updated_on: "2010-07-21"
498
+ :store_no: 313
499
+ :quantity: 88
500
+ - :updated_on: "2010-07-21"
501
+ :store_no: 385
502
+ :quantity: 88
503
+ - :updated_on: "2010-07-21"
504
+ :store_no: 431
505
+ :quantity: 87
506
+ - :updated_on: "2010-07-21"
507
+ :store_no: 62
508
+ :quantity: 86
509
+ - :updated_on: "2010-07-21"
510
+ :store_no: 586
511
+ :quantity: 86
512
+ - :updated_on: "2010-07-21"
513
+ :store_no: 36
514
+ :quantity: 85
515
+ - :updated_on: "2010-07-21"
516
+ :store_no: 528
517
+ :quantity: 85
518
+ - :updated_on: "2010-07-21"
519
+ :store_no: 287
520
+ :quantity: 84
521
+ - :updated_on: "2010-07-21"
522
+ :store_no: 589
523
+ :quantity: 84
524
+ - :updated_on: "2010-07-21"
525
+ :store_no: 382
526
+ :quantity: 83
527
+ - :updated_on: "2010-07-21"
528
+ :store_no: 575
529
+ :quantity: 83
530
+ - :updated_on: "2010-07-21"
531
+ :store_no: 386
532
+ :quantity: 82
533
+ - :updated_on: "2010-07-21"
534
+ :store_no: 387
535
+ :quantity: 82
536
+ - :updated_on: "2010-07-21"
537
+ :store_no: 532
538
+ :quantity: 82
539
+ - :updated_on: "2010-07-21"
540
+ :store_no: 602
541
+ :quantity: 82
542
+ - :updated_on: "2010-07-21"
543
+ :store_no: 44
544
+ :quantity: 81
545
+ - :updated_on: "2010-07-21"
546
+ :store_no: 101
547
+ :quantity: 81
548
+ - :updated_on: "2010-07-21"
549
+ :store_no: 512
550
+ :quantity: 81
551
+ - :updated_on: "2010-07-21"
552
+ :store_no: 702
553
+ :quantity: 78
554
+ - :updated_on: "2010-07-21"
555
+ :store_no: 249
556
+ :quantity: 77
557
+ - :updated_on: "2010-07-21"
558
+ :store_no: 255
559
+ :quantity: 77
560
+ - :updated_on: "2010-07-21"
561
+ :store_no: 156
562
+ :quantity: 76
563
+ - :updated_on: "2010-07-21"
564
+ :store_no: 420
565
+ :quantity: 76
566
+ - :updated_on: "2010-07-21"
567
+ :store_no: 13
568
+ :quantity: 75
569
+ - :updated_on: "2010-07-20"
570
+ :store_no: 145
571
+ :quantity: 75
572
+ - :updated_on: "2010-07-21"
573
+ :store_no: 389
574
+ :quantity: 75
575
+ - :updated_on: "2010-07-21"
576
+ :store_no: 393
577
+ :quantity: 75
578
+ - :updated_on: "2010-07-21"
579
+ :store_no: 457
580
+ :quantity: 75
581
+ - :updated_on: "2010-07-21"
582
+ :store_no: 323
583
+ :quantity: 72
584
+ - :updated_on: "2010-07-21"
585
+ :store_no: 742
586
+ :quantity: 71
587
+ - :updated_on: "2010-07-21"
588
+ :store_no: 35
589
+ :quantity: 70
590
+ - :updated_on: "2010-07-21"
591
+ :store_no: 130
592
+ :quantity: 70
593
+ - :updated_on: "2010-07-21"
594
+ :store_no: 132
595
+ :quantity: 70
596
+ - :updated_on: "2010-07-21"
597
+ :store_no: 459
598
+ :quantity: 68
599
+ - :updated_on: "2010-07-21"
600
+ :store_no: 37
601
+ :quantity: 67
602
+ - :updated_on: "2010-07-21"
603
+ :store_no: 227
604
+ :quantity: 67
605
+ - :updated_on: "2010-07-21"
606
+ :store_no: 367
607
+ :quantity: 67
608
+ - :updated_on: "2010-07-21"
609
+ :store_no: 250
610
+ :quantity: 66
611
+ - :updated_on: "2010-07-21"
612
+ :store_no: 598
613
+ :quantity: 66
614
+ - :updated_on: "2010-07-21"
615
+ :store_no: 192
616
+ :quantity: 65
617
+ - :updated_on: "2010-07-21"
618
+ :store_no: 394
619
+ :quantity: 65
620
+ - :updated_on: "2010-07-21"
621
+ :store_no: 563
622
+ :quantity: 65
623
+ - :updated_on: "2010-07-21"
624
+ :store_no: 23
625
+ :quantity: 64
626
+ - :updated_on: "2010-07-21"
627
+ :store_no: 55
628
+ :quantity: 64
629
+ - :updated_on: "2010-07-21"
630
+ :store_no: 251
631
+ :quantity: 64
632
+ - :updated_on: "2010-07-21"
633
+ :store_no: 497
634
+ :quantity: 64
635
+ - :updated_on: "2010-07-21"
636
+ :store_no: 340
637
+ :quantity: 63
638
+ - :updated_on: "2010-07-21"
639
+ :store_no: 354
640
+ :quantity: 62
641
+ - :updated_on: "2010-07-21"
642
+ :store_no: 544
643
+ :quantity: 62
644
+ - :updated_on: "2010-07-21"
645
+ :store_no: 561
646
+ :quantity: 62
647
+ - :updated_on: "2010-07-20"
648
+ :store_no: 388
649
+ :quantity: 61
650
+ - :updated_on: "2010-07-21"
651
+ :store_no: 175
652
+ :quantity: 60
653
+ - :updated_on: "2010-07-21"
654
+ :store_no: 301
655
+ :quantity: 60
656
+ - :updated_on: "2010-07-21"
657
+ :store_no: 345
658
+ :quantity: 60
659
+ - :updated_on: "2010-07-21"
660
+ :store_no: 333
661
+ :quantity: 59
662
+ - :updated_on: "2010-07-21"
663
+ :store_no: 195
664
+ :quantity: 58
665
+ - :updated_on: "2010-07-21"
666
+ :store_no: 298
667
+ :quantity: 58
668
+ - :updated_on: "2010-07-20"
669
+ :store_no: 521
670
+ :quantity: 58
671
+ - :updated_on: "2010-07-21"
672
+ :store_no: 593
673
+ :quantity: 58
674
+ - :updated_on: "2010-07-21"
675
+ :store_no: 400
676
+ :quantity: 56
677
+ - :updated_on: "2010-07-21"
678
+ :store_no: 599
679
+ :quantity: 56
680
+ - :updated_on: "2010-07-21"
681
+ :store_no: 540
682
+ :quantity: 55
683
+ - :updated_on: "2010-07-21"
684
+ :store_no: 16
685
+ :quantity: 54
686
+ - :updated_on: "2010-07-21"
687
+ :store_no: 311
688
+ :quantity: 53
689
+ - :updated_on: "2010-07-21"
690
+ :store_no: 456
691
+ :quantity: 53
692
+ - :updated_on: "2010-07-21"
693
+ :store_no: 582
694
+ :quantity: 53
695
+ - :updated_on: "2010-07-21"
696
+ :store_no: 60
697
+ :quantity: 52
698
+ - :updated_on: "2010-07-21"
699
+ :store_no: 201
700
+ :quantity: 52
701
+ - :updated_on: "2010-07-21"
702
+ :store_no: 203
703
+ :quantity: 52
704
+ - :updated_on: "2010-07-21"
705
+ :store_no: 59
706
+ :quantity: 51
707
+ - :updated_on: "2010-07-21"
708
+ :store_no: 446
709
+ :quantity: 50
710
+ - :updated_on: "2010-07-21"
711
+ :store_no: 467
712
+ :quantity: 50
713
+ - :updated_on: "2010-07-21"
714
+ :store_no: 566
715
+ :quantity: 50
716
+ - :updated_on: "2010-07-21"
717
+ :store_no: 616
718
+ :quantity: 50
719
+ - :updated_on: "2010-07-21"
720
+ :store_no: 365
721
+ :quantity: 49
722
+ - :updated_on: "2010-07-21"
723
+ :store_no: 194
724
+ :quantity: 48
725
+ - :updated_on: "2010-07-21"
726
+ :store_no: 453
727
+ :quantity: 48
728
+ - :updated_on: "2010-07-21"
729
+ :store_no: 168
730
+ :quantity: 47
731
+ - :updated_on: "2010-07-21"
732
+ :store_no: 335
733
+ :quantity: 46
734
+ - :updated_on: "2010-07-21"
735
+ :store_no: 697
736
+ :quantity: 46
737
+ - :updated_on: "2010-07-21"
738
+ :store_no: 594
739
+ :quantity: 46
740
+ - :updated_on: "2010-07-21"
741
+ :store_no: 297
742
+ :quantity: 45
743
+ - :updated_on: "2010-07-21"
744
+ :store_no: 569
745
+ :quantity: 45
746
+ - :updated_on: "2010-07-21"
747
+ :store_no: 278
748
+ :quantity: 44
749
+ - :updated_on: "2010-07-21"
750
+ :store_no: 222
751
+ :quantity: 44
752
+ - :updated_on: "2010-07-21"
753
+ :store_no: 295
754
+ :quantity: 44
755
+ - :updated_on: "2010-07-21"
756
+ :store_no: 312
757
+ :quantity: 44
758
+ - :updated_on: "2010-07-21"
759
+ :store_no: 613
760
+ :quantity: 44
761
+ - :updated_on: "2010-07-21"
762
+ :store_no: 83
763
+ :quantity: 43
764
+ - :updated_on: "2010-07-21"
765
+ :store_no: 221
766
+ :quantity: 43
767
+ - :updated_on: "2010-07-21"
768
+ :store_no: 579
769
+ :quantity: 43
770
+ - :updated_on: "2010-07-21"
771
+ :store_no: 82
772
+ :quantity: 42
773
+ - :updated_on: "2010-07-21"
774
+ :store_no: 522
775
+ :quantity: 42
776
+ - :updated_on: "2010-07-21"
777
+ :store_no: 310
778
+ :quantity: 41
779
+ - :updated_on: "2010-07-21"
780
+ :store_no: 320
781
+ :quantity: 41
782
+ - :updated_on: "2010-07-21"
783
+ :store_no: 461
784
+ :quantity: 41
785
+ - :updated_on: "2010-07-21"
786
+ :store_no: 472
787
+ :quantity: 41
788
+ - :updated_on: "2010-07-21"
789
+ :store_no: 50
790
+ :quantity: 39
791
+ - :updated_on: "2010-07-21"
792
+ :store_no: 93
793
+ :quantity: 39
794
+ - :updated_on: "2010-07-21"
795
+ :store_no: 97
796
+ :quantity: 39
797
+ - :updated_on: "2010-07-21"
798
+ :store_no: 381
799
+ :quantity: 39
800
+ - :updated_on: "2010-07-21"
801
+ :store_no: 547
802
+ :quantity: 39
803
+ - :updated_on: "2010-07-21"
804
+ :store_no: 153
805
+ :quantity: 38
806
+ - :updated_on: "2010-07-21"
807
+ :store_no: 165
808
+ :quantity: 38
809
+ - :updated_on: "2010-07-21"
810
+ :store_no: 229
811
+ :quantity: 38
812
+ - :updated_on: "2010-07-21"
813
+ :store_no: 234
814
+ :quantity: 38
815
+ - :updated_on: "2010-07-21"
816
+ :store_no: 403
817
+ :quantity: 38
818
+ - :updated_on: "2010-07-21"
819
+ :store_no: 80
820
+ :quantity: 37
821
+ - :updated_on: "2010-07-21"
822
+ :store_no: 268
823
+ :quantity: 37
824
+ - :updated_on: "2010-07-21"
825
+ :store_no: 318
826
+ :quantity: 37
827
+ - :updated_on: "2010-07-21"
828
+ :store_no: 347
829
+ :quantity: 37
830
+ - :updated_on: "2010-07-21"
831
+ :store_no: 74
832
+ :quantity: 36
833
+ - :updated_on: "2010-07-21"
834
+ :store_no: 88
835
+ :quantity: 36
836
+ - :updated_on: "2010-07-21"
837
+ :store_no: 205
838
+ :quantity: 36
839
+ - :updated_on: "2010-07-21"
840
+ :store_no: 409
841
+ :quantity: 36
842
+ - :updated_on: "2010-07-21"
843
+ :store_no: 135
844
+ :quantity: 35
845
+ - :updated_on: "2010-07-21"
846
+ :store_no: 406
847
+ :quantity: 35
848
+ - :updated_on: "2010-07-21"
849
+ :store_no: 449
850
+ :quantity: 35
851
+ - :updated_on: "2010-07-21"
852
+ :store_no: 24
853
+ :quantity: 34
854
+ - :updated_on: "2010-07-21"
855
+ :store_no: 395
856
+ :quantity: 34
857
+ - :updated_on: "2010-07-21"
858
+ :store_no: 401
859
+ :quantity: 34
860
+ - :updated_on: "2010-07-21"
861
+ :store_no: 32
862
+ :quantity: 33
863
+ - :updated_on: "2010-07-21"
864
+ :store_no: 210
865
+ :quantity: 33
866
+ - :updated_on: "2010-07-21"
867
+ :store_no: 261
868
+ :quantity: 33
869
+ - :updated_on: "2010-07-21"
870
+ :store_no: 380
871
+ :quantity: 33
872
+ - :updated_on: "2010-07-21"
873
+ :store_no: 454
874
+ :quantity: 33
875
+ - :updated_on: "2010-07-21"
876
+ :store_no: 502
877
+ :quantity: 33
878
+ - :updated_on: "2010-07-21"
879
+ :store_no: 508
880
+ :quantity: 33
881
+ - :updated_on: "2010-07-21"
882
+ :store_no: 26
883
+ :quantity: 32
884
+ - :updated_on: "2010-07-21"
885
+ :store_no: 45
886
+ :quantity: 32
887
+ - :updated_on: "2010-07-21"
888
+ :store_no: 351
889
+ :quantity: 32
890
+ - :updated_on: "2010-07-21"
891
+ :store_no: 94
892
+ :quantity: 31
893
+ - :updated_on: "2010-07-21"
894
+ :store_no: 162
895
+ :quantity: 31
896
+ - :updated_on: "2010-07-20"
897
+ :store_no: 520
898
+ :quantity: 31
899
+ - :updated_on: "2010-07-21"
900
+ :store_no: 539
901
+ :quantity: 31
902
+ - :updated_on: "2010-07-21"
903
+ :store_no: 277
904
+ :quantity: 30
905
+ - :updated_on: "2010-07-21"
906
+ :store_no: 43
907
+ :quantity: 29
908
+ - :updated_on: "2010-07-21"
909
+ :store_no: 244
910
+ :quantity: 29
911
+ - :updated_on: "2010-07-21"
912
+ :store_no: 423
913
+ :quantity: 29
914
+ - :updated_on: "2010-07-21"
915
+ :store_no: 58
916
+ :quantity: 28
917
+ - :updated_on: "2010-07-21"
918
+ :store_no: 113
919
+ :quantity: 28
920
+ - :updated_on: "2010-07-21"
921
+ :store_no: 116
922
+ :quantity: 28
923
+ - :updated_on: "2010-07-21"
924
+ :store_no: 124
925
+ :quantity: 28
926
+ - :updated_on: "2010-07-21"
927
+ :store_no: 159
928
+ :quantity: 28
929
+ - :updated_on: "2010-07-21"
930
+ :store_no: 419
931
+ :quantity: 28
932
+ - :updated_on: "2010-07-21"
933
+ :store_no: 474
934
+ :quantity: 28
935
+ - :updated_on: "2010-07-21"
936
+ :store_no: 571
937
+ :quantity: 28
938
+ - :updated_on: "2010-07-21"
939
+ :store_no: 588
940
+ :quantity: 28
941
+ - :updated_on: "2010-07-20"
942
+ :store_no: 48
943
+ :quantity: 27
944
+ - :updated_on: "2010-07-21"
945
+ :store_no: 54
946
+ :quantity: 27
947
+ - :updated_on: "2010-07-21"
948
+ :store_no: 77
949
+ :quantity: 27
950
+ - :updated_on: "2010-07-21"
951
+ :store_no: 123
952
+ :quantity: 27
953
+ - :updated_on: "2010-07-21"
954
+ :store_no: 61
955
+ :quantity: 26
956
+ - :updated_on: "2010-07-21"
957
+ :store_no: 155
958
+ :quantity: 26
959
+ - :updated_on: "2010-07-21"
960
+ :store_no: 196
961
+ :quantity: 26
962
+ - :updated_on: "2010-07-21"
963
+ :store_no: 300
964
+ :quantity: 26
965
+ - :updated_on: "2010-07-21"
966
+ :store_no: 468
967
+ :quantity: 26
968
+ - :updated_on: "2010-07-21"
969
+ :store_no: 612
970
+ :quantity: 26
971
+ - :updated_on: "2010-07-21"
972
+ :store_no: 99
973
+ :quantity: 25
974
+ - :updated_on: "2010-07-21"
975
+ :store_no: 219
976
+ :quantity: 25
977
+ - :updated_on: "2010-07-21"
978
+ :store_no: 257
979
+ :quantity: 25
980
+ - :updated_on: "2010-07-21"
981
+ :store_no: 430
982
+ :quantity: 25
983
+ - :updated_on: "2010-07-21"
984
+ :store_no: 442
985
+ :quantity: 25
986
+ - :updated_on: "2010-07-21"
987
+ :store_no: 483
988
+ :quantity: 25
989
+ - :updated_on: "2010-07-21"
990
+ :store_no: 527
991
+ :quantity: 25
992
+ - :updated_on: "2010-07-21"
993
+ :store_no: 626
994
+ :quantity: 25
995
+ - :updated_on: "2010-07-21"
996
+ :store_no: 108
997
+ :quantity: 24
998
+ - :updated_on: "2010-07-21"
999
+ :store_no: 128
1000
+ :quantity: 24
1001
+ - :updated_on: "2010-07-21"
1002
+ :store_no: 190
1003
+ :quantity: 24
1004
+ - :updated_on: "2010-07-21"
1005
+ :store_no: 349
1006
+ :quantity: 24
1007
+ - :updated_on: "2010-07-21"
1008
+ :store_no: 402
1009
+ :quantity: 24
1010
+ - :updated_on: "2010-07-21"
1011
+ :store_no: 482
1012
+ :quantity: 24
1013
+ - :updated_on: "2010-07-21"
1014
+ :store_no: 558
1015
+ :quantity: 24
1016
+ - :updated_on: "2010-07-21"
1017
+ :store_no: 85
1018
+ :quantity: 23
1019
+ - :updated_on: "2010-07-21"
1020
+ :store_no: 136
1021
+ :quantity: 23
1022
+ - :updated_on: "2010-07-21"
1023
+ :store_no: 343
1024
+ :quantity: 23
1025
+ - :updated_on: "2010-07-21"
1026
+ :store_no: 427
1027
+ :quantity: 23
1028
+ - :updated_on: "2010-07-21"
1029
+ :store_no: 90
1030
+ :quantity: 22
1031
+ - :updated_on: "2010-07-21"
1032
+ :store_no: 110
1033
+ :quantity: 22
1034
+ - :updated_on: "2010-07-21"
1035
+ :store_no: 267
1036
+ :quantity: 22
1037
+ - :updated_on: "2010-07-21"
1038
+ :store_no: 216
1039
+ :quantity: 22
1040
+ - :updated_on: "2010-07-21"
1041
+ :store_no: 266
1042
+ :quantity: 22
1043
+ - :updated_on: "2010-07-21"
1044
+ :store_no: 462
1045
+ :quantity: 22
1046
+ - :updated_on: "2010-07-21"
1047
+ :store_no: 513
1048
+ :quantity: 22
1049
+ - :updated_on: "2010-07-21"
1050
+ :store_no: 47
1051
+ :quantity: 21
1052
+ - :updated_on: "2010-07-21"
1053
+ :store_no: 79
1054
+ :quantity: 21
1055
+ - :updated_on: "2010-07-21"
1056
+ :store_no: 98
1057
+ :quantity: 21
1058
+ - :updated_on: "2010-07-21"
1059
+ :store_no: 126
1060
+ :quantity: 21
1061
+ - :updated_on: "2010-07-21"
1062
+ :store_no: 260
1063
+ :quantity: 21
1064
+ - :updated_on: "2010-07-21"
1065
+ :store_no: 276
1066
+ :quantity: 21
1067
+ - :updated_on: "2010-07-21"
1068
+ :store_no: 306
1069
+ :quantity: 21
1070
+ - :updated_on: "2010-07-21"
1071
+ :store_no: 490
1072
+ :quantity: 21
1073
+ - :updated_on: "2010-07-21"
1074
+ :store_no: 557
1075
+ :quantity: 21
1076
+ - :updated_on: "2010-07-21"
1077
+ :store_no: 39
1078
+ :quantity: 20
1079
+ - :updated_on: "2010-07-21"
1080
+ :store_no: 81
1081
+ :quantity: 20
1082
+ - :updated_on: "2010-07-21"
1083
+ :store_no: 105
1084
+ :quantity: 20
1085
+ - :updated_on: "2010-07-21"
1086
+ :store_no: 119
1087
+ :quantity: 20
1088
+ - :updated_on: "2010-07-21"
1089
+ :store_no: 169
1090
+ :quantity: 20
1091
+ - :updated_on: "2010-07-21"
1092
+ :store_no: 231
1093
+ :quantity: 20
1094
+ - :updated_on: "2010-07-21"
1095
+ :store_no: 283
1096
+ :quantity: 20
1097
+ - :updated_on: "2010-07-21"
1098
+ :store_no: 352
1099
+ :quantity: 20
1100
+ - :updated_on: "2010-07-21"
1101
+ :store_no: 363
1102
+ :quantity: 20
1103
+ - :updated_on: "2010-07-21"
1104
+ :store_no: 560
1105
+ :quantity: 20
1106
+ - :updated_on: "2010-07-21"
1107
+ :store_no: 69
1108
+ :quantity: 19
1109
+ - :updated_on: "2010-07-21"
1110
+ :store_no: 264
1111
+ :quantity: 19
1112
+ - :updated_on: "2010-07-21"
1113
+ :store_no: 286
1114
+ :quantity: 19
1115
+ - :updated_on: "2010-07-21"
1116
+ :store_no: 418
1117
+ :quantity: 19
1118
+ - :updated_on: "2010-07-21"
1119
+ :store_no: 501
1120
+ :quantity: 19
1121
+ - :updated_on: "2010-07-21"
1122
+ :store_no: 548
1123
+ :quantity: 19
1124
+ - :updated_on: "2010-07-21"
1125
+ :store_no: 567
1126
+ :quantity: 19
1127
+ - :updated_on: "2010-07-21"
1128
+ :store_no: 605
1129
+ :quantity: 19
1130
+ - :updated_on: "2010-07-21"
1131
+ :store_no: 29
1132
+ :quantity: 18
1133
+ - :updated_on: "2010-07-21"
1134
+ :store_no: 72
1135
+ :quantity: 18
1136
+ - :updated_on: "2010-07-21"
1137
+ :store_no: 109
1138
+ :quantity: 18
1139
+ - :updated_on: "2010-07-21"
1140
+ :store_no: 197
1141
+ :quantity: 18
1142
+ - :updated_on: "2010-07-21"
1143
+ :store_no: 232
1144
+ :quantity: 18
1145
+ - :updated_on: "2010-07-21"
1146
+ :store_no: 293
1147
+ :quantity: 18
1148
+ - :updated_on: "2010-07-21"
1149
+ :store_no: 294
1150
+ :quantity: 18
1151
+ - :updated_on: "2010-07-21"
1152
+ :store_no: 518
1153
+ :quantity: 18
1154
+ - :updated_on: "2010-07-21"
1155
+ :store_no: 543
1156
+ :quantity: 18
1157
+ - :updated_on: "2010-07-21"
1158
+ :store_no: 86
1159
+ :quantity: 17
1160
+ - :updated_on: "2010-07-21"
1161
+ :store_no: 181
1162
+ :quantity: 17
1163
+ - :updated_on: "2010-07-21"
1164
+ :store_no: 211
1165
+ :quantity: 17
1166
+ - :updated_on: "2010-07-21"
1167
+ :store_no: 240
1168
+ :quantity: 17
1169
+ - :updated_on: "2010-07-21"
1170
+ :store_no: 317
1171
+ :quantity: 17
1172
+ - :updated_on: "2010-07-21"
1173
+ :store_no: 370
1174
+ :quantity: 17
1175
+ - :updated_on: "2010-07-21"
1176
+ :store_no: 348
1177
+ :quantity: 17
1178
+ - :updated_on: "2010-07-21"
1179
+ :store_no: 538
1180
+ :quantity: 17
1181
+ - :updated_on: "2010-07-21"
1182
+ :store_no: 28
1183
+ :quantity: 16
1184
+ - :updated_on: "2010-07-21"
1185
+ :store_no: 56
1186
+ :quantity: 16
1187
+ - :updated_on: "2010-07-21"
1188
+ :store_no: 68
1189
+ :quantity: 16
1190
+ - :updated_on: "2010-07-21"
1191
+ :store_no: 125
1192
+ :quantity: 16
1193
+ - :updated_on: "2010-07-21"
1194
+ :store_no: 270
1195
+ :quantity: 16
1196
+ - :updated_on: "2010-07-21"
1197
+ :store_no: 372
1198
+ :quantity: 16
1199
+ - :updated_on: "2010-07-21"
1200
+ :store_no: 504
1201
+ :quantity: 16
1202
+ - :updated_on: "2010-07-21"
1203
+ :store_no: 595
1204
+ :quantity: 16
1205
+ - :updated_on: "2010-07-21"
1206
+ :store_no: 144
1207
+ :quantity: 15
1208
+ - :updated_on: "2010-07-21"
1209
+ :store_no: 166
1210
+ :quantity: 15
1211
+ - :updated_on: "2010-07-21"
1212
+ :store_no: 235
1213
+ :quantity: 15
1214
+ - :updated_on: "2010-07-21"
1215
+ :store_no: 327
1216
+ :quantity: 15
1217
+ - :updated_on: "2010-07-21"
1218
+ :store_no: 392
1219
+ :quantity: 15
1220
+ - :updated_on: "2010-07-21"
1221
+ :store_no: 529
1222
+ :quantity: 15
1223
+ - :updated_on: "2010-07-21"
1224
+ :store_no: 146
1225
+ :quantity: 14
1226
+ - :updated_on: "2010-07-21"
1227
+ :store_no: 160
1228
+ :quantity: 14
1229
+ - :updated_on: "2010-07-21"
1230
+ :store_no: 173
1231
+ :quantity: 14
1232
+ - :updated_on: "2010-07-21"
1233
+ :store_no: 224
1234
+ :quantity: 14
1235
+ - :updated_on: "2010-07-21"
1236
+ :store_no: 421
1237
+ :quantity: 14
1238
+ - :updated_on: "2010-07-21"
1239
+ :store_no: 435
1240
+ :quantity: 14
1241
+ - :updated_on: "2010-07-21"
1242
+ :store_no: 478
1243
+ :quantity: 14
1244
+ - :updated_on: "2010-07-21"
1245
+ :store_no: 479
1246
+ :quantity: 14
1247
+ - :updated_on: "2010-07-21"
1248
+ :store_no: 562
1249
+ :quantity: 14
1250
+ - :updated_on: "2010-07-21"
1251
+ :store_no: 49
1252
+ :quantity: 13
1253
+ - :updated_on: "2010-07-21"
1254
+ :store_no: 53
1255
+ :quantity: 13
1256
+ - :updated_on: "2010-07-21"
1257
+ :store_no: 111
1258
+ :quantity: 13
1259
+ - :updated_on: "2010-07-21"
1260
+ :store_no: 139
1261
+ :quantity: 13
1262
+ - :updated_on: "2010-07-21"
1263
+ :store_no: 259
1264
+ :quantity: 13
1265
+ - :updated_on: "2010-07-21"
1266
+ :store_no: 353
1267
+ :quantity: 13
1268
+ - :updated_on: "2010-07-21"
1269
+ :store_no: 455
1270
+ :quantity: 13
1271
+ - :updated_on: "2010-07-21"
1272
+ :store_no: 52
1273
+ :quantity: 12
1274
+ - :updated_on: "2010-07-21"
1275
+ :store_no: 71
1276
+ :quantity: 12
1277
+ - :updated_on: "2010-07-21"
1278
+ :store_no: 78
1279
+ :quantity: 12
1280
+ - :updated_on: "2010-07-21"
1281
+ :store_no: 92
1282
+ :quantity: 12
1283
+ - :updated_on: "2010-07-21"
1284
+ :store_no: 122
1285
+ :quantity: 12
1286
+ - :updated_on: "2010-07-21"
1287
+ :store_no: 127
1288
+ :quantity: 12
1289
+ - :updated_on: "2010-07-21"
1290
+ :store_no: 161
1291
+ :quantity: 12
1292
+ - :updated_on: "2010-07-21"
1293
+ :store_no: 202
1294
+ :quantity: 12
1295
+ - :updated_on: "2010-07-20"
1296
+ :store_no: 225
1297
+ :quantity: 12
1298
+ - :updated_on: "2010-07-21"
1299
+ :store_no: 236
1300
+ :quantity: 12
1301
+ - :updated_on: "2010-07-21"
1302
+ :store_no: 238
1303
+ :quantity: 12
1304
+ - :updated_on: "2010-07-21"
1305
+ :store_no: 247
1306
+ :quantity: 12
1307
+ - :updated_on: "2010-07-21"
1308
+ :store_no: 299
1309
+ :quantity: 12
1310
+ - :updated_on: "2010-07-21"
1311
+ :store_no: 328
1312
+ :quantity: 12
1313
+ - :updated_on: "2010-07-21"
1314
+ :store_no: 339
1315
+ :quantity: 12
1316
+ - :updated_on: "2010-07-21"
1317
+ :store_no: 429
1318
+ :quantity: 12
1319
+ - :updated_on: "2010-07-21"
1320
+ :store_no: 439
1321
+ :quantity: 12
1322
+ - :updated_on: "2010-07-21"
1323
+ :store_no: 441
1324
+ :quantity: 12
1325
+ - :updated_on: "2010-07-21"
1326
+ :store_no: 484
1327
+ :quantity: 12
1328
+ - :updated_on: "2010-07-21"
1329
+ :store_no: 496
1330
+ :quantity: 12
1331
+ - :updated_on: "2010-07-21"
1332
+ :store_no: 530
1333
+ :quantity: 12
1334
+ - :updated_on: "2010-07-21"
1335
+ :store_no: 531
1336
+ :quantity: 12
1337
+ - :updated_on: "2010-07-21"
1338
+ :store_no: 535
1339
+ :quantity: 12
1340
+ - :updated_on: "2010-07-21"
1341
+ :store_no: 578
1342
+ :quantity: 12
1343
+ - :updated_on: "2010-07-21"
1344
+ :store_no: 118
1345
+ :quantity: 11
1346
+ - :updated_on: "2010-07-21"
1347
+ :store_no: 246
1348
+ :quantity: 11
1349
+ - :updated_on: "2010-07-21"
1350
+ :store_no: 303
1351
+ :quantity: 11
1352
+ - :updated_on: "2010-07-21"
1353
+ :store_no: 314
1354
+ :quantity: 11
1355
+ - :updated_on: "2010-07-21"
1356
+ :store_no: 375
1357
+ :quantity: 11
1358
+ - :updated_on: "2010-07-21"
1359
+ :store_no: 379
1360
+ :quantity: 11
1361
+ - :updated_on: "2010-07-21"
1362
+ :store_no: 410
1363
+ :quantity: 11
1364
+ - :updated_on: "2010-07-21"
1365
+ :store_no: 509
1366
+ :quantity: 11
1367
+ - :updated_on: "2010-07-21"
1368
+ :store_no: 30
1369
+ :quantity: 10
1370
+ - :updated_on: "2010-07-21"
1371
+ :store_no: 70
1372
+ :quantity: 10
1373
+ - :updated_on: "2010-07-21"
1374
+ :store_no: 96
1375
+ :quantity: 10
1376
+ - :updated_on: "2010-07-21"
1377
+ :store_no: 137
1378
+ :quantity: 10
1379
+ - :updated_on: "2010-07-21"
1380
+ :store_no: 142
1381
+ :quantity: 10
1382
+ - :updated_on: "2010-07-21"
1383
+ :store_no: 157
1384
+ :quantity: 10
1385
+ - :updated_on: "2010-07-21"
1386
+ :store_no: 178
1387
+ :quantity: 10
1388
+ - :updated_on: "2010-07-21"
1389
+ :store_no: 239
1390
+ :quantity: 10
1391
+ - :updated_on: "2010-07-21"
1392
+ :store_no: 275
1393
+ :quantity: 10
1394
+ - :updated_on: "2010-07-21"
1395
+ :store_no: 337
1396
+ :quantity: 10
1397
+ - :updated_on: "2010-07-21"
1398
+ :store_no: 338
1399
+ :quantity: 10
1400
+ - :updated_on: "2010-07-21"
1401
+ :store_no: 433
1402
+ :quantity: 10
1403
+ - :updated_on: "2010-07-21"
1404
+ :store_no: 448
1405
+ :quantity: 10
1406
+ - :updated_on: "2010-07-21"
1407
+ :store_no: 475
1408
+ :quantity: 10
1409
+ - :updated_on: "2010-07-21"
1410
+ :store_no: 487
1411
+ :quantity: 10
1412
+ - :updated_on: "2010-07-21"
1413
+ :store_no: 489
1414
+ :quantity: 10
1415
+ - :updated_on: "2010-07-21"
1416
+ :store_no: 507
1417
+ :quantity: 10
1418
+ - :updated_on: "2010-07-21"
1419
+ :store_no: 583
1420
+ :quantity: 10
1421
+ - :updated_on: "2010-07-21"
1422
+ :store_no: 63
1423
+ :quantity: 9
1424
+ - :updated_on: "2010-07-21"
1425
+ :store_no: 134
1426
+ :quantity: 9
1427
+ - :updated_on: "2010-07-21"
1428
+ :store_no: 141
1429
+ :quantity: 9
1430
+ - :updated_on: "2010-07-21"
1431
+ :store_no: 199
1432
+ :quantity: 9
1433
+ - :updated_on: "2010-07-21"
1434
+ :store_no: 273
1435
+ :quantity: 9
1436
+ - :updated_on: "2010-07-21"
1437
+ :store_no: 304
1438
+ :quantity: 9
1439
+ - :updated_on: "2010-07-21"
1440
+ :store_no: 316
1441
+ :quantity: 9
1442
+ - :updated_on: "2010-07-21"
1443
+ :store_no: 330
1444
+ :quantity: 9
1445
+ - :updated_on: "2010-07-21"
1446
+ :store_no: 451
1447
+ :quantity: 9
1448
+ - :updated_on: "2010-07-21"
1449
+ :store_no: 565
1450
+ :quantity: 9
1451
+ - :updated_on: "2010-07-21"
1452
+ :store_no: 603
1453
+ :quantity: 9
1454
+ - :updated_on: "2010-07-21"
1455
+ :store_no: 604
1456
+ :quantity: 9
1457
+ - :updated_on: "2010-07-21"
1458
+ :store_no: 608
1459
+ :quantity: 9
1460
+ - :updated_on: "2010-07-21"
1461
+ :store_no: 67
1462
+ :quantity: 8
1463
+ - :updated_on: "2010-07-21"
1464
+ :store_no: 208
1465
+ :quantity: 8
1466
+ - :updated_on: "2010-07-21"
1467
+ :store_no: 213
1468
+ :quantity: 8
1469
+ - :updated_on: "2010-07-21"
1470
+ :store_no: 281
1471
+ :quantity: 8
1472
+ - :updated_on: "2010-07-21"
1473
+ :store_no: 450
1474
+ :quantity: 8
1475
+ - :updated_on: "2010-07-21"
1476
+ :store_no: 492
1477
+ :quantity: 8
1478
+ - :updated_on: "2010-07-21"
1479
+ :store_no: 524
1480
+ :quantity: 8
1481
+ - :updated_on: "2010-07-21"
1482
+ :store_no: 526
1483
+ :quantity: 8
1484
+ - :updated_on: "2010-07-21"
1485
+ :store_no: 570
1486
+ :quantity: 8
1487
+ - :updated_on: "2010-07-21"
1488
+ :store_no: 51
1489
+ :quantity: 7
1490
+ - :updated_on: "2010-07-21"
1491
+ :store_no: 282
1492
+ :quantity: 7
1493
+ - :updated_on: "2010-07-21"
1494
+ :store_no: 103
1495
+ :quantity: 7
1496
+ - :updated_on: "2010-07-21"
1497
+ :store_no: 114
1498
+ :quantity: 7
1499
+ - :updated_on: "2010-07-21"
1500
+ :store_no: 174
1501
+ :quantity: 7
1502
+ - :updated_on: "2010-07-21"
1503
+ :store_no: 176
1504
+ :quantity: 7
1505
+ - :updated_on: "2010-07-21"
1506
+ :store_no: 245
1507
+ :quantity: 7
1508
+ - :updated_on: "2010-07-21"
1509
+ :store_no: 256
1510
+ :quantity: 7
1511
+ - :updated_on: "2010-07-21"
1512
+ :store_no: 358
1513
+ :quantity: 7
1514
+ - :updated_on: "2010-07-21"
1515
+ :store_no: 463
1516
+ :quantity: 7
1517
+ - :updated_on: "2010-07-21"
1518
+ :store_no: 517
1519
+ :quantity: 7
1520
+ - :updated_on: "2010-07-21"
1521
+ :store_no: 552
1522
+ :quantity: 7
1523
+ - :updated_on: "2010-07-21"
1524
+ :store_no: 576
1525
+ :quantity: 7
1526
+ - :updated_on: "2010-07-21"
1527
+ :store_no: 596
1528
+ :quantity: 7
1529
+ - :updated_on: "2010-07-21"
1530
+ :store_no: 597
1531
+ :quantity: 7
1532
+ - :updated_on: "2010-07-21"
1533
+ :store_no: 66
1534
+ :quantity: 6
1535
+ - :updated_on: "2010-07-21"
1536
+ :store_no: 89
1537
+ :quantity: 6
1538
+ - :updated_on: "2010-07-21"
1539
+ :store_no: 112
1540
+ :quantity: 6
1541
+ - :updated_on: "2010-07-21"
1542
+ :store_no: 131
1543
+ :quantity: 6
1544
+ - :updated_on: "2010-07-21"
1545
+ :store_no: 220
1546
+ :quantity: 6
1547
+ - :updated_on: "2010-07-21"
1548
+ :store_no: 274
1549
+ :quantity: 6
1550
+ - :updated_on: "2010-07-21"
1551
+ :store_no: 302
1552
+ :quantity: 6
1553
+ - :updated_on: "2010-07-21"
1554
+ :store_no: 350
1555
+ :quantity: 6
1556
+ - :updated_on: "2010-07-21"
1557
+ :store_no: 377
1558
+ :quantity: 6
1559
+ - :updated_on: "2010-07-21"
1560
+ :store_no: 460
1561
+ :quantity: 6
1562
+ - :updated_on: "2010-07-21"
1563
+ :store_no: 466
1564
+ :quantity: 6
1565
+ - :updated_on: "2010-07-21"
1566
+ :store_no: 133
1567
+ :quantity: 5
1568
+ - :updated_on: "2010-07-21"
1569
+ :store_no: 254
1570
+ :quantity: 5
1571
+ - :updated_on: "2010-07-21"
1572
+ :store_no: 291
1573
+ :quantity: 5
1574
+ - :updated_on: "2010-07-21"
1575
+ :store_no: 374
1576
+ :quantity: 5
1577
+ - :updated_on: "2010-07-21"
1578
+ :store_no: 405
1579
+ :quantity: 5
1580
+ - :updated_on: "2010-07-21"
1581
+ :store_no: 550
1582
+ :quantity: 5
1583
+ - :updated_on: "2010-07-21"
1584
+ :store_no: 46
1585
+ :quantity: 4
1586
+ - :updated_on: "2010-07-21"
1587
+ :store_no: 121
1588
+ :quantity: 4
1589
+ - :updated_on: "2010-07-21"
1590
+ :store_no: 172
1591
+ :quantity: 4
1592
+ - :updated_on: "2010-07-21"
1593
+ :store_no: 189
1594
+ :quantity: 4
1595
+ - :updated_on: "2010-07-21"
1596
+ :store_no: 289
1597
+ :quantity: 4
1598
+ - :updated_on: "2010-07-21"
1599
+ :store_no: 296
1600
+ :quantity: 4
1601
+ - :updated_on: "2010-07-21"
1602
+ :store_no: 315
1603
+ :quantity: 4
1604
+ - :updated_on: "2010-07-21"
1605
+ :store_no: 319
1606
+ :quantity: 4
1607
+ - :updated_on: "2010-07-21"
1608
+ :store_no: 414
1609
+ :quantity: 4
1610
+ - :updated_on: "2010-07-21"
1611
+ :store_no: 476
1612
+ :quantity: 4
1613
+ - :updated_on: "2010-07-21"
1614
+ :store_no: 91
1615
+ :quantity: 3
1616
+ - :updated_on: "2010-07-21"
1617
+ :store_no: 184
1618
+ :quantity: 3
1619
+ - :updated_on: "2010-07-21"
1620
+ :store_no: 369
1621
+ :quantity: 3
1622
+ - :updated_on: "2010-07-21"
1623
+ :store_no: 510
1624
+ :quantity: 3
1625
+ - :updated_on: "2010-07-21"
1626
+ :store_no: 541
1627
+ :quantity: 3
1628
+ - :updated_on: "2010-07-21"
1629
+ :store_no: 577
1630
+ :quantity: 3
1631
+ - :updated_on: "2010-07-21"
1632
+ :store_no: 591
1633
+ :quantity: 3
1634
+ - :updated_on: "2010-07-21"
1635
+ :store_no: 615
1636
+ :quantity: 3
1637
+ - :updated_on: "2010-07-21"
1638
+ :store_no: 271
1639
+ :quantity: 2
1640
+ - :updated_on: "2010-07-21"
1641
+ :store_no: 258
1642
+ :quantity: 2
1643
+ - :updated_on: "2010-07-21"
1644
+ :store_no: 331
1645
+ :quantity: 2
1646
+ - :updated_on: "2010-07-21"
1647
+ :store_no: 514
1648
+ :quantity: 2
1649
+ - :updated_on: "2010-07-21"
1650
+ :store_no: 87
1651
+ :quantity: 1
1652
+ - :updated_on: "2010-07-21"
1653
+ :store_no: 170
1654
+ :quantity: 1
1655
+ - :updated_on: "2010-07-21"
1656
+ :store_no: 262
1657
+ :quantity: 1
1658
+ - :updated_on: "2010-07-21"
1659
+ :store_no: 284
1660
+ :quantity: 1
1661
+ - :updated_on: "2010-07-21"
1662
+ :store_no: 336
1663
+ :quantity: 1
1664
+ - :updated_on: "2010-07-21"
1665
+ :store_no: 364
1666
+ :quantity: 1
1667
+ - :updated_on: "2010-07-21"
1668
+ :store_no: 399
1669
+ :quantity: 1
1670
+ - :updated_on: "2010-07-21"
1671
+ :store_no: 480
1672
+ :quantity: 1
1673
+ - :updated_on: "2010-07-21"
1674
+ :store_no: 607
1675
+ :quantity: 1
1676
+ - :file: 2.html
1677
+ :desc: Product with no inventories
1678
+ :uri: http://www.lcbo.com/lcbo-ear/lcbo/product/inventory/searchResults.do?language=EN&itemNumber=8466
1679
+ :method: :get
1680
+ :query_params:
1681
+ :product_no: 8466
1682
+ :expectation:
1683
+ :inventory_count: 0
1684
+ :product_no: 8466
1685
+ :inventories: []