mihai9909 commited on
Commit
65a2f00
1 Parent(s): 3a863a3

Add more data

Browse files
Files changed (2) hide show
  1. test.csv +27 -0
  2. train.csv +315 -174
test.csv CHANGED
@@ -26,3 +26,30 @@ ask where {
26
  ask where {
27
  rdf:Geographic_atrophy rdf:presentIn rdf:Wet_AMD .
28
  }"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ask where {
27
  rdf:Geographic_atrophy rdf:presentIn rdf:Wet_AMD .
28
  }"
29
+ 6,What worsens AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
30
+ select distinct ?s where {
31
+ ?amd a amd:AMD .
32
+ ?s amd:worsens ?amd .
33
+ }"
34
+ 7,What are the recent treatments for AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
35
+ select distinct ?s {
36
+ ?amd a amd:AMD .
37
+ ?s a amd:Treatment .
38
+ ?s amd:treats ?amd .
39
+ }"
40
+ 8,Does AMD affect both eyes?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
41
+ ask where {
42
+ ?amd a amd:AMD .
43
+ ?amd amd:affects_both_eyes true .
44
+ }"
45
+ 9,What vitamins are helpful for macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
46
+ select distinct ?s where {
47
+ ?amd a amd:AMD .
48
+ ?s a amd:Vitamin .
49
+ ?s amd:prevents ?amd .
50
+ }"
51
+ 10,Is AMD hereditary?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
52
+ ask where {
53
+ ?amd a amd:AMD .
54
+ ?amd amd:hereditary true
55
+ }"
train.csv CHANGED
@@ -1,311 +1,452 @@
1
  NR_1,NL_Query,SPARQL
2
- 1,What treats AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
 
3
  select distinct ?s where {
4
- ?s a rdf:Treatment .
5
- ?amd a rdf:AMD .
6
 
7
- ?s rdf:treats ?amd .
8
  }"
9
- 2,What treats Wet AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
10
  select distinct ?s where {
11
- ?s a rdf:Treatment .
12
 
13
- ?s rdf:treats rdf:Wet_AMD .
14
  }"
15
- 3,What medication treats dry AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
16
  select distinct ?s where {
17
- ?s a rdf:Medication .
18
- ?s rdf:treats rdf:Dry_AMD .
19
  }"
20
- 4,What diseases cause blindness?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
21
  select distinct ?s where {
22
- ?s a rdf:Disease .
23
- ?s rdf:causes rdf:Blindness .
24
- }
25
- "
26
- 5,Does dry AMD cause blindness?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
27
  ask where {
28
- rdf:Dry_AMD rdf:causes rdf:Blindness .
29
- }
30
- "
31
- 6,What are the signs of AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
32
  select distinct ?s where {
33
- ?amd a rdf:AMD .
34
- ?s rdf:presentIn ?amd .
35
  }
36
  "
37
- 7,What are some early signs of AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
38
  select distinct ?s where {
39
- ?amd a rdf:AMD .
40
- ?s a rdf:Early_sign .
41
 
42
- ?s rdf:presentIn ?amd .
43
  }
44
  "
45
- 8,What does AMD affect?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
46
  select distinct ?s where {
47
- ?amd a rdf:AMD .
48
- ?amd rdf:affects ?s .
49
  }"
50
- 9,What does Dry AMD affect?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
51
  select distinct ?s where {
52
- rdf:Dry_AMD rdf:affects ?s .
53
  }"
54
- 10,Does Avastin treat Dry AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
55
  ask where {
56
- rdf:Avastin rdf:treats rdf:Dry_AMD .
57
  }"
58
- 11,Is blurry vision a symptom of AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
59
  ask where {
60
- rdf:Dry_AMD rdf:causes rdf:Blurry_vision .
61
  }"
62
- 12,Does AMD affect the Elderly?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
63
  ask where {
64
- ?amd a rdf:AMD .
65
- ?amd rdf:affects rdf:Elderly .
66
  }"
