lcbo 0.9.7 → 0.9.8

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