dmm 0.0.3 → 0.0.4
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.
- data/.coveralls.yml +0 -0
- data/.gitignore +2 -1
- data/.travis.yml +9 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -1
- data/dmm.gemspec +2 -1
- data/lib/dmm/client.rb +3 -2
- data/lib/dmm/error.rb +3 -0
- data/lib/dmm/iteminfo.rb +1 -1
- data/lib/dmm/price.rb +1 -1
- data/lib/dmm/version.rb +1 -1
- data/lib/faraday/response/raise_dmm_error.rb +1 -0
- data/spec/dmm/api/items_spec.rb +49 -0
- data/spec/dmm/error_spec.rb +100 -0
- data/spec/dmm/item_spec.rb +30 -79
- data/spec/dmm/iteminfo_spec.rb +16 -47
- data/spec/dmm/price_spec.rb +36 -0
- data/spec/dmm/result_spec.rb +8 -41
- data/spec/fixtures/request_with_illegal_parameter.xml +22 -0
- data/spec/fixtures/request_with_wrong_affiliate_id.xml +22 -0
- data/spec/fixtures/request_with_wrong_api_id.xml +22 -0
- data/spec/fixtures/sample2.xml +2588 -0
- data/spec/request_helper.rb +77 -0
- data/spec/spec_helper.rb +15 -2
- metadata +36 -8
- data/spec/dmm/client_spec.rb +0 -84
- data/spec/dmm/response_spec.rb +0 -36
- data/spec/dmm_spec.rb +0 -25
@@ -0,0 +1,36 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe Dmm::Price do
|
5
|
+
context 'with valid response' do
|
6
|
+
before(:all) do
|
7
|
+
@items = sample_response.items
|
8
|
+
end
|
9
|
+
|
10
|
+
subject { @items.first.prices }
|
11
|
+
|
12
|
+
its(:min_price) { should eq 500 }
|
13
|
+
its(:deliveries) { should eq [{:type=>"stream", :price=>"500"}, {:type=>"download", :price=>"980"}, {:type=>"hd", :price=>"1480"}, {:type=>"androiddl", :price=>"980"}] }
|
14
|
+
its(:delivery_types) { should eq ['stream', 'download', 'hd', 'androiddl'] }
|
15
|
+
|
16
|
+
describe 'method_missing' do
|
17
|
+
its(:price_stream) { should eq 500 }
|
18
|
+
its(:price_download) { should eq 980 }
|
19
|
+
its(:price_hd) { should eq 1480 }
|
20
|
+
its(:price_androiddl) { should eq 980 }
|
21
|
+
its(:price_toaster) { should be_nil }
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'respond_to?' do
|
25
|
+
%w(price_stream price_download price_hd price_androiddl).each do |method|
|
26
|
+
it "should be true with argument #{method}" do
|
27
|
+
subject.respond_to?(method.to_sym).should be_true
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'should be true with non-existent price type' do
|
32
|
+
subject.respond_to?(:price_toaster).should be_true
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/spec/dmm/result_spec.rb
CHANGED
@@ -1,48 +1,15 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
1
|
require 'spec_helper'
|
3
2
|
|
4
|
-
describe Dmm::
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
end
|
9
|
-
|
10
|
-
context 'has no item' do
|
11
|
-
|
12
|
-
subject { @dmm.item_list(:keyword => 'ほげほげほげ').result }
|
13
|
-
|
14
|
-
its(:result_count) { should eq 0 }
|
15
|
-
its(:total_count) { should eq 0 }
|
16
|
-
its(:first_position) { should eq 0 }
|
17
|
-
|
18
|
-
describe '#items' do
|
19
|
-
it { subject.items.should be_empty }
|
3
|
+
describe Dmm::Response do
|
4
|
+
context 'with valid response' do
|
5
|
+
before(:all) do
|
6
|
+
@response = sample_response
|
20
7
|
end
|
21
|
-
end
|
22
|
-
|
23
|
-
context 'has a item' do
|
24
8
|
|
25
|
-
subject { @
|
9
|
+
subject { @response }
|
26
10
|
|
27
|
-
its(:result_count)
|
28
|
-
|
29
|
-
|
30
|
-
its(:items) { should have_exactly(1).items }
|
31
|
-
it 'should include an instance of Dmm::Item' do
|
32
|
-
subject.items.first.should be_an_instance_of Dmm::Item
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
context 'has some items' do
|
38
|
-
|
39
|
-
subject { @dmm.item_list(:keyword => '吉川あいみ').result }
|
40
|
-
|
41
|
-
describe '#items' do
|
42
|
-
its(:items) { should have_at_least(1).items }
|
43
|
-
it 'should include an instance of Dmm::Item' do
|
44
|
-
subject.items.sample.should be_an_instance_of Dmm::Item
|
45
|
-
end
|
46
|
-
end
|
11
|
+
its(:result_count) { should eq 20 }
|
12
|
+
its(:total_count) { should eq 162539 }
|
13
|
+
its(:first_position) { should eq 1 }
|
47
14
|
end
|
48
15
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="euc-jp"?>
|
2
|
+
<response>
|
3
|
+
<request>
|
4
|
+
<parameters>
|
5
|
+
<parameter name="api_id" value="PVRE1xSLqtfvkQebwJ7g" />
|
6
|
+
<parameter name="affiliate_id" value="obmyxnhwutdk-999" />
|
7
|
+
<parameter name="operation" value="ItemList" />
|
8
|
+
<parameter name="version" value="2.00" />
|
9
|
+
<parameter name="timestamp" value="2012-01-13 14:08:16" />
|
10
|
+
<parameter name="site" value="DMM" />
|
11
|
+
</parameters>
|
12
|
+
</request>
|
13
|
+
<result>
|
14
|
+
<message>REQUEST ERROR</message>
|
15
|
+
<errors>
|
16
|
+
<error>
|
17
|
+
<name>site</name>
|
18
|
+
<value>PARAMETER ILLEGAL</value>
|
19
|
+
</error>
|
20
|
+
</errors>
|
21
|
+
</result>
|
22
|
+
</response>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="euc-jp"?>
|
2
|
+
<response>
|
3
|
+
<request>
|
4
|
+
<parameters>
|
5
|
+
<parameter name="api_id" value="API_ID" />
|
6
|
+
<parameter name="affiliate_id" value="WRONG_AFFILIATE_ID" />
|
7
|
+
<parameter name="operation" value="ItemList" />
|
8
|
+
<parameter name="version" value="2.00" />
|
9
|
+
<parameter name="timestamp" value="2012-01-13 14:08:16" />
|
10
|
+
<parameter name="site" value="DMM.co.jp" />
|
11
|
+
</parameters>
|
12
|
+
</request>
|
13
|
+
<result>
|
14
|
+
<message>REQUEST ERROR</message>
|
15
|
+
<errors>
|
16
|
+
<error>
|
17
|
+
<name>affiliate_id</name>
|
18
|
+
<value>PARAMETER NOT FOUND</value>
|
19
|
+
</error>
|
20
|
+
</errors>
|
21
|
+
</result>
|
22
|
+
</response>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="euc-jp"?>
|
2
|
+
<response>
|
3
|
+
<request>
|
4
|
+
<parameters>
|
5
|
+
<parameter name="api_id" value="WRONG_API_ID" />
|
6
|
+
<parameter name="affiliate_id" value="AFFILIATE_ID" />
|
7
|
+
<parameter name="operation" value="ItemList" />
|
8
|
+
<parameter name="version" value="2.00" />
|
9
|
+
<parameter name="timestamp" value="2012-01-13 14:08:16" />
|
10
|
+
<parameter name="site" value="DMM.co.jp" />
|
11
|
+
</parameters>
|
12
|
+
</request>
|
13
|
+
<result>
|
14
|
+
<message>login error</message>
|
15
|
+
<errors>
|
16
|
+
<error>
|
17
|
+
<name>login</name>
|
18
|
+
<value>no existing account</value>
|
19
|
+
</error>
|
20
|
+
</errors>
|
21
|
+
</result>
|
22
|
+
</response>
|
@@ -0,0 +1,2588 @@
|
|
1
|
+
<?xml version="1.0" encoding="euc-jp"?>
|
2
|
+
<response>
|
3
|
+
<request>
|
4
|
+
<parameters>
|
5
|
+
<parameter name="api_id" value="API_ID" />
|
6
|
+
<parameter name="affiliate_id" value="AFFILIATE_ID" />
|
7
|
+
<parameter name="operation" value="ItemList" />
|
8
|
+
<parameter name="version" value="2.00" />
|
9
|
+
<parameter name="timestamp" value="2012-01-13 14:08:16" />
|
10
|
+
<parameter name="site" value="DMM.co.jp" />
|
11
|
+
<parameter name="keyword" value="����" />
|
12
|
+
</parameters>
|
13
|
+
</request>
|
14
|
+
<result>
|
15
|
+
<result_count>20</result_count>
|
16
|
+
<total_count>162539</total_count>
|
17
|
+
<first_position>1</first_position>
|
18
|
+
<items>
|
19
|
+
<item>
|
20
|
+
<service_name>ư��</service_name>
|
21
|
+
<floor_name>�ӥǥ�</floor_name>
|
22
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
23
|
+
<content_id>club00025</content_id>
|
24
|
+
<product_id>club00025</product_id>
|
25
|
+
<title>����Թ�����⥻��ֿͺʥʥ�ѥ�����</title>
|
26
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=club00025/</URL>
|
27
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=club00025/AFFILIATE_ID</affiliateURL>
|
28
|
+
<imageURL>
|
29
|
+
<list>http://pics.dmm.co.jp/digital/video/club00025/club00025pt.jpg</list>
|
30
|
+
<small>http://pics.dmm.co.jp/digital/video/club00025/club00025ps.jpg</small>
|
31
|
+
<large>http://pics.dmm.co.jp/digital/video/club00025/club00025pl.jpg</large>
|
32
|
+
</imageURL>
|
33
|
+
<sampleImageURL>
|
34
|
+
<sample_s>
|
35
|
+
<image>http://pics.dmm.co.jp/digital/video/club00025/club00025-1.jpg</image>
|
36
|
+
<image>http://pics.dmm.co.jp/digital/video/club00025/club00025-2.jpg</image>
|
37
|
+
<image>http://pics.dmm.co.jp/digital/video/club00025/club00025-3.jpg</image>
|
38
|
+
</sample_s>
|
39
|
+
</sampleImageURL>
|
40
|
+
<prices>
|
41
|
+
<price>500���</price>
|
42
|
+
<deliveries>
|
43
|
+
<delivery>
|
44
|
+
<type>stream</type>
|
45
|
+
<price>500</price>
|
46
|
+
</delivery>
|
47
|
+
<delivery>
|
48
|
+
<type>download</type>
|
49
|
+
<price>980</price>
|
50
|
+
</delivery>
|
51
|
+
<delivery>
|
52
|
+
<type>hd</type>
|
53
|
+
<price>1480</price>
|
54
|
+
</delivery>
|
55
|
+
<delivery>
|
56
|
+
<type>androiddl</type>
|
57
|
+
<price>980</price>
|
58
|
+
</delivery>
|
59
|
+
</deliveries>
|
60
|
+
</prices>
|
61
|
+
<date>2013-01-26 10:00:11</date>
|
62
|
+
<iteminfo>
|
63
|
+
<keyword>
|
64
|
+
<name>������</name>
|
65
|
+
<id>4119</id>
|
66
|
+
</keyword>
|
67
|
+
<keyword>
|
68
|
+
<name>�ʥ��</name>
|
69
|
+
<id>4006</id>
|
70
|
+
</keyword>
|
71
|
+
<keyword>
|
72
|
+
<name>�ͺ�</name>
|
73
|
+
<id>1039</id>
|
74
|
+
</keyword>
|
75
|
+
<keyword>
|
76
|
+
<name>�Խ�</name>
|
77
|
+
<id>1031</id>
|
78
|
+
</keyword>
|
79
|
+
<keyword>
|
80
|
+
<name>����</name>
|
81
|
+
<id>2001</id>
|
82
|
+
</keyword>
|
83
|
+
<keyword>
|
84
|
+
<name>�����ۿ�</name>
|
85
|
+
<id>6548</id>
|
86
|
+
</keyword>
|
87
|
+
<keyword>
|
88
|
+
<name>�ϥ��ӥ����</name>
|
89
|
+
<id>6533</id>
|
90
|
+
</keyword>
|
91
|
+
<maker>
|
92
|
+
<name>���ֿ»ζ����</name>
|
93
|
+
<id>6393</id>
|
94
|
+
</maker>
|
95
|
+
<label>
|
96
|
+
<name>���ֿ»ζ����</name>
|
97
|
+
<id>23801</id>
|
98
|
+
</label>
|
99
|
+
</iteminfo>
|
100
|
+
</item>
|
101
|
+
<item>
|
102
|
+
<service_name>ư��</service_name>
|
103
|
+
<floor_name>�ӥǥ�</floor_name>
|
104
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
105
|
+
<content_id>tek00049</content_id>
|
106
|
+
<product_id>tek00049</product_id>
|
107
|
+
<title>BAZOOKA �������</title>
|
108
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=tek00049/</URL>
|
109
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=tek00049/AFFILIATE_ID</affiliateURL>
|
110
|
+
<imageURL>
|
111
|
+
<list>http://pics.dmm.co.jp/digital/video/tek00049/tek00049pt.jpg</list>
|
112
|
+
<small>http://pics.dmm.co.jp/digital/video/tek00049/tek00049ps.jpg</small>
|
113
|
+
<large>http://pics.dmm.co.jp/digital/video/tek00049/tek00049pl.jpg</large>
|
114
|
+
</imageURL>
|
115
|
+
<sampleImageURL>
|
116
|
+
<sample_s>
|
117
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-1.jpg</image>
|
118
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-2.jpg</image>
|
119
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-3.jpg</image>
|
120
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-4.jpg</image>
|
121
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-5.jpg</image>
|
122
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-6.jpg</image>
|
123
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-7.jpg</image>
|
124
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-8.jpg</image>
|
125
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-9.jpg</image>
|
126
|
+
<image>http://pics.dmm.co.jp/digital/video/tek00049/tek00049-10.jpg</image>
|
127
|
+
</sample_s>
|
128
|
+
</sampleImageURL>
|
129
|
+
<prices>
|
130
|
+
<price>2480���</price>
|
131
|
+
<deliveries>
|
132
|
+
<delivery>
|
133
|
+
<type>stream</type>
|
134
|
+
<price>2480</price>
|
135
|
+
</delivery>
|
136
|
+
<delivery>
|
137
|
+
<type>download</type>
|
138
|
+
<price>2480</price>
|
139
|
+
</delivery>
|
140
|
+
<delivery>
|
141
|
+
<type>hd</type>
|
142
|
+
<price>2980</price>
|
143
|
+
</delivery>
|
144
|
+
<delivery>
|
145
|
+
<type>toaster</type>
|
146
|
+
<price>2800</price>
|
147
|
+
</delivery>
|
148
|
+
<delivery>
|
149
|
+
<type>androiddl</type>
|
150
|
+
<price>2480</price>
|
151
|
+
</delivery>
|
152
|
+
</deliveries>
|
153
|
+
</prices>
|
154
|
+
<date>2013-05-01 10:00:56</date>
|
155
|
+
<iteminfo>
|
156
|
+
<keyword>
|
157
|
+
<name>DVD�ȡ�������</name>
|
158
|
+
<id>6529</id>
|
159
|
+
</keyword>
|
160
|
+
<keyword>
|
161
|
+
<name>�ϥ��ӥ����</name>
|
162
|
+
<id>6533</id>
|
163
|
+
</keyword>
|
164
|
+
<keyword>
|
165
|
+
<name>�����ۿ�</name>
|
166
|
+
<id>6548</id>
|
167
|
+
</keyword>
|
168
|
+
<keyword>
|
169
|
+
<name>ñ�κ���</name>
|
170
|
+
<id>4025</id>
|
171
|
+
</keyword>
|
172
|
+
<keyword>
|
173
|
+
<name>�ǥӥ塼����</name>
|
174
|
+
<id>6006</id>
|
175
|
+
</keyword>
|
176
|
+
<keyword>
|
177
|
+
<name>����</name>
|
178
|
+
<id>2001</id>
|
179
|
+
</keyword>
|
180
|
+
<keyword>
|
181
|
+
<name>�����ɥ롦��ǽ��</name>
|
182
|
+
<id>4118</id>
|
183
|
+
</keyword>
|
184
|
+
<maker>
|
185
|
+
<name>MUTEKI</name>
|
186
|
+
<id>5456</id>
|
187
|
+
</maker>
|
188
|
+
<actress>
|
189
|
+
<name>�������</name>
|
190
|
+
<id>1008356</id>
|
191
|
+
</actress>
|
192
|
+
<actress>
|
193
|
+
<name>�ˤ���ޤ��</name>
|
194
|
+
<id>1008356_ruby</id>
|
195
|
+
</actress>
|
196
|
+
<actress>
|
197
|
+
<name>av</name>
|
198
|
+
<id>1008356_classify</id>
|
199
|
+
</actress>
|
200
|
+
<director>
|
201
|
+
<name>������</name>
|
202
|
+
<id>101149</id>
|
203
|
+
</director>
|
204
|
+
<director>
|
205
|
+
<name>�����ҤǤ�</name>
|
206
|
+
<id>101149_ruby</id>
|
207
|
+
</director>
|
208
|
+
<label>
|
209
|
+
<name>MUTEKI</name>
|
210
|
+
<id>9033</id>
|
211
|
+
</label>
|
212
|
+
</iteminfo>
|
213
|
+
</item>
|
214
|
+
<item>
|
215
|
+
<service_name>ư��</service_name>
|
216
|
+
<floor_name>�ӥǥ�</floor_name>
|
217
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
218
|
+
<content_id>118mas00107</content_id>
|
219
|
+
<product_id>118mas00107</product_id>
|
220
|
+
<title>����Ū�����������ߤ����ޤ��� ACT.32</title>
|
221
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118mas00107/</URL>
|
222
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118mas00107/AFFILIATE_ID</affiliateURL>
|
223
|
+
<imageURL>
|
224
|
+
<list>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107pt.jpg</list>
|
225
|
+
<small>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107ps.jpg</small>
|
226
|
+
<large>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107pl.jpg</large>
|
227
|
+
</imageURL>
|
228
|
+
<sampleImageURL>
|
229
|
+
<sample_s>
|
230
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-1.jpg</image>
|
231
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-2.jpg</image>
|
232
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-3.jpg</image>
|
233
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-4.jpg</image>
|
234
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-5.jpg</image>
|
235
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-6.jpg</image>
|
236
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-7.jpg</image>
|
237
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-8.jpg</image>
|
238
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-9.jpg</image>
|
239
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00107/118mas00107-10.jpg</image>
|
240
|
+
</sample_s>
|
241
|
+
</sampleImageURL>
|
242
|
+
<prices>
|
243
|
+
<price>1980���</price>
|
244
|
+
<deliveries>
|
245
|
+
<delivery>
|
246
|
+
<type>stream</type>
|
247
|
+
<price>1980</price>
|
248
|
+
</delivery>
|
249
|
+
<delivery>
|
250
|
+
<type>download</type>
|
251
|
+
<price>1980</price>
|
252
|
+
</delivery>
|
253
|
+
</deliveries>
|
254
|
+
</prices>
|
255
|
+
<date>2013-04-26 10:01:00</date>
|
256
|
+
<iteminfo>
|
257
|
+
<keyword>
|
258
|
+
<name>ñ�κ���</name>
|
259
|
+
<id>4025</id>
|
260
|
+
</keyword>
|
261
|
+
<keyword>
|
262
|
+
<name>������</name>
|
263
|
+
<id>1027</id>
|
264
|
+
</keyword>
|
265
|
+
<keyword>
|
266
|
+
<name>�ե���</name>
|
267
|
+
<id>5002</id>
|
268
|
+
</keyword>
|
269
|
+
<series>
|
270
|
+
<name>����Ū�����������ߤ����ޤ���</name>
|
271
|
+
<id>79983</id>
|
272
|
+
</series>
|
273
|
+
<maker>
|
274
|
+
<name>�ץ쥹�ơ���</name>
|
275
|
+
<id>40136</id>
|
276
|
+
</maker>
|
277
|
+
<actress>
|
278
|
+
<name>��¼������</name>
|
279
|
+
<id>1019076</id>
|
280
|
+
</actress>
|
281
|
+
<actress>
|
282
|
+
<name>������餢����</name>
|
283
|
+
<id>1019076_ruby</id>
|
284
|
+
</actress>
|
285
|
+
<actress>
|
286
|
+
<name>av</name>
|
287
|
+
<id>1019076_classify</id>
|
288
|
+
</actress>
|
289
|
+
<label>
|
290
|
+
<name>�ޤ���</name>
|
291
|
+
<id>20940</id>
|
292
|
+
</label>
|
293
|
+
</iteminfo>
|
294
|
+
</item>
|
295
|
+
<item>
|
296
|
+
<service_name>ư��</service_name>
|
297
|
+
<floor_name>�ӥǥ�</floor_name>
|
298
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
299
|
+
<content_id>soe00927</content_id>
|
300
|
+
<product_id>soe00927</product_id>
|
301
|
+
<title>����NO.1 STYLE ̴ǵ������ AV�ǥӥ塼</title>
|
302
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=soe00927/</URL>
|
303
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=soe00927/AFFILIATE_ID</affiliateURL>
|
304
|
+
<imageURL>
|
305
|
+
<list>http://pics.dmm.co.jp/digital/video/soe00927/soe00927pt.jpg</list>
|
306
|
+
<small>http://pics.dmm.co.jp/digital/video/soe00927/soe00927ps.jpg</small>
|
307
|
+
<large>http://pics.dmm.co.jp/digital/video/soe00927/soe00927pl.jpg</large>
|
308
|
+
</imageURL>
|
309
|
+
<sampleImageURL>
|
310
|
+
<sample_s>
|
311
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-1.jpg</image>
|
312
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-2.jpg</image>
|
313
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-3.jpg</image>
|
314
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-4.jpg</image>
|
315
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-5.jpg</image>
|
316
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-6.jpg</image>
|
317
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-7.jpg</image>
|
318
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-8.jpg</image>
|
319
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-9.jpg</image>
|
320
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00927/soe00927-10.jpg</image>
|
321
|
+
</sample_s>
|
322
|
+
</sampleImageURL>
|
323
|
+
<prices>
|
324
|
+
<price>1980���</price>
|
325
|
+
<deliveries>
|
326
|
+
<delivery>
|
327
|
+
<type>stream</type>
|
328
|
+
<price>1980</price>
|
329
|
+
</delivery>
|
330
|
+
<delivery>
|
331
|
+
<type>download</type>
|
332
|
+
<price>1980</price>
|
333
|
+
</delivery>
|
334
|
+
<delivery>
|
335
|
+
<type>hd</type>
|
336
|
+
<price>2480</price>
|
337
|
+
</delivery>
|
338
|
+
<delivery>
|
339
|
+
<type>toaster</type>
|
340
|
+
<price>2100</price>
|
341
|
+
</delivery>
|
342
|
+
<delivery>
|
343
|
+
<type>androiddl</type>
|
344
|
+
<price>1980</price>
|
345
|
+
</delivery>
|
346
|
+
</deliveries>
|
347
|
+
</prices>
|
348
|
+
<date>2013-05-03 10:01:00</date>
|
349
|
+
<iteminfo>
|
350
|
+
<keyword>
|
351
|
+
<name>�ǥӥ塼����</name>
|
352
|
+
<id>6006</id>
|
353
|
+
</keyword>
|
354
|
+
<keyword>
|
355
|
+
<name>Ĭ�</name>
|
356
|
+
<id>5016</id>
|
357
|
+
</keyword>
|
358
|
+
<keyword>
|
359
|
+
<name>��������</name>
|
360
|
+
<id>2006</id>
|
361
|
+
</keyword>
|
362
|
+
<keyword>
|
363
|
+
<name>����</name>
|
364
|
+
<id>2001</id>
|
365
|
+
</keyword>
|
366
|
+
<keyword>
|
367
|
+
<name>3P��4P</name>
|
368
|
+
<id>5022</id>
|
369
|
+
</keyword>
|
370
|
+
<keyword>
|
371
|
+
<name>����⥶</name>
|
372
|
+
<id>6017</id>
|
373
|
+
</keyword>
|
374
|
+
<keyword>
|
375
|
+
<name>�����ۿ�</name>
|
376
|
+
<id>6548</id>
|
377
|
+
</keyword>
|
378
|
+
<keyword>
|
379
|
+
<name>�ϥ��ӥ����</name>
|
380
|
+
<id>6533</id>
|
381
|
+
</keyword>
|
382
|
+
<keyword>
|
383
|
+
<name>DVD�ȡ�������</name>
|
384
|
+
<id>6529</id>
|
385
|
+
</keyword>
|
386
|
+
<series>
|
387
|
+
<name>����NO.1 STYLE</name>
|
388
|
+
<id>78603</id>
|
389
|
+
</series>
|
390
|
+
<maker>
|
391
|
+
<name>������� �ʥ�С��������</name>
|
392
|
+
<id>3152</id>
|
393
|
+
</maker>
|
394
|
+
<actress>
|
395
|
+
<name>̴ǵ������</name>
|
396
|
+
<id>1019323</id>
|
397
|
+
</actress>
|
398
|
+
<actress>
|
399
|
+
<name>��������</name>
|
400
|
+
<id>1019323_ruby</id>
|
401
|
+
</actress>
|
402
|
+
<actress>
|
403
|
+
<name>av</name>
|
404
|
+
<id>1019323_classify</id>
|
405
|
+
</actress>
|
406
|
+
<director>
|
407
|
+
<name>FLAGMAN</name>
|
408
|
+
<id>101116</id>
|
409
|
+
</director>
|
410
|
+
<director>
|
411
|
+
<name>�դ�ä��ޤ�</name>
|
412
|
+
<id>101116_ruby</id>
|
413
|
+
</director>
|
414
|
+
<label>
|
415
|
+
<name>S1 NO.1 STYLE</name>
|
416
|
+
<id>3474</id>
|
417
|
+
</label>
|
418
|
+
</iteminfo>
|
419
|
+
</item>
|
420
|
+
<item>
|
421
|
+
<service_name>ư��</service_name>
|
422
|
+
<floor_name>�ӥǥ�</floor_name>
|
423
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
424
|
+
<content_id>60xv01113</content_id>
|
425
|
+
<product_id>60xv01113</product_id>
|
426
|
+
<title>New Comer ���˽в����ä� ������Τ</title>
|
427
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=60xv01113/</URL>
|
428
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=60xv01113/AFFILIATE_ID</affiliateURL>
|
429
|
+
<imageURL>
|
430
|
+
<list>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113pt.jpg</list>
|
431
|
+
<small>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113ps.jpg</small>
|
432
|
+
<large>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113pl.jpg</large>
|
433
|
+
</imageURL>
|
434
|
+
<sampleImageURL>
|
435
|
+
<sample_s>
|
436
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-1.jpg</image>
|
437
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-2.jpg</image>
|
438
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-3.jpg</image>
|
439
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-4.jpg</image>
|
440
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-5.jpg</image>
|
441
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-6.jpg</image>
|
442
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-7.jpg</image>
|
443
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-8.jpg</image>
|
444
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-9.jpg</image>
|
445
|
+
<image>http://pics.dmm.co.jp/digital/video/60xv01113/60xv01113-10.jpg</image>
|
446
|
+
</sample_s>
|
447
|
+
</sampleImageURL>
|
448
|
+
<prices>
|
449
|
+
<price>1980���</price>
|
450
|
+
<deliveries>
|
451
|
+
<delivery>
|
452
|
+
<type>stream</type>
|
453
|
+
<price>1980</price>
|
454
|
+
</delivery>
|
455
|
+
<delivery>
|
456
|
+
<type>download</type>
|
457
|
+
<price>1980</price>
|
458
|
+
</delivery>
|
459
|
+
<delivery>
|
460
|
+
<type>hd</type>
|
461
|
+
<price>2480</price>
|
462
|
+
</delivery>
|
463
|
+
<delivery>
|
464
|
+
<type>androiddl</type>
|
465
|
+
<price>1980</price>
|
466
|
+
</delivery>
|
467
|
+
</deliveries>
|
468
|
+
</prices>
|
469
|
+
<date>2013-05-10 10:01:00</date>
|
470
|
+
<iteminfo>
|
471
|
+
<keyword>
|
472
|
+
<name>�ϥ��ӥ����</name>
|
473
|
+
<id>6533</id>
|
474
|
+
</keyword>
|
475
|
+
<keyword>
|
476
|
+
<name>�ǥ���</name>
|
477
|
+
<id>6004</id>
|
478
|
+
</keyword>
|
479
|
+
<keyword>
|
480
|
+
<name>���𡦥ϡ��ɷ�</name>
|
481
|
+
<id>4030</id>
|
482
|
+
</keyword>
|
483
|
+
<keyword>
|
484
|
+
<name>����</name>
|
485
|
+
<id>2001</id>
|
486
|
+
</keyword>
|
487
|
+
<keyword>
|
488
|
+
<name>������</name>
|
489
|
+
<id>1027</id>
|
490
|
+
</keyword>
|
491
|
+
<keyword>
|
492
|
+
<name>�ǥӥ塼����</name>
|
493
|
+
<id>6006</id>
|
494
|
+
</keyword>
|
495
|
+
<series>
|
496
|
+
<name>New Comer</name>
|
497
|
+
<id>7117</id>
|
498
|
+
</series>
|
499
|
+
<maker>
|
500
|
+
<name>�ޥå�������</name>
|
501
|
+
<id>40046</id>
|
502
|
+
</maker>
|
503
|
+
<actress>
|
504
|
+
<name>������Τ</name>
|
505
|
+
<id>1020129</id>
|
506
|
+
</actress>
|
507
|
+
<actress>
|
508
|
+
<name>�ޤĤ�������</name>
|
509
|
+
<id>1020129_ruby</id>
|
510
|
+
</actress>
|
511
|
+
<actress>
|
512
|
+
<name>av</name>
|
513
|
+
<id>1020129_classify</id>
|
514
|
+
</actress>
|
515
|
+
<director>
|
516
|
+
<name>���ܹ�����</name>
|
517
|
+
<id>101154</id>
|
518
|
+
</director>
|
519
|
+
<director>
|
520
|
+
<name>�ʤ��ᤰ��������</name>
|
521
|
+
<id>101154_ruby</id>
|
522
|
+
</director>
|
523
|
+
<label>
|
524
|
+
<name>MAX-A</name>
|
525
|
+
<id>8339</id>
|
526
|
+
</label>
|
527
|
+
</iteminfo>
|
528
|
+
</item>
|
529
|
+
<item>
|
530
|
+
<service_name>ư��</service_name>
|
531
|
+
<floor_name>�ӥǥ�</floor_name>
|
532
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
533
|
+
<content_id>1hunt00598</content_id>
|
534
|
+
<product_id>1hunt00598</product_id>
|
535
|
+
<title>��ǯ���˲�Ҥ�ꥹ�ȥ餵��ư��衢��ȼ��פˤʤä��勵���������˸��Ȥζ����פ��Ƥ���ޤ�������ʥ勵������ͣ��γڤ��ߤϽ���������̼�������ˤˡض���̲���������١�̼���Ȥ�Ϣ����褿���磻��ͧã�ʵ����ˤˤϡػ�ʬ�ǥ��ޥ�ˤʤ�ջ���������٤��</title>
|
536
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=1hunt00598/</URL>
|
537
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=1hunt00598/AFFILIATE_ID</affiliateURL>
|
538
|
+
<imageURL>
|
539
|
+
<list>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598pt.jpg</list>
|
540
|
+
<small>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598ps.jpg</small>
|
541
|
+
<large>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598pl.jpg</large>
|
542
|
+
</imageURL>
|
543
|
+
<sampleImageURL>
|
544
|
+
<sample_s>
|
545
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-1.jpg</image>
|
546
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-2.jpg</image>
|
547
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-3.jpg</image>
|
548
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-4.jpg</image>
|
549
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-5.jpg</image>
|
550
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-6.jpg</image>
|
551
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-7.jpg</image>
|
552
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-8.jpg</image>
|
553
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-9.jpg</image>
|
554
|
+
<image>http://pics.dmm.co.jp/digital/video/1hunt00598/1hunt00598-10.jpg</image>
|
555
|
+
</sample_s>
|
556
|
+
</sampleImageURL>
|
557
|
+
<prices>
|
558
|
+
<price>500���</price>
|
559
|
+
<deliveries>
|
560
|
+
<delivery>
|
561
|
+
<type>stream</type>
|
562
|
+
<price>500</price>
|
563
|
+
</delivery>
|
564
|
+
<delivery>
|
565
|
+
<type>download</type>
|
566
|
+
<price>980</price>
|
567
|
+
</delivery>
|
568
|
+
<delivery>
|
569
|
+
<type>androiddl</type>
|
570
|
+
<price>980</price>
|
571
|
+
</delivery>
|
572
|
+
</deliveries>
|
573
|
+
</prices>
|
574
|
+
<date>2012-09-23 10:00:17</date>
|
575
|
+
<iteminfo>
|
576
|
+
<keyword>
|
577
|
+
<name>����</name>
|
578
|
+
<id>2001</id>
|
579
|
+
</keyword>
|
580
|
+
<keyword>
|
581
|
+
<name>���</name>
|
582
|
+
<id>4007</id>
|
583
|
+
</keyword>
|
584
|
+
<keyword>
|
585
|
+
<name>��������</name>
|
586
|
+
<id>1019</id>
|
587
|
+
</keyword>
|
588
|
+
<keyword>
|
589
|
+
<name>�ɥ�å�</name>
|
590
|
+
<id>5015</id>
|
591
|
+
</keyword>
|
592
|
+
<keyword>
|
593
|
+
<name>4���ְʾ����</name>
|
594
|
+
<id>6012</id>
|
595
|
+
</keyword>
|
596
|
+
<series>
|
597
|
+
<name>��ǯ���˲�Ҥ�ꥹ�ȥ餵��ư���</name>
|
598
|
+
<id>204727</id>
|
599
|
+
</series>
|
600
|
+
<maker>
|
601
|
+
<name>Hunter</name>
|
602
|
+
<id>45287</id>
|
603
|
+
</maker>
|
604
|
+
<director>
|
605
|
+
<name>�ܥ������</name>
|
606
|
+
<id>102291</id>
|
607
|
+
</director>
|
608
|
+
<director>
|
609
|
+
<name>�ܤ�ܤʤ���</name>
|
610
|
+
<id>102291_ruby</id>
|
611
|
+
</director>
|
612
|
+
<label>
|
613
|
+
<name>Hunter�ʥ��եȥ���ǥޥ�ɡ�</name>
|
614
|
+
<id>7042</id>
|
615
|
+
</label>
|
616
|
+
</iteminfo>
|
617
|
+
</item>
|
618
|
+
<item>
|
619
|
+
<service_name>ư��</service_name>
|
620
|
+
<floor_name>�ӥǥ�</floor_name>
|
621
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
622
|
+
<content_id>118rus00002</content_id>
|
623
|
+
<product_id>118rus00002</product_id>
|
624
|
+
<title>���줿�ư��̽��� VOL.02</title>
|
625
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118rus00002/</URL>
|
626
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118rus00002/AFFILIATE_ID</affiliateURL>
|
627
|
+
<imageURL>
|
628
|
+
<list>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002pt.jpg</list>
|
629
|
+
<small>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002ps.jpg</small>
|
630
|
+
<large>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002pl.jpg</large>
|
631
|
+
</imageURL>
|
632
|
+
<sampleImageURL>
|
633
|
+
<sample_s>
|
634
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-1.jpg</image>
|
635
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-2.jpg</image>
|
636
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-3.jpg</image>
|
637
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-4.jpg</image>
|
638
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-5.jpg</image>
|
639
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-6.jpg</image>
|
640
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-7.jpg</image>
|
641
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-8.jpg</image>
|
642
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-9.jpg</image>
|
643
|
+
<image>http://pics.dmm.co.jp/digital/video/118rus00002/118rus00002-10.jpg</image>
|
644
|
+
</sample_s>
|
645
|
+
</sampleImageURL>
|
646
|
+
<prices>
|
647
|
+
<price>1980���</price>
|
648
|
+
<deliveries>
|
649
|
+
<delivery>
|
650
|
+
<type>stream</type>
|
651
|
+
<price>1980</price>
|
652
|
+
</delivery>
|
653
|
+
<delivery>
|
654
|
+
<type>download</type>
|
655
|
+
<price>1980</price>
|
656
|
+
</delivery>
|
657
|
+
</deliveries>
|
658
|
+
</prices>
|
659
|
+
<date>2013-04-26 10:00:59</date>
|
660
|
+
<iteminfo>
|
661
|
+
<keyword>
|
662
|
+
<name>3P��4P</name>
|
663
|
+
<id>5022</id>
|
664
|
+
</keyword>
|
665
|
+
<keyword>
|
666
|
+
<name>����</name>
|
667
|
+
<id>2001</id>
|
668
|
+
</keyword>
|
669
|
+
<keyword>
|
670
|
+
<name>����</name>
|
671
|
+
<id>102</id>
|
672
|
+
</keyword>
|
673
|
+
<keyword>
|
674
|
+
<name>�ǿ�</name>
|
675
|
+
<id>4024</id>
|
676
|
+
</keyword>
|
677
|
+
<series>
|
678
|
+
<name>���줿�ư��̽���</name>
|
679
|
+
<id>206990</id>
|
680
|
+
</series>
|
681
|
+
<maker>
|
682
|
+
<name>�ץ쥹�ơ���</name>
|
683
|
+
<id>40136</id>
|
684
|
+
</maker>
|
685
|
+
<actress>
|
686
|
+
<name>�ݺ䤨��</name>
|
687
|
+
<id>1019603</id>
|
688
|
+
</actress>
|
689
|
+
<actress>
|
690
|
+
<name>�ۤ�������</name>
|
691
|
+
<id>1019603_ruby</id>
|
692
|
+
</actress>
|
693
|
+
<actress>
|
694
|
+
<name>av</name>
|
695
|
+
<id>1019603_classify</id>
|
696
|
+
</actress>
|
697
|
+
<label>
|
698
|
+
<name>RUSH�ʥץ쥹�ơ�����</name>
|
699
|
+
<id>23951</id>
|
700
|
+
</label>
|
701
|
+
</iteminfo>
|
702
|
+
</item>
|
703
|
+
<item>
|
704
|
+
<service_name>ư��</service_name>
|
705
|
+
<floor_name>�ӥǥ�</floor_name>
|
706
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
707
|
+
<content_id>436yag00055</content_id>
|
708
|
+
<product_id>436yag00055</product_id>
|
709
|
+
<title>�ͺʤ����ι�� ������Τ</title>
|
710
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=436yag00055/</URL>
|
711
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=436yag00055/AFFILIATE_ID</affiliateURL>
|
712
|
+
<imageURL>
|
713
|
+
<list>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055pt.jpg</list>
|
714
|
+
<small>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055ps.jpg</small>
|
715
|
+
<large>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055pl.jpg</large>
|
716
|
+
</imageURL>
|
717
|
+
<sampleImageURL>
|
718
|
+
<sample_s>
|
719
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-1.jpg</image>
|
720
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-2.jpg</image>
|
721
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-3.jpg</image>
|
722
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-4.jpg</image>
|
723
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-5.jpg</image>
|
724
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-6.jpg</image>
|
725
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-7.jpg</image>
|
726
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-8.jpg</image>
|
727
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-9.jpg</image>
|
728
|
+
<image>http://pics.dmm.co.jp/digital/video/436yag00055/436yag00055-10.jpg</image>
|
729
|
+
</sample_s>
|
730
|
+
</sampleImageURL>
|
731
|
+
<prices>
|
732
|
+
<price>500���</price>
|
733
|
+
<deliveries>
|
734
|
+
<delivery>
|
735
|
+
<type>stream</type>
|
736
|
+
<price>500</price>
|
737
|
+
</delivery>
|
738
|
+
<delivery>
|
739
|
+
<type>download</type>
|
740
|
+
<price>1480</price>
|
741
|
+
</delivery>
|
742
|
+
<delivery>
|
743
|
+
<type>androiddl</type>
|
744
|
+
<price>1480</price>
|
745
|
+
</delivery>
|
746
|
+
</deliveries>
|
747
|
+
</prices>
|
748
|
+
<date>2012-12-19 10:00:52</date>
|
749
|
+
<iteminfo>
|
750
|
+
<keyword>
|
751
|
+
<name>���𡦥ϡ��ɷ�</name>
|
752
|
+
<id>4030</id>
|
753
|
+
</keyword>
|
754
|
+
<keyword>
|
755
|
+
<name>����</name>
|
756
|
+
<id>2001</id>
|
757
|
+
</keyword>
|
758
|
+
<keyword>
|
759
|
+
<name>���</name>
|
760
|
+
<id>28</id>
|
761
|
+
</keyword>
|
762
|
+
<keyword>
|
763
|
+
<name>���Ϫ��</name>
|
764
|
+
<id>4020</id>
|
765
|
+
</keyword>
|
766
|
+
<keyword>
|
767
|
+
<name>�ͺ�</name>
|
768
|
+
<id>1039</id>
|
769
|
+
</keyword>
|
770
|
+
<series>
|
771
|
+
<name>�ͺʤ����ι��</name>
|
772
|
+
<id>203088</id>
|
773
|
+
</series>
|
774
|
+
<maker>
|
775
|
+
<name>��ŷ</name>
|
776
|
+
<id>45061</id>
|
777
|
+
</maker>
|
778
|
+
<actress>
|
779
|
+
<name>������Τ</name>
|
780
|
+
<id>1018505</id>
|
781
|
+
</actress>
|
782
|
+
<actress>
|
783
|
+
<name>�ޤ����ߤ���</name>
|
784
|
+
<id>1018505_ruby</id>
|
785
|
+
</actress>
|
786
|
+
<actress>
|
787
|
+
<name>av</name>
|
788
|
+
<id>1018505_classify</id>
|
789
|
+
</actress>
|
790
|
+
<director>
|
791
|
+
<name>淵�</name>
|
792
|
+
<id>3105</id>
|
793
|
+
</director>
|
794
|
+
<director>
|
795
|
+
<name>���夦��</name>
|
796
|
+
<id>3105_ruby</id>
|
797
|
+
</director>
|
798
|
+
<label>
|
799
|
+
<name>��֥���ʱ�ŷ��</name>
|
800
|
+
<id>20260</id>
|
801
|
+
</label>
|
802
|
+
</iteminfo>
|
803
|
+
</item>
|
804
|
+
<item>
|
805
|
+
<service_name>ư��</service_name>
|
806
|
+
<floor_name>�ӥǥ�</floor_name>
|
807
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
808
|
+
<content_id>jux00067</content_id>
|
809
|
+
<product_id>jux00067</product_id>
|
810
|
+
<title>110cm J���å������ʥǥӥ塼���� ��߷α��</title>
|
811
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=jux00067/</URL>
|
812
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=jux00067/AFFILIATE_ID</affiliateURL>
|
813
|
+
<imageURL>
|
814
|
+
<list>http://pics.dmm.co.jp/digital/video/jux00067/jux00067pt.jpg</list>
|
815
|
+
<small>http://pics.dmm.co.jp/digital/video/jux00067/jux00067ps.jpg</small>
|
816
|
+
<large>http://pics.dmm.co.jp/digital/video/jux00067/jux00067pl.jpg</large>
|
817
|
+
</imageURL>
|
818
|
+
<sampleImageURL>
|
819
|
+
<sample_s>
|
820
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-1.jpg</image>
|
821
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-2.jpg</image>
|
822
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-3.jpg</image>
|
823
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-4.jpg</image>
|
824
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-5.jpg</image>
|
825
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-6.jpg</image>
|
826
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-7.jpg</image>
|
827
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-8.jpg</image>
|
828
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-9.jpg</image>
|
829
|
+
<image>http://pics.dmm.co.jp/digital/video/jux00067/jux00067-10.jpg</image>
|
830
|
+
</sample_s>
|
831
|
+
</sampleImageURL>
|
832
|
+
<prices>
|
833
|
+
<price>1980���</price>
|
834
|
+
<deliveries>
|
835
|
+
<delivery>
|
836
|
+
<type>stream</type>
|
837
|
+
<price>1980</price>
|
838
|
+
</delivery>
|
839
|
+
<delivery>
|
840
|
+
<type>download</type>
|
841
|
+
<price>1980</price>
|
842
|
+
</delivery>
|
843
|
+
<delivery>
|
844
|
+
<type>hd</type>
|
845
|
+
<price>2480</price>
|
846
|
+
</delivery>
|
847
|
+
<delivery>
|
848
|
+
<type>toaster</type>
|
849
|
+
<price>2100</price>
|
850
|
+
</delivery>
|
851
|
+
<delivery>
|
852
|
+
<type>androiddl</type>
|
853
|
+
<price>1980</price>
|
854
|
+
</delivery>
|
855
|
+
</deliveries>
|
856
|
+
</prices>
|
857
|
+
<date>2013-05-03 10:00:56</date>
|
858
|
+
<iteminfo>
|
859
|
+
<keyword>
|
860
|
+
<name>�Ͻ�</name>
|
861
|
+
<id>1014</id>
|
862
|
+
</keyword>
|
863
|
+
<keyword>
|
864
|
+
<name>�ͺ�</name>
|
865
|
+
<id>1039</id>
|
866
|
+
</keyword>
|
867
|
+
<keyword>
|
868
|
+
<name>����</name>
|
869
|
+
<id>2001</id>
|
870
|
+
</keyword>
|
871
|
+
<keyword>
|
872
|
+
<name>����</name>
|
873
|
+
<id>5060</id>
|
874
|
+
</keyword>
|
875
|
+
<keyword>
|
876
|
+
<name>�ǥӥ塼����</name>
|
877
|
+
<id>6006</id>
|
878
|
+
</keyword>
|
879
|
+
<keyword>
|
880
|
+
<name>�ǥ���</name>
|
881
|
+
<id>6004</id>
|
882
|
+
</keyword>
|
883
|
+
<keyword>
|
884
|
+
<name>�����ۿ�</name>
|
885
|
+
<id>6548</id>
|
886
|
+
</keyword>
|
887
|
+
<keyword>
|
888
|
+
<name>�ϥ��ӥ����</name>
|
889
|
+
<id>6533</id>
|
890
|
+
</keyword>
|
891
|
+
<keyword>
|
892
|
+
<name>DVD�ȡ�������</name>
|
893
|
+
<id>6529</id>
|
894
|
+
</keyword>
|
895
|
+
<maker>
|
896
|
+
<name>�ޥɥ��</name>
|
897
|
+
<id>2661</id>
|
898
|
+
</maker>
|
899
|
+
<actress>
|
900
|
+
<name>��߷α��</name>
|
901
|
+
<id>1020223</id>
|
902
|
+
</actress>
|
903
|
+
<actress>
|
904
|
+
<name>�褷������</name>
|
905
|
+
<id>1020223_ruby</id>
|
906
|
+
</actress>
|
907
|
+
<actress>
|
908
|
+
<name>av</name>
|
909
|
+
<id>1020223_classify</id>
|
910
|
+
</actress>
|
911
|
+
<director>
|
912
|
+
<name>Ʀ��Ʀ��Ϻ</name>
|
913
|
+
<id>107546</id>
|
914
|
+
</director>
|
915
|
+
<director>
|
916
|
+
<name>�ޤᤶ��ޤ����</name>
|
917
|
+
<id>107546_ruby</id>
|
918
|
+
</director>
|
919
|
+
<label>
|
920
|
+
<name>Madonna</name>
|
921
|
+
<id>2931</id>
|
922
|
+
</label>
|
923
|
+
</iteminfo>
|
924
|
+
</item>
|
925
|
+
<item>
|
926
|
+
<service_name>ư��</service_name>
|
927
|
+
<floor_name>�ӥǥ�</floor_name>
|
928
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
929
|
+
<content_id>soe00768</content_id>
|
930
|
+
<product_id>soe00768</product_id>
|
931
|
+
<title>�����αա�ǻ̩���å��� ���Ĥ���</title>
|
932
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=soe00768/</URL>
|
933
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=soe00768/AFFILIATE_ID</affiliateURL>
|
934
|
+
<imageURL>
|
935
|
+
<list>http://pics.dmm.co.jp/digital/video/soe00768/soe00768pt.jpg</list>
|
936
|
+
<small>http://pics.dmm.co.jp/digital/video/soe00768/soe00768ps.jpg</small>
|
937
|
+
<large>http://pics.dmm.co.jp/digital/video/soe00768/soe00768pl.jpg</large>
|
938
|
+
</imageURL>
|
939
|
+
<sampleImageURL>
|
940
|
+
<sample_s>
|
941
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-1.jpg</image>
|
942
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-2.jpg</image>
|
943
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-3.jpg</image>
|
944
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-4.jpg</image>
|
945
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-5.jpg</image>
|
946
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-6.jpg</image>
|
947
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-7.jpg</image>
|
948
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-8.jpg</image>
|
949
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-9.jpg</image>
|
950
|
+
<image>http://pics.dmm.co.jp/digital/video/soe00768/soe00768-10.jpg</image>
|
951
|
+
</sample_s>
|
952
|
+
</sampleImageURL>
|
953
|
+
<prices>
|
954
|
+
<price>300���</price>
|
955
|
+
<deliveries>
|
956
|
+
<delivery>
|
957
|
+
<type>stream</type>
|
958
|
+
<price>300</price>
|
959
|
+
</delivery>
|
960
|
+
<delivery>
|
961
|
+
<type>download</type>
|
962
|
+
<price>580</price>
|
963
|
+
</delivery>
|
964
|
+
<delivery>
|
965
|
+
<type>hd</type>
|
966
|
+
<price>980</price>
|
967
|
+
</delivery>
|
968
|
+
<delivery>
|
969
|
+
<type>androiddl</type>
|
970
|
+
<price>580</price>
|
971
|
+
</delivery>
|
972
|
+
</deliveries>
|
973
|
+
</prices>
|
974
|
+
<date>2012-04-29 10:00:57</date>
|
975
|
+
<iteminfo>
|
976
|
+
<keyword>
|
977
|
+
<name>�����ɥ롦��ǽ��</name>
|
978
|
+
<id>4118</id>
|
979
|
+
</keyword>
|
980
|
+
<keyword>
|
981
|
+
<name>���𡦥ϡ��ɷ�</name>
|
982
|
+
<id>4030</id>
|
983
|
+
</keyword>
|
984
|
+
<keyword>
|
985
|
+
<name>����</name>
|
986
|
+
<id>2001</id>
|
987
|
+
</keyword>
|
988
|
+
<keyword>
|
989
|
+
<name>�����</name>
|
990
|
+
<id>2008</id>
|
991
|
+
</keyword>
|
992
|
+
<keyword>
|
993
|
+
<name>ñ�κ���</name>
|
994
|
+
<id>4025</id>
|
995
|
+
</keyword>
|
996
|
+
<keyword>
|
997
|
+
<name>����⥶</name>
|
998
|
+
<id>6017</id>
|
999
|
+
</keyword>
|
1000
|
+
<keyword>
|
1001
|
+
<name>�����ۿ�</name>
|
1002
|
+
<id>6548</id>
|
1003
|
+
</keyword>
|
1004
|
+
<keyword>
|
1005
|
+
<name>�ϥ��ӥ����</name>
|
1006
|
+
<id>6533</id>
|
1007
|
+
</keyword>
|
1008
|
+
<series>
|
1009
|
+
<name>�����αա�ǻ̩���å���</name>
|
1010
|
+
<id>73254</id>
|
1011
|
+
</series>
|
1012
|
+
<maker>
|
1013
|
+
<name>������� �ʥ�С��������</name>
|
1014
|
+
<id>3152</id>
|
1015
|
+
</maker>
|
1016
|
+
<actress>
|
1017
|
+
<name>���Ĥ���</name>
|
1018
|
+
<id>1012352</id>
|
1019
|
+
</actress>
|
1020
|
+
<actress>
|
1021
|
+
<name>�Ĥ뤿����</name>
|
1022
|
+
<id>1012352_ruby</id>
|
1023
|
+
</actress>
|
1024
|
+
<actress>
|
1025
|
+
<name>av</name>
|
1026
|
+
<id>1012352_classify</id>
|
1027
|
+
</actress>
|
1028
|
+
<director>
|
1029
|
+
<name>����Ȳ�</name>
|
1030
|
+
<id>101159</id>
|
1031
|
+
</director>
|
1032
|
+
<director>
|
1033
|
+
<name>�ߤʤߤϤ���</name>
|
1034
|
+
<id>101159_ruby</id>
|
1035
|
+
</director>
|
1036
|
+
<label>
|
1037
|
+
<name>S1 NO.1 STYLE</name>
|
1038
|
+
<id>3474</id>
|
1039
|
+
</label>
|
1040
|
+
</iteminfo>
|
1041
|
+
</item>
|
1042
|
+
<item>
|
1043
|
+
<service_name>ư��</service_name>
|
1044
|
+
<floor_name>�ӥǥ�</floor_name>
|
1045
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1046
|
+
<content_id>13gg00187</content_id>
|
1047
|
+
<product_id>13gg00187</product_id>
|
1048
|
+
<title>�ܥ����繥�����礦�������H�ʥ������� ���İ���</title>
|
1049
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=13gg00187/</URL>
|
1050
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=13gg00187/AFFILIATE_ID</affiliateURL>
|
1051
|
+
<imageURL>
|
1052
|
+
<list>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187pt.jpg</list>
|
1053
|
+
<small>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187ps.jpg</small>
|
1054
|
+
<large>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187pl.jpg</large>
|
1055
|
+
</imageURL>
|
1056
|
+
<sampleImageURL>
|
1057
|
+
<sample_s>
|
1058
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-1.jpg</image>
|
1059
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-2.jpg</image>
|
1060
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-3.jpg</image>
|
1061
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-4.jpg</image>
|
1062
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-5.jpg</image>
|
1063
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-6.jpg</image>
|
1064
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-7.jpg</image>
|
1065
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-8.jpg</image>
|
1066
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-9.jpg</image>
|
1067
|
+
<image>http://pics.dmm.co.jp/digital/video/13gg00187/13gg00187-10.jpg</image>
|
1068
|
+
</sample_s>
|
1069
|
+
</sampleImageURL>
|
1070
|
+
<prices>
|
1071
|
+
<price>2480���</price>
|
1072
|
+
<deliveries>
|
1073
|
+
<delivery>
|
1074
|
+
<type>stream</type>
|
1075
|
+
<price>2480</price>
|
1076
|
+
</delivery>
|
1077
|
+
<delivery>
|
1078
|
+
<type>download</type>
|
1079
|
+
<price>2480</price>
|
1080
|
+
</delivery>
|
1081
|
+
<delivery>
|
1082
|
+
<type>hd</type>
|
1083
|
+
<price>2980</price>
|
1084
|
+
</delivery>
|
1085
|
+
<delivery>
|
1086
|
+
<type>toaster</type>
|
1087
|
+
<price>2800</price>
|
1088
|
+
</delivery>
|
1089
|
+
<delivery>
|
1090
|
+
<type>androiddl</type>
|
1091
|
+
<price>2480</price>
|
1092
|
+
</delivery>
|
1093
|
+
</deliveries>
|
1094
|
+
</prices>
|
1095
|
+
<date>2013-05-08 10:00:57</date>
|
1096
|
+
<iteminfo>
|
1097
|
+
<keyword>
|
1098
|
+
<name>������</name>
|
1099
|
+
<id>1033</id>
|
1100
|
+
</keyword>
|
1101
|
+
<keyword>
|
1102
|
+
<name>��������</name>
|
1103
|
+
<id>4122</id>
|
1104
|
+
</keyword>
|
1105
|
+
<keyword>
|
1106
|
+
<name>�ɥ��</name>
|
1107
|
+
<id>4114</id>
|
1108
|
+
</keyword>
|
1109
|
+
<keyword>
|
1110
|
+
<name>����</name>
|
1111
|
+
<id>2001</id>
|
1112
|
+
</keyword>
|
1113
|
+
<keyword>
|
1114
|
+
<name>���祿</name>
|
1115
|
+
<id>4058</id>
|
1116
|
+
</keyword>
|
1117
|
+
<keyword>
|
1118
|
+
<name>�ϥ��ӥ����</name>
|
1119
|
+
<id>6533</id>
|
1120
|
+
</keyword>
|
1121
|
+
<keyword>
|
1122
|
+
<name>DVD�ȡ�������</name>
|
1123
|
+
<id>6529</id>
|
1124
|
+
</keyword>
|
1125
|
+
<series>
|
1126
|
+
<name>���礦�������H�ʥ�������</name>
|
1127
|
+
<id>7518</id>
|
1128
|
+
</series>
|
1129
|
+
<maker>
|
1130
|
+
<name>���������������</name>
|
1131
|
+
<id>40014</id>
|
1132
|
+
</maker>
|
1133
|
+
<actress>
|
1134
|
+
<name>������</name>
|
1135
|
+
<id>1008956</id>
|
1136
|
+
</actress>
|
1137
|
+
<actress>
|
1138
|
+
<name>�����������</name>
|
1139
|
+
<id>1008956_ruby</id>
|
1140
|
+
</actress>
|
1141
|
+
<actress>
|
1142
|
+
<name>av</name>
|
1143
|
+
<id>1008956_classify</id>
|
1144
|
+
</actress>
|
1145
|
+
<label>
|
1146
|
+
<name>GLORY QUEST</name>
|
1147
|
+
<id>50</id>
|
1148
|
+
</label>
|
1149
|
+
</iteminfo>
|
1150
|
+
</item>
|
1151
|
+
<item>
|
1152
|
+
<service_name>ư��</service_name>
|
1153
|
+
<floor_name>�ӥǥ�</floor_name>
|
1154
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1155
|
+
<content_id>118mas00093</content_id>
|
1156
|
+
<product_id>118mas00093</product_id>
|
1157
|
+
<title>����Ū�����������ߤ����ޤ��� ACT.25</title>
|
1158
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118mas00093/</URL>
|
1159
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=118mas00093/AFFILIATE_ID</affiliateURL>
|
1160
|
+
<imageURL>
|
1161
|
+
<list>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093pt.jpg</list>
|
1162
|
+
<small>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093ps.jpg</small>
|
1163
|
+
<large>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093pl.jpg</large>
|
1164
|
+
</imageURL>
|
1165
|
+
<sampleImageURL>
|
1166
|
+
<sample_s>
|
1167
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-1.jpg</image>
|
1168
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-2.jpg</image>
|
1169
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-3.jpg</image>
|
1170
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-4.jpg</image>
|
1171
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-5.jpg</image>
|
1172
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-6.jpg</image>
|
1173
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-7.jpg</image>
|
1174
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-8.jpg</image>
|
1175
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-9.jpg</image>
|
1176
|
+
<image>http://pics.dmm.co.jp/digital/video/118mas00093/118mas00093-10.jpg</image>
|
1177
|
+
</sample_s>
|
1178
|
+
</sampleImageURL>
|
1179
|
+
<prices>
|
1180
|
+
<price>500���</price>
|
1181
|
+
<deliveries>
|
1182
|
+
<delivery>
|
1183
|
+
<type>stream</type>
|
1184
|
+
<price>500</price>
|
1185
|
+
</delivery>
|
1186
|
+
<delivery>
|
1187
|
+
<type>download</type>
|
1188
|
+
<price>1300</price>
|
1189
|
+
</delivery>
|
1190
|
+
</deliveries>
|
1191
|
+
</prices>
|
1192
|
+
<date>2013-01-12 10:01:00</date>
|
1193
|
+
<iteminfo>
|
1194
|
+
<keyword>
|
1195
|
+
<name>���</name>
|
1196
|
+
<id>5023</id>
|
1197
|
+
</keyword>
|
1198
|
+
<keyword>
|
1199
|
+
<name>ñ�κ���</name>
|
1200
|
+
<id>4025</id>
|
1201
|
+
</keyword>
|
1202
|
+
<keyword>
|
1203
|
+
<name>������</name>
|
1204
|
+
<id>1027</id>
|
1205
|
+
</keyword>
|
1206
|
+
<series>
|
1207
|
+
<name>����Ū�����������ߤ����ޤ���</name>
|
1208
|
+
<id>79983</id>
|
1209
|
+
</series>
|
1210
|
+
<maker>
|
1211
|
+
<name>�ץ쥹�ơ���</name>
|
1212
|
+
<id>40136</id>
|
1213
|
+
</maker>
|
1214
|
+
<actress>
|
1215
|
+
<name>����߽ܲ�</name>
|
1216
|
+
<id>1016835</id>
|
1217
|
+
</actress>
|
1218
|
+
<actress>
|
1219
|
+
<name>����ߤ����</name>
|
1220
|
+
<id>1016835_ruby</id>
|
1221
|
+
</actress>
|
1222
|
+
<actress>
|
1223
|
+
<name>av</name>
|
1224
|
+
<id>1016835_classify</id>
|
1225
|
+
</actress>
|
1226
|
+
<label>
|
1227
|
+
<name>�ޤ���</name>
|
1228
|
+
<id>20940</id>
|
1229
|
+
</label>
|
1230
|
+
</iteminfo>
|
1231
|
+
</item>
|
1232
|
+
<item>
|
1233
|
+
<service_name>ư��</service_name>
|
1234
|
+
<floor_name>�ӥǥ�</floor_name>
|
1235
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1236
|
+
<content_id>h_093crc00072</content_id>
|
1237
|
+
<product_id>h_093crc00072</product_id>
|
1238
|
+
<title>��ĥ�ǥӥ��ͥ��ۥƥ����ޤä����Ȥ�����ͤʤ顢ï�Ǥ���٤Ϸи�������������ϥ����ᥬ�͵Ҽ�ô������������⤵�졢̩����2�ͤ��ꡪ�⤷�����ơ�����˵�������Τ��ʡ��Ȼפä��ִ֡� ������</title>
|
1239
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=h_093crc00072/</URL>
|
1240
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=h_093crc00072/AFFILIATE_ID</affiliateURL>
|
1241
|
+
<imageURL>
|
1242
|
+
<list>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072pt.jpg</list>
|
1243
|
+
<small>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072ps.jpg</small>
|
1244
|
+
<large>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072pl.jpg</large>
|
1245
|
+
</imageURL>
|
1246
|
+
<sampleImageURL>
|
1247
|
+
<sample_s>
|
1248
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-1.jpg</image>
|
1249
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-2.jpg</image>
|
1250
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-3.jpg</image>
|
1251
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-4.jpg</image>
|
1252
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-5.jpg</image>
|
1253
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-6.jpg</image>
|
1254
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-7.jpg</image>
|
1255
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-8.jpg</image>
|
1256
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-9.jpg</image>
|
1257
|
+
<image>http://pics.dmm.co.jp/digital/video/h_093crc00072/h_093crc00072-10.jpg</image>
|
1258
|
+
</sample_s>
|
1259
|
+
</sampleImageURL>
|
1260
|
+
<prices>
|
1261
|
+
<price>1980���</price>
|
1262
|
+
<deliveries>
|
1263
|
+
<delivery>
|
1264
|
+
<type>stream</type>
|
1265
|
+
<price>1980</price>
|
1266
|
+
</delivery>
|
1267
|
+
<delivery>
|
1268
|
+
<type>download</type>
|
1269
|
+
<price>1980</price>
|
1270
|
+
</delivery>
|
1271
|
+
<delivery>
|
1272
|
+
<type>hd</type>
|
1273
|
+
<price>2480</price>
|
1274
|
+
</delivery>
|
1275
|
+
<delivery>
|
1276
|
+
<type>androiddl</type>
|
1277
|
+
<price>1980</price>
|
1278
|
+
</delivery>
|
1279
|
+
</deliveries>
|
1280
|
+
</prices>
|
1281
|
+
<date>2013-04-26 10:00:44</date>
|
1282
|
+
<iteminfo>
|
1283
|
+
<keyword>
|
1284
|
+
<name>ñ�κ���</name>
|
1285
|
+
<id>4025</id>
|
1286
|
+
</keyword>
|
1287
|
+
<keyword>
|
1288
|
+
<name>���</name>
|
1289
|
+
<id>2004</id>
|
1290
|
+
</keyword>
|
1291
|
+
<keyword>
|
1292
|
+
<name>���</name>
|
1293
|
+
<id>5023</id>
|
1294
|
+
</keyword>
|
1295
|
+
<keyword>
|
1296
|
+
<name>��������</name>
|
1297
|
+
<id>2006</id>
|
1298
|
+
</keyword>
|
1299
|
+
<keyword>
|
1300
|
+
<name>����</name>
|
1301
|
+
<id>2001</id>
|
1302
|
+
</keyword>
|
1303
|
+
<keyword>
|
1304
|
+
<name>�ϥ��ӥ����</name>
|
1305
|
+
<id>6533</id>
|
1306
|
+
</keyword>
|
1307
|
+
<maker>
|
1308
|
+
<name>�������</name>
|
1309
|
+
<id>45241</id>
|
1310
|
+
</maker>
|
1311
|
+
<actress>
|
1312
|
+
<name>������</name>
|
1313
|
+
<id>1019827</id>
|
1314
|
+
</actress>
|
1315
|
+
<actress>
|
1316
|
+
<name>�Ϥˤ夦�Τ���</name>
|
1317
|
+
<id>1019827_ruby</id>
|
1318
|
+
</actress>
|
1319
|
+
<actress>
|
1320
|
+
<name>av</name>
|
1321
|
+
<id>1019827_classify</id>
|
1322
|
+
</actress>
|
1323
|
+
<label>
|
1324
|
+
<name>�����������</name>
|
1325
|
+
<id>22824</id>
|
1326
|
+
</label>
|
1327
|
+
</iteminfo>
|
1328
|
+
</item>
|
1329
|
+
<item>
|
1330
|
+
<service_name>ư��</service_name>
|
1331
|
+
<floor_name>�ӥǥ�</floor_name>
|
1332
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1333
|
+
<content_id>midd00866</content_id>
|
1334
|
+
<product_id>midd00866</product_id>
|
1335
|
+
<title>�����Ͷ�ǥΡ��֥饢���ɥ� ǵ���̲�</title>
|
1336
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=midd00866/</URL>
|
1337
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=midd00866/AFFILIATE_ID</affiliateURL>
|
1338
|
+
<imageURL>
|
1339
|
+
<list>http://pics.dmm.co.jp/digital/video/midd00866/midd00866pt.jpg</list>
|
1340
|
+
<small>http://pics.dmm.co.jp/digital/video/midd00866/midd00866ps.jpg</small>
|
1341
|
+
<large>http://pics.dmm.co.jp/digital/video/midd00866/midd00866pl.jpg</large>
|
1342
|
+
</imageURL>
|
1343
|
+
<sampleImageURL>
|
1344
|
+
<sample_s>
|
1345
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-1.jpg</image>
|
1346
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-2.jpg</image>
|
1347
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-3.jpg</image>
|
1348
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-4.jpg</image>
|
1349
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-5.jpg</image>
|
1350
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-6.jpg</image>
|
1351
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-7.jpg</image>
|
1352
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-8.jpg</image>
|
1353
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-9.jpg</image>
|
1354
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00866/midd00866-10.jpg</image>
|
1355
|
+
</sample_s>
|
1356
|
+
</sampleImageURL>
|
1357
|
+
<prices>
|
1358
|
+
<price>300���</price>
|
1359
|
+
<deliveries>
|
1360
|
+
<delivery>
|
1361
|
+
<type>stream</type>
|
1362
|
+
<price>300</price>
|
1363
|
+
</delivery>
|
1364
|
+
<delivery>
|
1365
|
+
<type>download</type>
|
1366
|
+
<price>580</price>
|
1367
|
+
</delivery>
|
1368
|
+
<delivery>
|
1369
|
+
<type>hd</type>
|
1370
|
+
<price>980</price>
|
1371
|
+
</delivery>
|
1372
|
+
<delivery>
|
1373
|
+
<type>androiddl</type>
|
1374
|
+
<price>580</price>
|
1375
|
+
</delivery>
|
1376
|
+
</deliveries>
|
1377
|
+
</prices>
|
1378
|
+
<date>2012-04-26 10:00:45</date>
|
1379
|
+
<iteminfo>
|
1380
|
+
<keyword>
|
1381
|
+
<name>�����ɥ롦��ǽ��</name>
|
1382
|
+
<id>4118</id>
|
1383
|
+
</keyword>
|
1384
|
+
<keyword>
|
1385
|
+
<name>ñ�κ���</name>
|
1386
|
+
<id>4025</id>
|
1387
|
+
</keyword>
|
1388
|
+
<keyword>
|
1389
|
+
<name>�ǥ���</name>
|
1390
|
+
<id>6004</id>
|
1391
|
+
</keyword>
|
1392
|
+
<keyword>
|
1393
|
+
<name>�����ۿ�</name>
|
1394
|
+
<id>6548</id>
|
1395
|
+
</keyword>
|
1396
|
+
<keyword>
|
1397
|
+
<name>�ϥ��ӥ����</name>
|
1398
|
+
<id>6533</id>
|
1399
|
+
</keyword>
|
1400
|
+
<keyword>
|
1401
|
+
<name>�����ץ�</name>
|
1402
|
+
<id>4031</id>
|
1403
|
+
</keyword>
|
1404
|
+
<keyword>
|
1405
|
+
<name>�����ե���</name>
|
1406
|
+
<id>4009</id>
|
1407
|
+
</keyword>
|
1408
|
+
<keyword>
|
1409
|
+
<name>����</name>
|
1410
|
+
<id>2001</id>
|
1411
|
+
</keyword>
|
1412
|
+
<maker>
|
1413
|
+
<name>�ࡼ�ǥ�����</name>
|
1414
|
+
<id>1509</id>
|
1415
|
+
</maker>
|
1416
|
+
<actress>
|
1417
|
+
<name>ǵ���̲�</name>
|
1418
|
+
<id>1009910</id>
|
1419
|
+
</actress>
|
1420
|
+
<actress>
|
1421
|
+
<name>�ΤΤ��Ϥ�</name>
|
1422
|
+
<id>1009910_ruby</id>
|
1423
|
+
</actress>
|
1424
|
+
<actress>
|
1425
|
+
<name>av</name>
|
1426
|
+
<id>1009910_classify</id>
|
1427
|
+
</actress>
|
1428
|
+
<director>
|
1429
|
+
<name>�����</name>
|
1430
|
+
<id>101247</id>
|
1431
|
+
</director>
|
1432
|
+
<director>
|
1433
|
+
<name>�Ϥ�������礦</name>
|
1434
|
+
<id>101247_ruby</id>
|
1435
|
+
</director>
|
1436
|
+
<label>
|
1437
|
+
<name>MOODYZ DIVA</name>
|
1438
|
+
<id>4325</id>
|
1439
|
+
</label>
|
1440
|
+
</iteminfo>
|
1441
|
+
</item>
|
1442
|
+
<item>
|
1443
|
+
<service_name>ư��</service_name>
|
1444
|
+
<floor_name>�ӥǥ�</floor_name>
|
1445
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1446
|
+
<content_id>1star00425</content_id>
|
1447
|
+
<product_id>1star00425</product_id>
|
1448
|
+
<title>���������ǿͥ�����Ƹ�硪�������꤬ͥ����ɮ�����������ƥ���������ʥϡ��ȡ�</title>
|
1449
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=1star00425/</URL>
|
1450
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=1star00425/AFFILIATE_ID</affiliateURL>
|
1451
|
+
<imageURL>
|
1452
|
+
<list>http://pics.dmm.co.jp/digital/video/1star00425/1star00425pt.jpg</list>
|
1453
|
+
<small>http://pics.dmm.co.jp/digital/video/1star00425/1star00425ps.jpg</small>
|
1454
|
+
<large>http://pics.dmm.co.jp/digital/video/1star00425/1star00425pl.jpg</large>
|
1455
|
+
</imageURL>
|
1456
|
+
<sampleImageURL>
|
1457
|
+
<sample_s>
|
1458
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-1.jpg</image>
|
1459
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-2.jpg</image>
|
1460
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-3.jpg</image>
|
1461
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-4.jpg</image>
|
1462
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-5.jpg</image>
|
1463
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-6.jpg</image>
|
1464
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-7.jpg</image>
|
1465
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-8.jpg</image>
|
1466
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-9.jpg</image>
|
1467
|
+
<image>http://pics.dmm.co.jp/digital/video/1star00425/1star00425-10.jpg</image>
|
1468
|
+
</sample_s>
|
1469
|
+
</sampleImageURL>
|
1470
|
+
<prices>
|
1471
|
+
<price>1980���</price>
|
1472
|
+
<deliveries>
|
1473
|
+
<delivery>
|
1474
|
+
<type>stream</type>
|
1475
|
+
<price>1980</price>
|
1476
|
+
</delivery>
|
1477
|
+
<delivery>
|
1478
|
+
<type>download</type>
|
1479
|
+
<price>1980</price>
|
1480
|
+
</delivery>
|
1481
|
+
<delivery>
|
1482
|
+
<type>hd</type>
|
1483
|
+
<price>2480</price>
|
1484
|
+
</delivery>
|
1485
|
+
<delivery>
|
1486
|
+
<type>androiddl</type>
|
1487
|
+
<price>1980</price>
|
1488
|
+
</delivery>
|
1489
|
+
</deliveries>
|
1490
|
+
</prices>
|
1491
|
+
<date>2013-05-11 10:00:56</date>
|
1492
|
+
<iteminfo>
|
1493
|
+
<keyword>
|
1494
|
+
<name>�ϥ��ӥ����</name>
|
1495
|
+
<id>6533</id>
|
1496
|
+
</keyword>
|
1497
|
+
<keyword>
|
1498
|
+
<name>������</name>
|
1499
|
+
<id>1027</id>
|
1500
|
+
</keyword>
|
1501
|
+
<keyword>
|
1502
|
+
<name>Ƹ��</name>
|
1503
|
+
<id>4014</id>
|
1504
|
+
</keyword>
|
1505
|
+
<keyword>
|
1506
|
+
<name>ñ�κ���</name>
|
1507
|
+
<id>4025</id>
|
1508
|
+
</keyword>
|
1509
|
+
<maker>
|
1510
|
+
<name>SOD���ꥨ����</name>
|
1511
|
+
<id>45276</id>
|
1512
|
+
</maker>
|
1513
|
+
<actress>
|
1514
|
+
<name>�������</name>
|
1515
|
+
<id>1018026</id>
|
1516
|
+
</actress>
|
1517
|
+
<actress>
|
1518
|
+
<name>�����襤����</name>
|
1519
|
+
<id>1018026_ruby</id>
|
1520
|
+
</actress>
|
1521
|
+
<actress>
|
1522
|
+
<name>av</name>
|
1523
|
+
<id>1018026_classify</id>
|
1524
|
+
</actress>
|
1525
|
+
<director>
|
1526
|
+
<name>����������</name>
|
1527
|
+
<id>105611</id>
|
1528
|
+
</director>
|
1529
|
+
<director>
|
1530
|
+
<name>�ˤ��ʤ����ޤʤ�ݤ�</name>
|
1531
|
+
<id>105611_ruby</id>
|
1532
|
+
</director>
|
1533
|
+
<label>
|
1534
|
+
<name>SOD���ꥨ����</name>
|
1535
|
+
<id>4130</id>
|
1536
|
+
</label>
|
1537
|
+
</iteminfo>
|
1538
|
+
</item>
|
1539
|
+
<item>
|
1540
|
+
<service_name>ư��</service_name>
|
1541
|
+
<floor_name>�ӥǥ�</floor_name>
|
1542
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1543
|
+
<content_id>midd00968</content_id>
|
1544
|
+
<product_id>midd00968</product_id>
|
1545
|
+
<title>�������ȥ饯���� ��ä���Ͷ�ǥ�å��� �ᤰ��</title>
|
1546
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=midd00968/</URL>
|
1547
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=midd00968/AFFILIATE_ID</affiliateURL>
|
1548
|
+
<imageURL>
|
1549
|
+
<list>http://pics.dmm.co.jp/digital/video/midd00968/midd00968pt.jpg</list>
|
1550
|
+
<small>http://pics.dmm.co.jp/digital/video/midd00968/midd00968ps.jpg</small>
|
1551
|
+
<large>http://pics.dmm.co.jp/digital/video/midd00968/midd00968pl.jpg</large>
|
1552
|
+
</imageURL>
|
1553
|
+
<sampleImageURL>
|
1554
|
+
<sample_s>
|
1555
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-1.jpg</image>
|
1556
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-2.jpg</image>
|
1557
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-3.jpg</image>
|
1558
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-4.jpg</image>
|
1559
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-5.jpg</image>
|
1560
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-6.jpg</image>
|
1561
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-7.jpg</image>
|
1562
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-8.jpg</image>
|
1563
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-9.jpg</image>
|
1564
|
+
<image>http://pics.dmm.co.jp/digital/video/midd00968/midd00968-10.jpg</image>
|
1565
|
+
</sample_s>
|
1566
|
+
</sampleImageURL>
|
1567
|
+
<prices>
|
1568
|
+
<price>1980���</price>
|
1569
|
+
<deliveries>
|
1570
|
+
<delivery>
|
1571
|
+
<type>stream</type>
|
1572
|
+
<price>1980</price>
|
1573
|
+
</delivery>
|
1574
|
+
<delivery>
|
1575
|
+
<type>download</type>
|
1576
|
+
<price>1980</price>
|
1577
|
+
</delivery>
|
1578
|
+
<delivery>
|
1579
|
+
<type>hd</type>
|
1580
|
+
<price>2480</price>
|
1581
|
+
</delivery>
|
1582
|
+
<delivery>
|
1583
|
+
<type>androiddl</type>
|
1584
|
+
<price>1980</price>
|
1585
|
+
</delivery>
|
1586
|
+
</deliveries>
|
1587
|
+
</prices>
|
1588
|
+
<date>2013-05-11 10:00:50</date>
|
1589
|
+
<iteminfo>
|
1590
|
+
<keyword>
|
1591
|
+
<name>�ϥ��ӥ����</name>
|
1592
|
+
<id>6533</id>
|
1593
|
+
</keyword>
|
1594
|
+
<keyword>
|
1595
|
+
<name>�����ۿ�</name>
|
1596
|
+
<id>6548</id>
|
1597
|
+
</keyword>
|
1598
|
+
<keyword>
|
1599
|
+
<name>�ǥ���</name>
|
1600
|
+
<id>6004</id>
|
1601
|
+
</keyword>
|
1602
|
+
<keyword>
|
1603
|
+
<name>�Խ�</name>
|
1604
|
+
<id>1031</id>
|
1605
|
+
</keyword>
|
1606
|
+
<keyword>
|
1607
|
+
<name>���ȥ饯����</name>
|
1608
|
+
<id>1004</id>
|
1609
|
+
</keyword>
|
1610
|
+
<keyword>
|
1611
|
+
<name>�ѥ�����</name>
|
1612
|
+
<id>5019</id>
|
1613
|
+
</keyword>
|
1614
|
+
<keyword>
|
1615
|
+
<name>����</name>
|
1616
|
+
<id>2001</id>
|
1617
|
+
</keyword>
|
1618
|
+
<series>
|
1619
|
+
<name>�������ȥ饯���� ��ä���Ͷ�ǥ�å���</name>
|
1620
|
+
<id>207219</id>
|
1621
|
+
</series>
|
1622
|
+
<maker>
|
1623
|
+
<name>�ࡼ�ǥ�����</name>
|
1624
|
+
<id>1509</id>
|
1625
|
+
</maker>
|
1626
|
+
<actress>
|
1627
|
+
<name>�ᤰ���ƣ���ᤰ��</name>
|
1628
|
+
<id>22574</id>
|
1629
|
+
</actress>
|
1630
|
+
<actress>
|
1631
|
+
<name>�ᤰ��ʤդ�����ᤰ��</name>
|
1632
|
+
<id>22574_ruby</id>
|
1633
|
+
</actress>
|
1634
|
+
<actress>
|
1635
|
+
<name>av</name>
|
1636
|
+
<id>22574_classify</id>
|
1637
|
+
</actress>
|
1638
|
+
<director>
|
1639
|
+
<name>�����</name>
|
1640
|
+
<id>101247</id>
|
1641
|
+
</director>
|
1642
|
+
<director>
|
1643
|
+
<name>�Ϥ�������礦</name>
|
1644
|
+
<id>101247_ruby</id>
|
1645
|
+
</director>
|
1646
|
+
<label>
|
1647
|
+
<name>MOODYZ DIVA</name>
|
1648
|
+
<id>4325</id>
|
1649
|
+
</label>
|
1650
|
+
</iteminfo>
|
1651
|
+
<stock />
|
1652
|
+
</item>
|
1653
|
+
<item>
|
1654
|
+
<service_name>ư��</service_name>
|
1655
|
+
<floor_name>�ӥǥ�</floor_name>
|
1656
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1657
|
+
<content_id>ebod00277</content_id>
|
1658
|
+
<product_id>ebod00277</product_id>
|
1659
|
+
<title>�黣��H���å� ������</title>
|
1660
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=ebod00277/</URL>
|
1661
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=ebod00277/AFFILIATE_ID</affiliateURL>
|
1662
|
+
<imageURL>
|
1663
|
+
<list>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277pt.jpg</list>
|
1664
|
+
<small>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277ps.jpg</small>
|
1665
|
+
<large>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277pl.jpg</large>
|
1666
|
+
</imageURL>
|
1667
|
+
<sampleImageURL>
|
1668
|
+
<sample_s>
|
1669
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-1.jpg</image>
|
1670
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-2.jpg</image>
|
1671
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-3.jpg</image>
|
1672
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-4.jpg</image>
|
1673
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-5.jpg</image>
|
1674
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-6.jpg</image>
|
1675
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-7.jpg</image>
|
1676
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-8.jpg</image>
|
1677
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-9.jpg</image>
|
1678
|
+
<image>http://pics.dmm.co.jp/digital/video/ebod00277/ebod00277-10.jpg</image>
|
1679
|
+
</sample_s>
|
1680
|
+
</sampleImageURL>
|
1681
|
+
<prices>
|
1682
|
+
<price>1980���</price>
|
1683
|
+
<deliveries>
|
1684
|
+
<delivery>
|
1685
|
+
<type>stream</type>
|
1686
|
+
<price>1980</price>
|
1687
|
+
</delivery>
|
1688
|
+
<delivery>
|
1689
|
+
<type>download</type>
|
1690
|
+
<price>1980</price>
|
1691
|
+
</delivery>
|
1692
|
+
<delivery>
|
1693
|
+
<type>hd</type>
|
1694
|
+
<price>2480</price>
|
1695
|
+
</delivery>
|
1696
|
+
<delivery>
|
1697
|
+
<type>toaster</type>
|
1698
|
+
<price>2100</price>
|
1699
|
+
</delivery>
|
1700
|
+
<delivery>
|
1701
|
+
<type>androiddl</type>
|
1702
|
+
<price>1980</price>
|
1703
|
+
</delivery>
|
1704
|
+
</deliveries>
|
1705
|
+
</prices>
|
1706
|
+
<date>2013-05-11 10:00:58</date>
|
1707
|
+
<iteminfo>
|
1708
|
+
<keyword>
|
1709
|
+
<name>ñ�κ���</name>
|
1710
|
+
<id>4025</id>
|
1711
|
+
</keyword>
|
1712
|
+
<keyword>
|
1713
|
+
<name>����</name>
|
1714
|
+
<id>2001</id>
|
1715
|
+
</keyword>
|
1716
|
+
<keyword>
|
1717
|
+
<name>��������</name>
|
1718
|
+
<id>2006</id>
|
1719
|
+
</keyword>
|
1720
|
+
<keyword>
|
1721
|
+
<name>����</name>
|
1722
|
+
<id>102</id>
|
1723
|
+
</keyword>
|
1724
|
+
<keyword>
|
1725
|
+
<name>�����ۿ�</name>
|
1726
|
+
<id>6548</id>
|
1727
|
+
</keyword>
|
1728
|
+
<keyword>
|
1729
|
+
<name>�ϥ��ӥ����</name>
|
1730
|
+
<id>6533</id>
|
1731
|
+
</keyword>
|
1732
|
+
<keyword>
|
1733
|
+
<name>DVD�ȡ�������</name>
|
1734
|
+
<id>6529</id>
|
1735
|
+
</keyword>
|
1736
|
+
<series>
|
1737
|
+
<name>�黣������å�</name>
|
1738
|
+
<id>207208</id>
|
1739
|
+
</series>
|
1740
|
+
<maker>
|
1741
|
+
<name>E-BODY</name>
|
1742
|
+
<id>5032</id>
|
1743
|
+
</maker>
|
1744
|
+
<actress>
|
1745
|
+
<name>������</name>
|
1746
|
+
<id>1019827</id>
|
1747
|
+
</actress>
|
1748
|
+
<actress>
|
1749
|
+
<name>�Ϥˤ夦�Τ���</name>
|
1750
|
+
<id>1019827_ruby</id>
|
1751
|
+
</actress>
|
1752
|
+
<actress>
|
1753
|
+
<name>av</name>
|
1754
|
+
<id>1019827_classify</id>
|
1755
|
+
</actress>
|
1756
|
+
<director>
|
1757
|
+
<name>����Ȳ�</name>
|
1758
|
+
<id>101159</id>
|
1759
|
+
</director>
|
1760
|
+
<director>
|
1761
|
+
<name>�ߤʤߤϤ���</name>
|
1762
|
+
<id>101159_ruby</id>
|
1763
|
+
</director>
|
1764
|
+
<label>
|
1765
|
+
<name>E-BODY</name>
|
1766
|
+
<id>7898</id>
|
1767
|
+
</label>
|
1768
|
+
</iteminfo>
|
1769
|
+
<stock />
|
1770
|
+
</item>
|
1771
|
+
<item>
|
1772
|
+
<service_name>ư��</service_name>
|
1773
|
+
<floor_name>�ӥǥ�</floor_name>
|
1774
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
1775
|
+
<content_id>49cadv00321</content_id>
|
1776
|
+
<product_id>49cadv00321</product_id>
|
1777
|
+
<title>THE BEST ���ߤ����ޤ��� 50��8����DX</title>
|
1778
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=49cadv00321/</URL>
|
1779
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=49cadv00321/AFFILIATE_ID</affiliateURL>
|
1780
|
+
<imageURL>
|
1781
|
+
<list>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321pt.jpg</list>
|
1782
|
+
<small>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321ps.jpg</small>
|
1783
|
+
<large>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321pl.jpg</large>
|
1784
|
+
</imageURL>
|
1785
|
+
<sampleImageURL>
|
1786
|
+
<sample_s>
|
1787
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-1.jpg</image>
|
1788
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-2.jpg</image>
|
1789
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-3.jpg</image>
|
1790
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-4.jpg</image>
|
1791
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-5.jpg</image>
|
1792
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-6.jpg</image>
|
1793
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-7.jpg</image>
|
1794
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-8.jpg</image>
|
1795
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-9.jpg</image>
|
1796
|
+
<image>http://pics.dmm.co.jp/digital/video/49cadv00321/49cadv00321-10.jpg</image>
|
1797
|
+
</sample_s>
|
1798
|
+
</sampleImageURL>
|
1799
|
+
<prices>
|
1800
|
+
<price>500���</price>
|
1801
|
+
<deliveries>
|
1802
|
+
<delivery>
|
1803
|
+
<type>stream</type>
|
1804
|
+
<price>500</price>
|
1805
|
+
</delivery>
|
1806
|
+
<delivery>
|
1807
|
+
<type>download</type>
|
1808
|
+
<price>980</price>
|
1809
|
+
</delivery>
|
1810
|
+
<delivery>
|
1811
|
+
<type>androiddl</type>
|
1812
|
+
<price>980</price>
|
1813
|
+
</delivery>
|
1814
|
+
</deliveries>
|
1815
|
+
</prices>
|
1816
|
+
<date>2012-06-04 10:00:26</date>
|
1817
|
+
<iteminfo>
|
1818
|
+
<keyword>
|
1819
|
+
<name>�٥��ȡ�������</name>
|
1820
|
+
<id>6003</id>
|
1821
|
+
</keyword>
|
1822
|
+
<keyword>
|
1823
|
+
<name>4���ְʾ����</name>
|
1824
|
+
<id>6012</id>
|
1825
|
+
</keyword>
|
1826
|
+
<keyword>
|
1827
|
+
<name>����</name>
|
1828
|
+
<id>2001</id>
|
1829
|
+
</keyword>
|
1830
|
+
<keyword>
|
1831
|
+
<name>�����</name>
|
1832
|
+
<id>2008</id>
|
1833
|
+
</keyword>
|
1834
|
+
<keyword>
|
1835
|
+
<name>�����</name>
|
1836
|
+
<id>38</id>
|
1837
|
+
</keyword>
|
1838
|
+
<series>
|
1839
|
+
<name>���� ���ߤ����ޤ���</name>
|
1840
|
+
<id>77293</id>
|
1841
|
+
</series>
|
1842
|
+
<maker>
|
1843
|
+
<name>���ꥹ�������</name>
|
1844
|
+
<id>40035</id>
|
1845
|
+
</maker>
|
1846
|
+
<actress>
|
1847
|
+
<name>�ߤŤʤ줤�ʤߤ��ʤ줤��</name>
|
1848
|
+
<id>26375</id>
|
1849
|
+
</actress>
|
1850
|
+
<actress>
|
1851
|
+
<name>�ߤŤʤ줤�ʤߤ��ʤ줤��</name>
|
1852
|
+
<id>26375_ruby</id>
|
1853
|
+
</actress>
|
1854
|
+
<actress>
|
1855
|
+
<name>av</name>
|
1856
|
+
<id>26375_classify</id>
|
1857
|
+
</actress>
|
1858
|
+
<actress>
|
1859
|
+
<name>�������á�ע�Ĥޤꤳ��</name>
|
1860
|
+
<id>1002916</id>
|
1861
|
+
</actress>
|
1862
|
+
<actress>
|
1863
|
+
<name>��������ߤ��ʤҤ����ޤꤳ��</name>
|
1864
|
+
<id>1002916_ruby</id>
|
1865
|
+
</actress>
|
1866
|
+
<actress>
|
1867
|
+
<name>av</name>
|
1868
|
+
<id>1002916_classify</id>
|
1869
|
+
</actress>
|
1870
|
+
<actress>
|
1871
|
+
<name>���֤��</name>
|
1872
|
+
<id>28123</id>
|
1873
|
+
</actress>
|
1874
|
+
<actress>
|
1875
|
+
<name>�������֤��</name>
|
1876
|
+
<id>28123_ruby</id>
|
1877
|
+
</actress>
|
1878
|
+
<actress>
|
1879
|
+
<name>av</name>
|
1880
|
+
<id>28123_classify</id>
|
1881
|
+
</actress>
|
1882
|
+
<actress>
|
1883
|
+
<name>�β�ɴ��</name>
|
1884
|
+
<id>1006297</id>
|
1885
|
+
</actress>
|
1886
|
+
<actress>
|
1887
|
+
<name>�ˤ��ʤ�⤫</name>
|
1888
|
+
<id>1006297_ruby</id>
|
1889
|
+
</actress>
|
1890
|
+
<actress>
|
1891
|
+
<name>av</name>
|
1892
|
+
<id>1006297_classify</id>
|
1893
|
+
</actress>
|
1894
|
+
<actress>
|
1895
|
+
<name>���դߤ줤��ƣ��ޤ���</name>
|
1896
|
+
<id>1003501</id>
|
1897
|
+
</actress>
|
1898
|
+
<actress>
|
1899
|
+
<name>�����Ϥߤ줤�ʤդ������ޤ���</name>
|
1900
|
+
<id>1003501_ruby</id>
|
1901
|
+
</actress>
|
1902
|
+
<actress>
|
1903
|
+
<name>av</name>
|
1904
|
+
<id>1003501_classify</id>
|
1905
|
+
</actress>
|
1906
|
+
<actress>
|
1907
|
+
<name>�������</name>
|
1908
|
+
<id>1001322</id>
|
1909
|
+
</actress>
|
1910
|
+
<actress>
|
1911
|
+
<name>�����ͤ��</name>
|
1912
|
+
<id>1001322_ruby</id>
|
1913
|
+
</actress>
|
1914
|
+
<actress>
|
1915
|
+
<name>av</name>
|
1916
|
+
<id>1001322_classify</id>
|
1917
|
+
</actress>
|
1918
|
+
<actress>
|
1919
|
+
<name>���ڤ��Τ�</name>
|
1920
|
+
<id>28210</id>
|
1921
|
+
</actress>
|
1922
|
+
<actress>
|
1923
|
+
<name>�Ϥʤ����Τ�</name>
|
1924
|
+
<id>28210_ruby</id>
|
1925
|
+
</actress>
|
1926
|
+
<actress>
|
1927
|
+
<name>av</name>
|
1928
|
+
<id>28210_classify</id>
|
1929
|
+
</actress>
|
1930
|
+
<actress>
|
1931
|
+
<name>���礤����</name>
|
1932
|
+
<id>25849</id>
|
1933
|
+
</actress>
|
1934
|
+
<actress>
|
1935
|
+
<name>�����ʤ�������</name>
|
1936
|
+
<id>25849_ruby</id>
|
1937
|
+
</actress>
|
1938
|
+
<actress>
|
1939
|
+
<name>av</name>
|
1940
|
+
<id>25849_classify</id>
|
1941
|
+
</actress>
|
1942
|
+
<actress>
|
1943
|
+
<name>�ٱ�����</name>
|
1944
|
+
<id>1003365</id>
|
1945
|
+
</actress>
|
1946
|
+
<actress>
|
1947
|
+
<name>�Ȥߤʤ��ߤ�</name>
|
1948
|
+
<id>1003365_ruby</id>
|
1949
|
+
</actress>
|
1950
|
+
<actress>
|
1951
|
+
<name>av</name>
|
1952
|
+
<id>1003365_classify</id>
|
1953
|
+
</actress>
|
1954
|
+
<actress>
|
1955
|
+
<name>��Ȩ����</name>
|
1956
|
+
<id>1003795</id>
|
1957
|
+
</actress>
|
1958
|
+
<actress>
|
1959
|
+
<name>���ȤϤ��ꤪ</name>
|
1960
|
+
<id>1003795_ruby</id>
|
1961
|
+
</actress>
|
1962
|
+
<actress>
|
1963
|
+
<name>av</name>
|
1964
|
+
<id>1003795_classify</id>
|
1965
|
+
</actress>
|
1966
|
+
<actress>
|
1967
|
+
<name>ͭ¼���</name>
|
1968
|
+
<id>1007544</id>
|
1969
|
+
</actress>
|
1970
|
+
<actress>
|
1971
|
+
<name>���������</name>
|
1972
|
+
<id>1007544_ruby</id>
|
1973
|
+
</actress>
|
1974
|
+
<actress>
|
1975
|
+
<name>av</name>
|
1976
|
+
<id>1007544_classify</id>
|
1977
|
+
</actress>
|
1978
|
+
<actress>
|
1979
|
+
<name>���ڤߤʤ�</name>
|
1980
|
+
<id>1007551</id>
|
1981
|
+
</actress>
|
1982
|
+
<actress>
|
1983
|
+
<name>�ޤ��ߤʤ�</name>
|
1984
|
+
<id>1007551_ruby</id>
|
1985
|
+
</actress>
|
1986
|
+
<actress>
|
1987
|
+
<name>av</name>
|
1988
|
+
<id>1007551_classify</id>
|
1989
|
+
</actress>
|
1990
|
+
<actress>
|
1991
|
+
<name>�滳���ꥵ</name>
|
1992
|
+
<id>29313</id>
|
1993
|
+
</actress>
|
1994
|
+
<actress>
|
1995
|
+
<name>�ʤ���ޤ��ꤵ</name>
|
1996
|
+
<id>29313_ruby</id>
|
1997
|
+
</actress>
|
1998
|
+
<actress>
|
1999
|
+
<name>av</name>
|
2000
|
+
<id>29313_classify</id>
|
2001
|
+
</actress>
|
2002
|
+
<actress>
|
2003
|
+
<name>����ꤵ</name>
|
2004
|
+
<id>26440</id>
|
2005
|
+
</actress>
|
2006
|
+
<actress>
|
2007
|
+
<name>�Ĥ��Τꤵ</name>
|
2008
|
+
<id>26440_ruby</id>
|
2009
|
+
</actress>
|
2010
|
+
<actress>
|
2011
|
+
<name>av</name>
|
2012
|
+
<id>26440_classify</id>
|
2013
|
+
</actress>
|
2014
|
+
<actress>
|
2015
|
+
<name>���������ʤ����ߡ�</name>
|
2016
|
+
<id>28135</id>
|
2017
|
+
</actress>
|
2018
|
+
<actress>
|
2019
|
+
<name>�ʤ뤻�����ߡʤ����ߡ�</name>
|
2020
|
+
<id>28135_ruby</id>
|
2021
|
+
</actress>
|
2022
|
+
<actress>
|
2023
|
+
<name>av</name>
|
2024
|
+
<id>28135_classify</id>
|
2025
|
+
</actress>
|
2026
|
+
<actress>
|
2027
|
+
<name>�Ĥܤ�</name>
|
2028
|
+
<id>17802</id>
|
2029
|
+
</actress>
|
2030
|
+
<actress>
|
2031
|
+
<name>�Ĥܤ�</name>
|
2032
|
+
<id>17802_ruby</id>
|
2033
|
+
</actress>
|
2034
|
+
<actress>
|
2035
|
+
<name>av</name>
|
2036
|
+
<id>17802_classify</id>
|
2037
|
+
</actress>
|
2038
|
+
<actress>
|
2039
|
+
<name>�����ߤ�</name>
|
2040
|
+
<id>1001189</id>
|
2041
|
+
</actress>
|
2042
|
+
<actress>
|
2043
|
+
<name>�ޤĤ��ߤ�</name>
|
2044
|
+
<id>1001189_ruby</id>
|
2045
|
+
</actress>
|
2046
|
+
<actress>
|
2047
|
+
<name>av</name>
|
2048
|
+
<id>1001189_classify</id>
|
2049
|
+
</actress>
|
2050
|
+
<actress>
|
2051
|
+
<name>���</name>
|
2052
|
+
<id>26488</id>
|
2053
|
+
</actress>
|
2054
|
+
<actress>
|
2055
|
+
<name>�ᤰ�ߤ���</name>
|
2056
|
+
<id>26488_ruby</id>
|
2057
|
+
</actress>
|
2058
|
+
<actress>
|
2059
|
+
<name>av</name>
|
2060
|
+
<id>26488_classify</id>
|
2061
|
+
</actress>
|
2062
|
+
<actress>
|
2063
|
+
<name>�椦�����䤫</name>
|
2064
|
+
<id>1007053</id>
|
2065
|
+
</actress>
|
2066
|
+
<actress>
|
2067
|
+
<name>�椦�����䤫</name>
|
2068
|
+
<id>1007053_ruby</id>
|
2069
|
+
</actress>
|
2070
|
+
<actress>
|
2071
|
+
<name>av</name>
|
2072
|
+
<id>1007053_classify</id>
|
2073
|
+
</actress>
|
2074
|
+
<actress>
|
2075
|
+
<name>�ݷ�Ҥ���</name>
|
2076
|
+
<id>1003367</id>
|
2077
|
+
</actress>
|
2078
|
+
<actress>
|
2079
|
+
<name>��ߤŤ��Ҥ���</name>
|
2080
|
+
<id>1003367_ruby</id>
|
2081
|
+
</actress>
|
2082
|
+
<actress>
|
2083
|
+
<name>av</name>
|
2084
|
+
<id>1003367_classify</id>
|
2085
|
+
</actress>
|
2086
|
+
<actress>
|
2087
|
+
<name>�����¹�</name>
|
2088
|
+
<id>1008817</id>
|
2089
|
+
</actress>
|
2090
|
+
<actress>
|
2091
|
+
<name>�������ޤ狼</name>
|
2092
|
+
<id>1008817_ruby</id>
|
2093
|
+
</actress>
|
2094
|
+
<actress>
|
2095
|
+
<name>av</name>
|
2096
|
+
<id>1008817_classify</id>
|
2097
|
+
</actress>
|
2098
|
+
<actress>
|
2099
|
+
<name>�����ʤ�</name>
|
2100
|
+
<id>1009811</id>
|
2101
|
+
</actress>
|
2102
|
+
<actress>
|
2103
|
+
<name>�����ߤʤ�</name>
|
2104
|
+
<id>1009811_ruby</id>
|
2105
|
+
</actress>
|
2106
|
+
<actress>
|
2107
|
+
<name>av</name>
|
2108
|
+
<id>1009811_classify</id>
|
2109
|
+
</actress>
|
2110
|
+
<actress>
|
2111
|
+
<name>�պ餢����</name>
|
2112
|
+
<id>17381</id>
|
2113
|
+
</actress>
|
2114
|
+
<actress>
|
2115
|
+
<name>�Ϥ뤵��������</name>
|
2116
|
+
<id>17381_ruby</id>
|
2117
|
+
</actress>
|
2118
|
+
<actress>
|
2119
|
+
<name>av</name>
|
2120
|
+
<id>17381_classify</id>
|
2121
|
+
</actress>
|
2122
|
+
<actress>
|
2123
|
+
<name>����Ʒ</name>
|
2124
|
+
<id>1008268</id>
|
2125
|
+
</actress>
|
2126
|
+
<actress>
|
2127
|
+
<name>��������ҤȤ�</name>
|
2128
|
+
<id>1008268_ruby</id>
|
2129
|
+
</actress>
|
2130
|
+
<actress>
|
2131
|
+
<name>av</name>
|
2132
|
+
<id>1008268_classify</id>
|
2133
|
+
</actress>
|
2134
|
+
<actress>
|
2135
|
+
<name>����</name>
|
2136
|
+
<id>17874</id>
|
2137
|
+
</actress>
|
2138
|
+
<actress>
|
2139
|
+
<name>�����Ҥʤ���</name>
|
2140
|
+
<id>17874_ruby</id>
|
2141
|
+
</actress>
|
2142
|
+
<actress>
|
2143
|
+
<name>av</name>
|
2144
|
+
<id>17874_classify</id>
|
2145
|
+
</actress>
|
2146
|
+
<actress>
|
2147
|
+
<name>����ͤ���</name>
|
2148
|
+
<id>1001816</id>
|
2149
|
+
</actress>
|
2150
|
+
<actress>
|
2151
|
+
<name>�������ޤͤ���</name>
|
2152
|
+
<id>1001816_ruby</id>
|
2153
|
+
</actress>
|
2154
|
+
<actress>
|
2155
|
+
<name>av</name>
|
2156
|
+
<id>1001816_classify</id>
|
2157
|
+
</actress>
|
2158
|
+
<actress>
|
2159
|
+
<name>��������</name>
|
2160
|
+
<id>20772</id>
|
2161
|
+
</actress>
|
2162
|
+
<actress>
|
2163
|
+
<name>�ʤ�������</name>
|
2164
|
+
<id>20772_ruby</id>
|
2165
|
+
</actress>
|
2166
|
+
<actress>
|
2167
|
+
<name>av</name>
|
2168
|
+
<id>20772_classify</id>
|
2169
|
+
</actress>
|
2170
|
+
<actress>
|
2171
|
+
<name>��ǵ���������ޤ���</name>
|
2172
|
+
<id>24075</id>
|
2173
|
+
</actress>
|
2174
|
+
<actress>
|
2175
|
+
<name>�ۤ��Τ�����ʤߤʤߤޤ���</name>
|
2176
|
+
<id>24075_ruby</id>
|
2177
|
+
</actress>
|
2178
|
+
<actress>
|
2179
|
+
<name>av</name>
|
2180
|
+
<id>24075_classify</id>
|
2181
|
+
</actress>
|
2182
|
+
<actress>
|
2183
|
+
<name>����������</name>
|
2184
|
+
<id>1000404</id>
|
2185
|
+
</actress>
|
2186
|
+
<actress>
|
2187
|
+
<name>����夦������</name>
|
2188
|
+
<id>1000404_ruby</id>
|
2189
|
+
</actress>
|
2190
|
+
<actress>
|
2191
|
+
<name>av</name>
|
2192
|
+
<id>1000404_classify</id>
|
2193
|
+
</actress>
|
2194
|
+
<actress>
|
2195
|
+
<name>¼���ޤ��</name>
|
2196
|
+
<id>1003059</id>
|
2197
|
+
</actress>
|
2198
|
+
<actress>
|
2199
|
+
<name>���ˤ��ޤ��</name>
|
2200
|
+
<id>1003059_ruby</id>
|
2201
|
+
</actress>
|
2202
|
+
<actress>
|
2203
|
+
<name>av</name>
|
2204
|
+
<id>1003059_classify</id>
|
2205
|
+
</actress>
|
2206
|
+
<actress>
|
2207
|
+
<name>��ޤ�</name>
|
2208
|
+
<id>1005105</id>
|
2209
|
+
</actress>
|
2210
|
+
<actress>
|
2211
|
+
<name>�������ޤ�</name>
|
2212
|
+
<id>1005105_ruby</id>
|
2213
|
+
</actress>
|
2214
|
+
<actress>
|
2215
|
+
<name>av</name>
|
2216
|
+
<id>1005105_classify</id>
|
2217
|
+
</actress>
|
2218
|
+
<actress>
|
2219
|
+
<name>���椵�䤫</name>
|
2220
|
+
<id>1001640</id>
|
2221
|
+
</actress>
|
2222
|
+
<actress>
|
2223
|
+
<name>���ޤ����䤫</name>
|
2224
|
+
<id>1001640_ruby</id>
|
2225
|
+
</actress>
|
2226
|
+
<actress>
|
2227
|
+
<name>av</name>
|
2228
|
+
<id>1001640_classify</id>
|
2229
|
+
</actress>
|
2230
|
+
<actress>
|
2231
|
+
<name>�����ߤ�</name>
|
2232
|
+
<id>28000</id>
|
2233
|
+
</actress>
|
2234
|
+
<actress>
|
2235
|
+
<name>������ߤ�</name>
|
2236
|
+
<id>28000_ruby</id>
|
2237
|
+
</actress>
|
2238
|
+
<actress>
|
2239
|
+
<name>av</name>
|
2240
|
+
<id>28000_classify</id>
|
2241
|
+
</actress>
|
2242
|
+
<actress>
|
2243
|
+
<name>���Τ</name>
|
2244
|
+
<id>30655</id>
|
2245
|
+
</actress>
|
2246
|
+
<actress>
|
2247
|
+
<name>�ʤ��Τ�����</name>
|
2248
|
+
<id>30655_ruby</id>
|
2249
|
+
</actress>
|
2250
|
+
<actress>
|
2251
|
+
<name>av</name>
|
2252
|
+
<id>30655_classify</id>
|
2253
|
+
</actress>
|
2254
|
+
<actress>
|
2255
|
+
<name>������</name>
|
2256
|
+
<id>1003140</id>
|
2257
|
+
</actress>
|
2258
|
+
<actress>
|
2259
|
+
<name>������</name>
|
2260
|
+
<id>1003140_ruby</id>
|
2261
|
+
</actress>
|
2262
|
+
<actress>
|
2263
|
+
<name>av</name>
|
2264
|
+
<id>1003140_classify</id>
|
2265
|
+
</actress>
|
2266
|
+
<actress>
|
2267
|
+
<name>���ڥϥ�</name>
|
2268
|
+
<id>1001199</id>
|
2269
|
+
</actress>
|
2270
|
+
<actress>
|
2271
|
+
<name>�����餮�Ϥ�</name>
|
2272
|
+
<id>1001199_ruby</id>
|
2273
|
+
</actress>
|
2274
|
+
<actress>
|
2275
|
+
<name>av</name>
|
2276
|
+
<id>1001199_classify</id>
|
2277
|
+
</actress>
|
2278
|
+
<actress>
|
2279
|
+
<name>ī�Ҥ��Ȥ�</name>
|
2280
|
+
<id>1006364</id>
|
2281
|
+
</actress>
|
2282
|
+
<actress>
|
2283
|
+
<name>�������餳�Ȥ�</name>
|
2284
|
+
<id>1006364_ruby</id>
|
2285
|
+
</actress>
|
2286
|
+
<actress>
|
2287
|
+
<name>av</name>
|
2288
|
+
<id>1006364_classify</id>
|
2289
|
+
</actress>
|
2290
|
+
<actress>
|
2291
|
+
<name>��뤫����</name>
|
2292
|
+
<id>1007953</id>
|
2293
|
+
</actress>
|
2294
|
+
<actress>
|
2295
|
+
<name>��������������</name>
|
2296
|
+
<id>1007953_ruby</id>
|
2297
|
+
</actress>
|
2298
|
+
<actress>
|
2299
|
+
<name>av</name>
|
2300
|
+
<id>1007953_classify</id>
|
2301
|
+
</actress>
|
2302
|
+
<label>
|
2303
|
+
<name>CRYSTAL EX</name>
|
2304
|
+
<id>7111</id>
|
2305
|
+
</label>
|
2306
|
+
</iteminfo>
|
2307
|
+
</item>
|
2308
|
+
<item>
|
2309
|
+
<service_name>ư��</service_name>
|
2310
|
+
<floor_name>�ӥǥ�</floor_name>
|
2311
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
2312
|
+
<content_id>pgd00584</content_id>
|
2313
|
+
<product_id>pgd00584</product_id>
|
2314
|
+
<title>�֥�å���Ҥ�������OL ����˽��ϻ������ ���ȤҤ�</title>
|
2315
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=pgd00584/</URL>
|
2316
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=pgd00584/AFFILIATE_ID</affiliateURL>
|
2317
|
+
<imageURL>
|
2318
|
+
<list>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584pt.jpg</list>
|
2319
|
+
<small>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584ps.jpg</small>
|
2320
|
+
<large>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584pl.jpg</large>
|
2321
|
+
</imageURL>
|
2322
|
+
<sampleImageURL>
|
2323
|
+
<sample_s>
|
2324
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-1.jpg</image>
|
2325
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-2.jpg</image>
|
2326
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-3.jpg</image>
|
2327
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-4.jpg</image>
|
2328
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-5.jpg</image>
|
2329
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-6.jpg</image>
|
2330
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-7.jpg</image>
|
2331
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-8.jpg</image>
|
2332
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-9.jpg</image>
|
2333
|
+
<image>http://pics.dmm.co.jp/digital/video/pgd00584/pgd00584-10.jpg</image>
|
2334
|
+
</sample_s>
|
2335
|
+
</sampleImageURL>
|
2336
|
+
<prices>
|
2337
|
+
<price>300���</price>
|
2338
|
+
<deliveries>
|
2339
|
+
<delivery>
|
2340
|
+
<type>stream</type>
|
2341
|
+
<price>300</price>
|
2342
|
+
</delivery>
|
2343
|
+
<delivery>
|
2344
|
+
<type>download</type>
|
2345
|
+
<price>580</price>
|
2346
|
+
</delivery>
|
2347
|
+
<delivery>
|
2348
|
+
<type>hd</type>
|
2349
|
+
<price>980</price>
|
2350
|
+
</delivery>
|
2351
|
+
<delivery>
|
2352
|
+
<type>androiddl</type>
|
2353
|
+
<price>580</price>
|
2354
|
+
</delivery>
|
2355
|
+
</deliveries>
|
2356
|
+
</prices>
|
2357
|
+
<date>2012-04-29 10:00:31</date>
|
2358
|
+
<iteminfo>
|
2359
|
+
<keyword>
|
2360
|
+
<name>�ϥ��ӥ����</name>
|
2361
|
+
<id>6533</id>
|
2362
|
+
</keyword>
|
2363
|
+
<keyword>
|
2364
|
+
<name>�����ۿ�</name>
|
2365
|
+
<id>6548</id>
|
2366
|
+
</keyword>
|
2367
|
+
<keyword>
|
2368
|
+
<name>ñ�κ���</name>
|
2369
|
+
<id>4025</id>
|
2370
|
+
</keyword>
|
2371
|
+
<keyword>
|
2372
|
+
<name>Ĵ��������</name>
|
2373
|
+
<id>4029</id>
|
2374
|
+
</keyword>
|
2375
|
+
<keyword>
|
2376
|
+
<name>�ǥ���</name>
|
2377
|
+
<id>6004</id>
|
2378
|
+
</keyword>
|
2379
|
+
<keyword>
|
2380
|
+
<name>���</name>
|
2381
|
+
<id>5023</id>
|
2382
|
+
</keyword>
|
2383
|
+
<keyword>
|
2384
|
+
<name>OL</name>
|
2385
|
+
<id>1001</id>
|
2386
|
+
</keyword>
|
2387
|
+
<keyword>
|
2388
|
+
<name>����</name>
|
2389
|
+
<id>2001</id>
|
2390
|
+
</keyword>
|
2391
|
+
<keyword>
|
2392
|
+
<name>3P��4P</name>
|
2393
|
+
<id>5022</id>
|
2394
|
+
</keyword>
|
2395
|
+
<keyword>
|
2396
|
+
<name>�</name>
|
2397
|
+
<id>27</id>
|
2398
|
+
</keyword>
|
2399
|
+
<series>
|
2400
|
+
<name>�֥�å���ҤΡ���</name>
|
2401
|
+
<id>203903</id>
|
2402
|
+
</series>
|
2403
|
+
<maker>
|
2404
|
+
<name>�ץ�ߥ���</name>
|
2405
|
+
<id>3890</id>
|
2406
|
+
</maker>
|
2407
|
+
<actress>
|
2408
|
+
<name>���ȤҤ�</name>
|
2409
|
+
<id>1008494</id>
|
2410
|
+
</actress>
|
2411
|
+
<actress>
|
2412
|
+
<name>�����褷�Ҥ�</name>
|
2413
|
+
<id>1008494_ruby</id>
|
2414
|
+
</actress>
|
2415
|
+
<actress>
|
2416
|
+
<name>av</name>
|
2417
|
+
<id>1008494_classify</id>
|
2418
|
+
</actress>
|
2419
|
+
<director>
|
2420
|
+
<name>���祦����</name>
|
2421
|
+
<id>101123</id>
|
2422
|
+
</director>
|
2423
|
+
<director>
|
2424
|
+
<name>���礦����</name>
|
2425
|
+
<id>101123_ruby</id>
|
2426
|
+
</director>
|
2427
|
+
<label>
|
2428
|
+
<name>GLAMOROUS</name>
|
2429
|
+
<id>5365</id>
|
2430
|
+
</label>
|
2431
|
+
</iteminfo>
|
2432
|
+
</item>
|
2433
|
+
<item>
|
2434
|
+
<service_name>ư��</service_name>
|
2435
|
+
<floor_name>�ӥǥ�</floor_name>
|
2436
|
+
<category_name>�ӥǥ� (ư��)</category_name>
|
2437
|
+
<content_id>zuko00002</content_id>
|
2438
|
+
<product_id>zuko00002</product_id>
|
2439
|
+
<title>���Ӥ�ܥ������Ф����</title>
|
2440
|
+
<URL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=zuko00002/</URL>
|
2441
|
+
<affiliateURL>http://www.dmm.co.jp/digital/videoa/-/detail/=/cid=zuko00002/AFFILIATE_ID</affiliateURL>
|
2442
|
+
<imageURL>
|
2443
|
+
<list>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002pt.jpg</list>
|
2444
|
+
<small>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002ps.jpg</small>
|
2445
|
+
<large>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002pl.jpg</large>
|
2446
|
+
</imageURL>
|
2447
|
+
<sampleImageURL>
|
2448
|
+
<sample_s>
|
2449
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-1.jpg</image>
|
2450
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-2.jpg</image>
|
2451
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-3.jpg</image>
|
2452
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-4.jpg</image>
|
2453
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-5.jpg</image>
|
2454
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-6.jpg</image>
|
2455
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-7.jpg</image>
|
2456
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-8.jpg</image>
|
2457
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-9.jpg</image>
|
2458
|
+
<image>http://pics.dmm.co.jp/digital/video/zuko00002/zuko00002-10.jpg</image>
|
2459
|
+
</sample_s>
|
2460
|
+
</sampleImageURL>
|
2461
|
+
<prices>
|
2462
|
+
<price>300���</price>
|
2463
|
+
<deliveries>
|
2464
|
+
<delivery>
|
2465
|
+
<type>stream</type>
|
2466
|
+
<price>300</price>
|
2467
|
+
</delivery>
|
2468
|
+
<delivery>
|
2469
|
+
<type>download</type>
|
2470
|
+
<price>580</price>
|
2471
|
+
</delivery>
|
2472
|
+
<delivery>
|
2473
|
+
<type>hd</type>
|
2474
|
+
<price>980</price>
|
2475
|
+
</delivery>
|
2476
|
+
<delivery>
|
2477
|
+
<type>toaster</type>
|
2478
|
+
<price>780</price>
|
2479
|
+
</delivery>
|
2480
|
+
<delivery>
|
2481
|
+
<type>androiddl</type>
|
2482
|
+
<price>580</price>
|
2483
|
+
</delivery>
|
2484
|
+
</deliveries>
|
2485
|
+
</prices>
|
2486
|
+
<date>2012-04-26 10:00:38</date>
|
2487
|
+
<iteminfo>
|
2488
|
+
<keyword>
|
2489
|
+
<name>���</name>
|
2490
|
+
<id>4005</id>
|
2491
|
+
</keyword>
|
2492
|
+
<keyword>
|
2493
|
+
<name>���</name>
|
2494
|
+
<id>4007</id>
|
2495
|
+
</keyword>
|
2496
|
+
<keyword>
|
2497
|
+
<name>����</name>
|
2498
|
+
<id>2001</id>
|
2499
|
+
</keyword>
|
2500
|
+
<keyword>
|
2501
|
+
<name>��������</name>
|
2502
|
+
<id>2006</id>
|
2503
|
+
</keyword>
|
2504
|
+
<keyword>
|
2505
|
+
<name>���</name>
|
2506
|
+
<id>5001</id>
|
2507
|
+
</keyword>
|
2508
|
+
<keyword>
|
2509
|
+
<name>�����ۿ�</name>
|
2510
|
+
<id>6548</id>
|
2511
|
+
</keyword>
|
2512
|
+
<keyword>
|
2513
|
+
<name>�ϥ��ӥ����</name>
|
2514
|
+
<id>6533</id>
|
2515
|
+
</keyword>
|
2516
|
+
<keyword>
|
2517
|
+
<name>DVD�ȡ�������</name>
|
2518
|
+
<id>6529</id>
|
2519
|
+
</keyword>
|
2520
|
+
<maker>
|
2521
|
+
<name>���å���/�Хå���</name>
|
2522
|
+
<id>6382</id>
|
2523
|
+
</maker>
|
2524
|
+
<actress>
|
2525
|
+
<name>��������</name>
|
2526
|
+
<id>1008968</id>
|
2527
|
+
</actress>
|
2528
|
+
<actress>
|
2529
|
+
<name>�����Ϥ餵��</name>
|
2530
|
+
<id>1008968_ruby</id>
|
2531
|
+
</actress>
|
2532
|
+
<actress>
|
2533
|
+
<name>av</name>
|
2534
|
+
<id>1008968_classify</id>
|
2535
|
+
</actress>
|
2536
|
+
<actress>
|
2537
|
+
<name>�ڲ����</name>
|
2538
|
+
<id>1007947</id>
|
2539
|
+
</actress>
|
2540
|
+
<actress>
|
2541
|
+
<name>���Τ����狼��</name>
|
2542
|
+
<id>1007947_ruby</id>
|
2543
|
+
</actress>
|
2544
|
+
<actress>
|
2545
|
+
<name>av</name>
|
2546
|
+
<id>1007947_classify</id>
|
2547
|
+
</actress>
|
2548
|
+
<actress>
|
2549
|
+
<name>��������꤫</name>
|
2550
|
+
<id>1007357</id>
|
2551
|
+
</actress>
|
2552
|
+
<actress>
|
2553
|
+
<name>��������꤫</name>
|
2554
|
+
<id>1007357_ruby</id>
|
2555
|
+
</actress>
|
2556
|
+
<actress>
|
2557
|
+
<name>av</name>
|
2558
|
+
<id>1007357_classify</id>
|
2559
|
+
</actress>
|
2560
|
+
<actress>
|
2561
|
+
<name>�������</name>
|
2562
|
+
<id>1012094</id>
|
2563
|
+
</actress>
|
2564
|
+
<actress>
|
2565
|
+
<name>�ʤ�ߤ椭��</name>
|
2566
|
+
<id>1012094_ruby</id>
|
2567
|
+
</actress>
|
2568
|
+
<actress>
|
2569
|
+
<name>av</name>
|
2570
|
+
<id>1012094_classify</id>
|
2571
|
+
</actress>
|
2572
|
+
<director>
|
2573
|
+
<name>�餯��</name>
|
2574
|
+
<id>101200</id>
|
2575
|
+
</director>
|
2576
|
+
<director>
|
2577
|
+
<name>�餯��</name>
|
2578
|
+
<id>101200_ruby</id>
|
2579
|
+
</director>
|
2580
|
+
<label>
|
2581
|
+
<name>���å���/�Хå���</name>
|
2582
|
+
<id>23678</id>
|
2583
|
+
</label>
|
2584
|
+
</iteminfo>
|
2585
|
+
</item>
|
2586
|
+
</items>
|
2587
|
+
</result>
|
2588
|
+
</response>
|