67
- 13,What category of people does Age-related Macular Degeneration affect?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
68
  select distinct ?s where {
69
- ?s a rdf:Group_of_people .
70
- ?amd a rdf:AMD .
71
- ?amd rdf:affects ?s .
72
  }"
73
- 14,What actions does AMD impair?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
74
  select distinct ?s where {
75
- ?s a rdf:Action .
76
- ?amd a rdf:Age-related_macular_degeneration .
77
 
78
- ?amd rdf:impairs ?s .
79
  }"
80
- 15,What medical procedures are used to treat AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
81
  select distinct ?s where {
82
- ?s a rdf:Medical_Procedure .
83
- ?amd a rdf:AMD .
84
 
85
- ?s rdf:treats ?amd .
86
  }"
87
  16,What type of AMD presents CNV?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
88
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
89
  select distinct ?s where {
90
- ?s a rdf:AMD .
91
- rdf:CNV rdf:presentIn ?s .
92
  }"
93
  17,What type of AMD causes drusen and reduced contrast?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
94
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
95
  select distinct ?s where {
96
- ?s a rdf:AMD .
97
- rdf:Reduced_contrast rdf:presentIn ?s .
98
- rdf:Drusen rdf:presentIn ?s .
99
  }"
100
- 18,Give me all signs of AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
101
  select distinct ?s where {
102
- ?amd a rdf:AMD .
103
- ?s rdf:presentIn ?amd .
104
  }"
105
- 19,Give me all treatments for AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
106
  select distinct ?s where {
107
- ?s a rdf:Treatment .
108
 
109
- ?s rdf:treats rdf:Wet_AMD .
110
  }"
111
- 20,Give me all types of AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
112
  select distinct ?s where {
113
- ?s a rdf:AMD .
114
  }"
115
- 21,Give me all medical procedures used to treat AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
116
  select distinct ?s where {
117
  ?s a r+C22df:Symptom .
118
 
119
- rdf:Wet_AMD rdf:causes ?s .
120
  }"
121
- 22,Give me all signs of AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
122
  select distinct ?s where {
123
- ?amd a rdf:AMD .
124
- ?s rdf:presentIn ?amd .
125
  }"
126
- 23,Give me all symptoms of AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
127
  select distinct ?s where {
128
- ?s a rdf:Symptom .
129
- ?amd a rdf:AMD .
130
-
131
- ?amd rdf:causes ?s .
132
  }"
133
- 24,Give me all symptoms of Wet AMD.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
134
  select distinct ?s where {
135
- ?s a rdf:Symptom .
136
 
137
- rdf:Wet_AMD rdf:causes ?s .
138
  }"
139
- 25,Give me all types of AMD and their corresponding treatments,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
140
  select distinct ?amd ?s where {
141
- ?s a rdf:Treatment .
142
- ?amd a rdf:AMD .
143
 
144
- ?s rdf:treats ?amd .
145
  }"
146
- 26,Give me all type of AMD and their corresponding symptoms,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
147
  select distinct ?amd ?s where {
148
- ?s a rdf:Symptom .
149
- ?amd a rdf:AMD .
150
 
151
- ?amd rdf:causes ?s .
152
  }"
153
- 27,For every type of AMD give me the groups of people it affects,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
154
  select distinct ?amd ?s where {
155
- ?s a rdf:Group_of_people .
156
- ?amd a rdf:AMD .
157
 
158
- ?amd rdf:affects ?s .
159
  }"
160
- 28,What treatment for AMD has a success rate of over 90%?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
161
  select distinct ?s where {
162
- ?s a rdf:Medical_Procedure .
163
- ?amd a rdf:AMD .
164
- ?s rdf:treats ?amd .
165
 
166
- ?s rdf:success_rate ?success_rate .
167
  FILTER(?success_rate > 0.90)
168
  }"
169
- 29,For each AMD type what treatments are recommended?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
170
  select distinct ?s ?amd where {
171
- ?amd a rdf:AMD .
172
- ?s a rdf:Treatment .
173
 
174
- ?s rdf:treats ?amd .
175
  }"
176
- 30,What imaging techniques are used to diagnose and monitor AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
177
  select distinct ?s where {
178
- ?s a rdf:Imaging_technique .
179
- ?amd a rdf:AMD .
180
- ?s rdf:monitors ?amd .
181
  }"
182
- 31,What are the pharmacological treatments available for AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
183
  select distinct ?s where {
184
- ?s a rdf:Medication .
185
- ?amd a rdf:AMD .
186
- ?s rdf:treats ?amd .
187
  }"
188
- 32,What are the pharmacological treatments are used for wet and dry AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
189
  select distinct ?s where {
190
- ?s a rdf:Medication .
191
- ?s rdf:treats rdf:Wet_AMD .
192
- ?s rdf:treats rdf:Dry_AMD .
193
  }"
194
- 33,How effective is retinal laser photocoagulation in treating AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
195
  select distinct ?s where {
196
- rdf:Retinal_laser_photocoagulation rdf:success_rate ?s .
197
  }"
198
- 34,Does retinal laser photocoagulation tread dry AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
199
  ask where {
200
- rdf:Retinal_laser_photocoagulation rdf:treats rdf:Dry_AMD .
201
  }"
202
- 35,Does retinal laser photocoagulation tread wet AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
203
  ask where {
204
- rdf:Retinal_laser_photocoagulation rdf:treats rdf:Wet_AMD .
205
  }"
206
- 36,Are there any medical procedures for Wet AMD that have the success rate over 90%?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
207
  ask where {
208
- ?procedure a rdf:Medical_Procedure .
209
- ?procedure rdf:treats rdf:Wet_AMD .
210
- ?procedure rdf:success_rate ?success_rate .
211
  FILTER(?success_rate > 0.9)
212
  }"
213
- 37,What medical procedures for Wet AMD have a success rate of over 90%?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
214
- select distinct ?procedure where {
215
- ?procedure a rdf:Medical_Procedure .
216
- ?procedure rdf:treats rdf:Wet_AMD .
217
- ?procedure rdf:success_rate ?success_rate .
218
  FILTER(?success_rate > 0.9)
219
  }"
220
  38,What medical procedures for AMD require a follow up?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
221
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
222
  select distinct ?procedure where {
223
- ?procedure a rdf:Medical_Procedure .
224
- ?amd a rdf:AMD .
225
- ?procedure rdf:treats ?amd .
226
- ?procedure rdf:follow_up_necessary true .
227
  }"
228
- 39,What groups of people are not affected by AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
229
  select distinct ?s where {
230
- ?s a rdf:Group_of_people .
231
- ?amd a rdf:AMD .
232
- FILTER NOT EXISTS { ?amd rdf:affects ?s } .
233
  }"
234
  40,What medical procedure for wet AMD has the highest success rate?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
235
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
236
  select distinct ?s where {
237
- ?s rdf:treats rdf:Wet_AMD .
238
- ?s a rdf:Medical_Procedure .
239
- ?s rdf:success_rate ?success_rate .
240
  } ORDER BY DESC (?success_rate) LIMIT 1"
241
- 41,What actions does wet AMD not affect?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
242
  select distinct ?s where {
243
- ?s a rdf:Action .
244
- FILTER NOT EXISTS { rdf:Dry_AMD rdf:impairs ?s } .
245
  }"
246
- 42,What imaging techniques are not used to monitor AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
247
  select distinct ?s where {
248
- ?s a rdf:Imaging_technique .
249
- ?amd a rdf:AMD .
250
- FILTER NOT EXISTS { ?s rdf:monitors ?amd . }
251
  }"
252
- 43,Can optical coherence tomography be used to monitor AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
253
  ask where {
254
- ?amd a rdf:AMD .
255
- rdf:Optical_coherence_tomography rdf:monitors ?amd .
256
  }"
257
  44,What are the other names for dry AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
258
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
259
  select distinct ?s where {
260
- ?s owl:sameAs rdf:Dry_AMD .
261
  }"
262
  45,What are the other names for wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
263
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
264
  select distinct ?s where {
265
- ?s owl:sameAs rdf:Wet_AMD .
266
  }"
267
  46,Is dry AMD the same as atrophic AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
268
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
269
  ask where {
270
- rdf:Atrophic_AMD owl:sameAs rdf:Dry_AMD .
271
  }"
272
  47,Is exudative AMD the same as wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
273
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
274
  ask where {
275
- rdf:Exudative_AMD owl:sameAs rdf:Wet_AMD .
276
  }"
277
  48,Is neovascular AMD the same as wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
278
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
279
  ask where {
280
- rdf:Neovascular_AMD owl:sameAs rdf:Wet_AMD .
281
  }"
282
  49,What does CNV stand for?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
283
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
284
  select distinct ?s where {
285
- rdf:CNV owl:sameAs ?s .
286
  }"
287
  50,What is scotoma?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
288
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
289
  select distinct ?s where {
290
- ?s owl:sameAs rdf:Scotoma .
291
  }"
292
  51,What causes type of AMD causes blind spots?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
293
- prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
294
  select distinct ?s where {
295
- ?s a rdf:AMD .
296
- ?s rdf:causes rdf:Blind_spot .
297
  }"
298
- 52,Is CNV a sign of wet AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
299
  ask where {
300
- rdf:Choroidal_neovascularization rdf:presentIn rdf:Dry_AMD .
301
  }"
302
- 53,Is CNV a sign of dry AMD?,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
303
  ask where {
304
- rdf:Choroidal_neovascularization rdf:presentIn rdf:Wet_AMD .
305
  }"
306
- 54,Give me medical procedures that treat AMD and the type of AMD that they treat.,"prefix rdf:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#> select distinct
307
  ?s ?amd where {
308
- ?s a rdf:Medical_Procedure .
309
- ?amd a rdf:AMD .
310
- ?s rdf:treats ?amd .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  }"
 
 
1
  NR_1,NL_Query,SPARQL
2
+ 1,What treats AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
3
+ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
4
  select distinct ?s where {
5
+ ?s rdf:type amd:Treatment .
6
+ ?amd rdf:type amd:AMD .
7
 
8
+ ?s amd:treats ?amd .
9
  }"
10
+ 2,What treats Wet AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
11
  select distinct ?s where {
12
+ ?s rdf:type amd:Treatment .
13
 
14
+ ?s amd:treats amd:Wet_AMD .
15
  }"
16
+ 3,What medication treats dry AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
17
  select distinct ?s where {
18
+ ?s a amd:Medication .
19
+ ?s amd:treats amd:Dry_AMD .
20
  }"
21
+ 4,What diseases cause blindness?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
22
  select distinct ?s where {
23
+ ?s a amd:Disease .
24
+ ?s amd:causes amd:Blindness .
25
+ }"
26
+ 5,Does dry AMD cause blindness?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
 
27
  ask where {
28
+ amd:Dry_AMD amd:causes amd:Blindness .
29
+ }"
30
+ 6,What are the signs of AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
 
31
  select distinct ?s where {
32
+ ?amd a amd:AMD .
33
+ ?s amd:presentIn ?amd .
34
  }
35
  "
36
+ 7,What are some early signs of AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
37
  select distinct ?s where {
38
+ ?amd a amd:AMD .
39
+ ?s a amd:Early_sign .
40
 
41
+ ?s amd:presentIn ?amd .
42
  }
43
  "
44
+ 8,What does AMD affect?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
45
  select distinct ?s where {
46
+ ?amd a amd:AMD .
47
+ ?amd amd:affects ?s .
48
  }"
49
+ 9,What does Dry AMD affect?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
50
  select distinct ?s where {
51
+ amd:Dry_AMD amd:affects ?s .
52
  }"
53
+ 10,Does Avastin treat Dry AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
54
  ask where {
55
+ amd:Avastin amd:treats amd:Dry_AMD .
56
  }"
57
+ 11,Is blurry vision a symptom of AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
58
  ask where {
59
+ amd:Dry_AMD amd:causes amd:Blurry_vision .
60
  }"
61
+ 12,Does AMD affect the Elderly?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
62
  ask where {
63
+ ?amd a amd:AMD .
64
+ ?amd amd:affects amd:Elderly .
65
  }"
66
+ 13,What category of people does Age-related Macular Degeneration affect?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
67
  select distinct ?s where {
68
+ ?s a amd:Group_of_people .
69
+ ?amd a amd:AMD .
70
+ ?amd amd:affects ?s .
71
  }"
72
+ 14,What actions does AMD impair?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
73
  select distinct ?s where {
74
+ ?s a amd:Action .
75
+ ?amd a amd:Age-related_macular_degeneration .
76
 
77
+ ?amd amd:impairs ?s .
78
  }"
79
+ 15,What medical procedures are used to treat AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
80
  select distinct ?s where {
81
+ ?s a amd:Medical_Procedure .
82
+ ?amd a amd:AMD .
83
 
84
+ ?s amd:treats ?amd .
85
  }"
86
  16,What type of AMD presents CNV?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
87
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
88
  select distinct ?s where {
89
+ ?s a amd:AMD .
90
+ amd:CNV amd:presentIn ?s .
91
  }"
92
  17,What type of AMD causes drusen and reduced contrast?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
93
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
94
  select distinct ?s where {
95
+ ?s a amd:AMD .
96
+ amd:Reduced_contrast amd:presentIn ?s .
97
+ amd:Drusen amd:presentIn ?s .
98
  }"
99
+ 18,Give me all signs of AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
100
  select distinct ?s where {
101
+ ?amd a amd:AMD .
102
+ ?s amd:presentIn ?amd .
103
  }"
104
+ 19,Give me all treatments for AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
105
  select distinct ?s where {
106
+ ?s a amd:Treatment .
107
 
108
+ ?s amd:treats amd:Wet_AMD .
109
  }"
110
+ 20,Give me all types of AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
111
  select distinct ?s where {
112
+ ?s a amd:AMD .
113
  }"
114
+ 21,Give me all medical procedures used to treat AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
115
  select distinct ?s where {
116
  ?s a r+C22df:Symptom .
117
 
118
+ amd:Wet_AMD amd:causes ?s .
119
  }"
120
+ 22,Give me all signs of AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
121
  select distinct ?s where {
122
+ ?amd a amd:AMD .
123
+ ?s amd:presentIn ?amd .
124
  }"
125
+ 23,Give me all symptoms of AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
126
  select distinct ?s where {
127
+ ?s a amd:Symptom .
128
+ ?amd a amd:AMD .
129
+
130
+ ?amd amd:causes ?s .
131
  }"
132
+ 24,Give me all symptoms of Wet AMD.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
133
  select distinct ?s where {
134
+ ?s a amd:Symptom .
135
 
136
+ amd:Wet_AMD amd:causes ?s .
137
  }"
138
+ 25,Give me all types of AMD and their corresponding treatments,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
139
  select distinct ?amd ?s where {
140
+ ?s a amd:Treatment .
141
+ ?amd a amd:AMD .
142
 
143
+ ?s amd:treats ?amd .
144
  }"
145
+ 26,Give me all type of AMD and their corresponding symptoms,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
146
  select distinct ?amd ?s where {
147
+ ?s a amd:Symptom .
148
+ ?amd a amd:AMD .
149
 
150
+ ?amd amd:causes ?s .
151
  }"
152
+ 27,For every type of AMD give me the groups of people it affects,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
153
  select distinct ?amd ?s where {
154
+ ?s a amd:Group_of_people .
155
+ ?amd a amd:AMD .
156
 
157
+ ?amd amd:affects ?s .
158
  }"
159
+ 28,What treatment for AMD has a success rate of over 90%?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
160
  select distinct ?s where {
161
+ ?s a amd:Medical_Procedure .
162
+ ?amd a amd:AMD .
163
+ ?s amd:treats ?amd .
164
 
165
+ ?s amd:success_rate ?success_rate .
166
  FILTER(?success_rate > 0.90)
167
  }"
168
+ 29,For each AMD type what treatments are recommended?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
169
  select distinct ?s ?amd where {
170
+ ?amd a amd:AMD .
171
+ ?s a amd:Treatment .
172
 
173
+ ?s amd:treats ?amd .
174
  }"
175
+ 30,What imaging techniques are used to diagnose and monitor AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
176
  select distinct ?s where {
177
+ ?s a amd:Imaging_technique .
178
+ ?amd a amd:AMD .
179
+ ?s amd:monitors ?amd .
180
  }"
181
+ 31,What are the pharmacological treatments available for AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
182
  select distinct ?s where {
183
+ ?s a amd:Medication .
184
+ ?amd a amd:AMD .
185
+ ?s amd:treats ?amd .
186
  }"
187
+ 32,What are the pharmacological treatments are used for wet and dry AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
188
  select distinct ?s where {
189
+ ?s a amd:Medication .
190
+ ?s amd:treats amd:Wet_AMD .
191
+ ?s amd:treats amd:Dry_AMD .
192
  }"
193
+ 33,How effective is retinal laser photocoagulation in treating AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
194
  select distinct ?s where {
195
+ amd:Retinal_laser_photocoagulation amd:success_rate ?s .
196
  }"
197
+ 34,Does retinal laser photocoagulation tread dry AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
198
  ask where {
199
+ amd:Retinal_laser_photocoagulation amd:treats amd:Dry_AMD .
200
  }"
201
+ 35,Does retinal laser photocoagulation tread wet AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
202
  ask where {
203
+ amd:Retinal_laser_photocoagulation amd:treats amd:Wet_AMD .
204
  }"
205
+ 36,Are there any medical procedures for Wet AMD that have the success rate over 90%?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
206
  ask where {
207
+ ?procedure a amd:Medical_Procedure .
208
+ ?procedure amd:treats amd:Wet_AMD .
209
+ ?procedure amd:success_rate ?success_rate .
210
  FILTER(?success_rate > 0.9)
211
  }"
212
+ 37,What medical procedures for Wet AMD have a success rate of over 90%?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
213
+ select ?procedure where {
214
+ ?procedure a amd:Medical_Procedure .
215
+ ?procedure amd:treats amd:Wet_AMD .
216
+ ?procedure amd:success_rate ?success_rate .
217
  FILTER(?success_rate > 0.9)
218
  }"
219
  38,What medical procedures for AMD require a follow up?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
220
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
221
  select distinct ?procedure where {
222
+ ?procedure a amd:Medical_Procedure .
223
+ ?amd a amd:AMD .
224
+ ?procedure amd:treats ?amd .
225
+ ?procedure amd:follow_up_necessary true .
226
  }"
227
+ 39,What groups of people are not affected by AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
228
  select distinct ?s where {
229
+ ?s a amd:Group_of_people .
230
+ ?amd a amd:AMD .
231
+ FILTER NOT EXISTS { ?amd amd:affects ?s } .
232
  }"
233
  40,What medical procedure for wet AMD has the highest success rate?,"PREFIX : <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16/>
234
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
235
  select distinct ?s where {
236
+ ?s amd:treats amd:Wet_AMD .
237
+ ?s a amd:Medical_Procedure .
238
+ ?s amd:success_rate ?success_rate .
239
  } ORDER BY DESC (?success_rate) LIMIT 1"
240
+ 41,What actions does wet AMD not affect?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
241
  select distinct ?s where {
242
+ ?s a amd:Action .
243
+ FILTER NOT EXISTS { amd:Dry_AMD amd:impairs ?s } .
244
  }"
245
+ 42,What imaging techniques are not used to monitor AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
246
  select distinct ?s where {
247
+ ?s a amd:Imaging_technique .
248
+ ?amd a amd:AMD .
249
+ FILTER NOT EXISTS { ?s amd:monitors ?amd . }
250
  }"
251
+ 43,Can optical coherence tomography be used to monitor AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
252
  ask where {
253
+ ?amd a amd:AMD .
254
+ amd:Optical_coherence_tomography amd:monitors ?amd .
255
  }"
256
  44,What are the other names for dry AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
257
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
258
  select distinct ?s where {
259
+ ?s owl:sameAs amd:Dry_AMD .
260
  }"
261
  45,What are the other names for wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
262
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
263
  select distinct ?s where {
264
+ ?s owl:sameAs amd:Wet_AMD .
265
  }"
266
  46,Is dry AMD the same as atrophic AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
267
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
268
  ask where {
269
+ amd:Atrophic_AMD owl:sameAs amd:Dry_AMD .
270
  }"
271
  47,Is exudative AMD the same as wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
272
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
273
  ask where {
274
+ amd:Exudative_AMD owl:sameAs amd:Wet_AMD .
275
  }"
276
  48,Is neovascular AMD the same as wet AMD?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
277
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
278
  ask where {
279
+ amd:Neovascular_AMD owl:sameAs amd:Wet_AMD .
280
  }"
281
  49,What does CNV stand for?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
282
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
283
  select distinct ?s where {
284
+ amd:CNV owl:sameAs ?s .
285
  }"
286
  50,What is scotoma?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
287
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
288
  select distinct ?s where {
289
+ ?s owl:sameAs amd:Scotoma .
290
  }"
291
  51,What causes type of AMD causes blind spots?,"PREFIX owl: <http://www.w3.org/2002/07/owl#>
292
+ prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
293
  select distinct ?s where {
294
+ ?s a amd:AMD .
295
+ ?s amd:causes amd:Blind_spot .
296
  }"
297
+ 52,Is CNV a sign of wet AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
298
  ask where {
299
+ amd:Choroidal_neovascularization amd:presentIn amd:Dry_AMD .
300
  }"
301
+ 53,Is CNV a sign of dry AMD?,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
302
  ask where {
303
+ amd:Choroidal_neovascularization amd:presentIn amd:Wet_AMD .
304
  }"
305
+ 54,Give me medical procedures that treat AMD and the type of AMD that they treat.,"prefix amd:<http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#> select distinct
306
  ?s ?amd where {
307
+ ?s a amd:Medical_Procedure .
308
+ ?amd a amd:AMD .
309
+ ?s amd:treats ?amd .
310
+ }"
311
+ 55,What are the two forms of age-related macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
312
+ select ?s where {
313
+ ?s a amd:AMD .
314
+ }"
315
+ 56,What are some signs of AMD and the type of AMD they are affect?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
316
+ select ?s ?amd where {
317
+ ?s a amd:Sign .
318
+ ?amd a amd:AMD .
319
+ ?s amd:presentIn ?amd
320
+ }"
321
+ 57,Give me all medical procedures for AMD that are not ivasive.,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
322
+ select ?s where {
323
+ ?amd a amd:AMD .
324
+ ?s a amd:Medical_Procedure .
325
+ ?s amd:treats ?amd .
326
+ ?s amd:invasive false .
327
+ }"
328
+ 58,How can AMD be monitored?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
329
+ select distinct ?s where {
330
+ ?amd a amd:AMD .
331
+ ?s amd:monitors ?amd .
332
+ }"
333
+ 59,Give me all types of AMD and how they can be monitored.,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
334
+ select distinct ?s ?amd where {
335
+ ?amd a amd:AMD .
336
+ ?s amd:monitors ?amd .
337
+ }"
338
+ 60,I want to know what imaging techniques can be used to monitor AMD.,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
339
+ select distinct ?s where {
340
+ ?amd a amd:AMD .
341
+ ?s amd:monitors ?amd .
342
+ }"
343
+ 61,Are my children at risk of AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
344
+ ask where {
345
+ ?amd a amd:AMD .
346
+ ?amd amd:hereditary true
347
+ }"
348
+ 62,Is AMD hereditary?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
349
+ ask where {
350
+ ?amd a amd:AMD .
351
+ ?amd amd:hereditary true
352
+ }"
353
+ 63,What is macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
354
+ select ?amd ?description where {
355
+ ?amd a amd:AMD .
356
+ ?amd amd:description ?description
357
+ }"
358
+ 64,What are the two forms of age-related macular degeneration,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
359
+ select ?amd ?description where {
360
+ ?amd a amd:AMD .
361
+ } limit 2"
362
+ 65,Will I go blind from macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
363
+ ask where {
364
+ ?amd a amd:AMD .
365
+ ?amd amd:causes amd:Blindness .
366
+ }"
367
+ 66,What is the treatment for dry macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
368
+ select ?s where {
369
+ ?s amd:treats amd:Dry_AMD .
370
+ }"
371
+ 67,What is the treatment for wet macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
372
+ select ?s where {
373
+ ?s amd:treats amd:Wet_AMD .
374
+ }"
375
+ 68,"My�grandmother or grandfather has age-related macular degeneration, will I get macular degeneration?","PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
376
+ ask where {
377
+ ?amd a amd:AMD .
378
+ ?amd amd:hereditary true
379
+ }"
380
+ 69,What can I do to prevent macular degeneration from developing?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
381
+ select distinct ?s where {
382
+ ?amd a amd:AMD .
383
+ ?s amd:prevents ?amd .
384
+ }"
385
+ 70,Are my children at risk for AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
386
+ ask where {
387
+ ?amd a amd:AMD .
388
+ ?amd amd:hereditary true
389
+ }"
390
+ 71,Are there treatment options for my AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
391
+ select ?s where {
392
+ ?amd a amd:AMD .
393
+ ?s amd:treats ?amd .
394
+ }"
395
+ 72,Which specialists can help me manage my condition?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
396
+ PREFIX obo: <http://purl.obolibrary.org/obo/>
397
+ select distinct ?s {
398
+ ?amd a amd:AMD .
399
+ ?s a obo:NCIT_C19254 .
400
+ ?s amd:treats ?amd .
401
+ }"
402
+ 73,What devices and services can help me live with vision loss from AMD?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
403
+ select distinct ?s {
404
+ ?amd a amd:AMD .
405
+ ?s a amd:Assistive_Device .
406
+ ?s amd:eases ?amd
407
+ }"
408
+ 74,Does AMD put me at risk for other eye diseases?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
409
+ ask where {
410
+ ?amd a amd:AMD .
411
+ ?s a amd:Comorbidity .
412
+ ?amd amd:causes ?s .
413
+ }"
414
+ 75,What steps can I take to slow down my AMD and protect my vision?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
415
+ select distinct ?s where {
416
+ ?amd a amd:AMD .
417
+ ?s amd:treats ?amd .
418
+ }"
419
+ 76,What treatment options are available for this condition?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
420
+ select distinct ?s {
421
+ ?amd a amd:AMD .
422
+ ?s a amd:Treatment .
423
+ ?s amd:treats ?amd .
424
+ }"
425
+ 77,What can a person do to protect or prolong their vision?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
426
+ select distinct ?s where {
427
+ ?amd a amd:AMD .
428
+ ?s amd:prevents ?amd .
429
+ }"
430
+ 78,Can you recommend a vitamin program for me that might be helpful?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
431
+ select distinct ?s where {
432
+ ?amd a amd:AMD .
433
+ ?s a amd:Vitamin .
434
+ ?s amd:prevents ?amd .
435
+ }"
436
+ 79,"Can you get AMD in only one eye, or does it always occur in both?","PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
437
+ ask where {
438
+ ?amd a amd:AMD .
439
+ ?amd amd:affects_both_eyes true .
440
+ }"
441
+ 80,What potential macular degeneration symptoms should I be aware of and mention to my eye doctor if they arise?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
442
+ select distinct ?s where {
443
+ ?amd a amd:AMD .
444
+ ?amd amd:causes ?s .
445
+ }"
446
+ 81,What are the current treatments for macular degeneration?,"PREFIX amd: <http://www.semanticweb.org/stefan/ontologies/2024/4/untitled-ontology-16#>
447
+ select distinct ?s {
448
+ ?amd a amd:AMD .
449
+ ?s a amd:Treatment .
450
+ ?s amd:treats ?amd .
451
  }"
452
+ 82,What makes macular degeneration worse?,