-
Notifications
You must be signed in to change notification settings - Fork 0
/
crawler_sider_drugs.js
1005 lines (991 loc) · 67.6 KB
/
crawler_sider_drugs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//load JQuery
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
var urls = ["http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4828",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2474",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2133",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2675",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1349907",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/10548",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2655",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2441",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3516",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/508230",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/41744",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/47472",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5234",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60198",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2656",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/24011",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4479097",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2676",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2462",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4168",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3642",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5472",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2781",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3793",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3463",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/115355",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60795",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60854",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2022",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2673",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/93860",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3518",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5721",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5402",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2471",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4829",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5320",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2021",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3379",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4095",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2249",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2654",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3519",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/123606",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60835",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5401",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/59768",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3488",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5556",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2478",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60707",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3929",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4411",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5404",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/32800",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5257",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4011",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/41774",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3702",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3928",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2477",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4493",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5403",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/130881",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2751",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3553",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5342",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3467",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3162",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2156",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2476",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3647",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4091",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/401",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5297",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5481350",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3261",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3241",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54688",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6049",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3161",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/110635",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2524",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2713",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3081884",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3648",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/38904",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1546",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5462337",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5530",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60831",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2564",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/10631",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5095",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2678",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2712",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5344",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3902",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2650",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4428",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/110634",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/74989",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2153",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4775",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4036",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6447131",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5572",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/598",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/206",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/150311",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4689",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/51577",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5533",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3372",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/50614",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4078",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4211",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5029",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2522",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4121",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5512",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/18140",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/31477",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2082",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3373",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5353980",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4212",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5574",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2818",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6503",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/104741",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5515",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/145068",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4542",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2756",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2520",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3510",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5090",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1148",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2541",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4543",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5514",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3446",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6435110",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5002",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/166548",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3285",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5215",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4075",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3598",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/34312",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3308",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2812",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5496",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4917",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2617",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5361912",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4771",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2171",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/24486",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3512",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/37393",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5291",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5210",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3948",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3440",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3397",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4264",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/861",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4236",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2170",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/298",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/9433",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71301",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4666",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71329",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3394",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2083",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2958",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/596",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5978",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4919",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3249",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/11947681",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5578",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5582",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2131",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60879",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3305",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5212",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2732",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3219",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5538",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/23897",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4547",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/150310",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3461",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4845",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2733",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5625",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54841",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/271",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5426",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/8953",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/72938",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3375",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2658",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2130",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/738",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5508",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5314",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/56339",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2949",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3310",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60815",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/123620",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4912",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3226",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3393",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2973",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/156419",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/25517",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/147912",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4932",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3062",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3964",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/612",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5656",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3741",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/727",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60877",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3350",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2909",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4140",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5584",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/13342",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4536",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4913",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5282226",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3392",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1983",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5636",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1302",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3414",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4539",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/72057",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/176168",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4934",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3690",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6018",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4057",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1206",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2088",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5493444",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2955",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2616",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4914",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/951",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3060",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4935",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/14888",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/815",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6691",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4745",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3899",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4058",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3032",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2173",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2995",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2274",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/148192",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4030",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4915",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5362420",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/62924",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5718",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/9571074",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/56959",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/104758",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1986",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4513",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2232",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2610",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5672",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311039",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5504",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5318",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3222",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4567",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2019",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5281104",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2551",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5419",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3066",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4976",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/96312",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5719",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5505",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2637",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4052",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/148211",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/72467",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2905",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/679",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4032",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2179",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54786",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4112",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2550",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4768",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3121",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1176",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3742",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2951",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5381226",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/65863",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4053",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3148",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3086672",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4033",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54374",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/125889",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/48041",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4748",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2907",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2250",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3743",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5005",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71616",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4054",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4885",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3203",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2978",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2177",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4451",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3417",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4911",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/40704",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/9904",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/7029",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4034",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4114",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60871",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5064",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5155",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3672",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/444",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5473385",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2369",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4160",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4583",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/19090",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4497",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/137",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/122316",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2761171",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5452",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5734",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3706",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5253",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4189",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/158",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/767",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4638",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2575",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5479",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3749",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3419",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2381",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/151165",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3062316",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5195",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5735",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/247",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311181",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3105",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/83786",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3767",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5040",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/159",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3333",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/30623",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3746",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/438204",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3019",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3698",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5454",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1775",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5381",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/12620",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3125",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4436",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2435",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/59708",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3080",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2366",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3468412",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/65999",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5152",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4163",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5353894",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5453",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/504578",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/62816",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2794",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5193",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/47725",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5717",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3676",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4473",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3198",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/28112",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/62819",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/12536",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3877",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3961",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5651",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3696",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3724",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3355",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1065",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/7638",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2719",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60852",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3675",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1046",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2308",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4634",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4614",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/36811",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/157922",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5487301",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/68740",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3878",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3143",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3354",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2344",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3168",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311082",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3015",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5329102",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5478",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/64147",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2771",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3652",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6323497",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4585",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6918453",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3763",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4635",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4499",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5878",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/175",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/17012",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1117",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/838",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2631",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3016",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4409",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5493381",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3100",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2431",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/158440",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5650",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4616",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/55645",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/72054",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3962",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/48175",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2123",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3915",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/20585",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2484",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/153941",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5333",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3366",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/27991",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4659569",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4421",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/154059",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3454",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3367",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/657298",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3914",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2720",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1003",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2662",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2576",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4659568",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60843",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4999",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60184",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5430",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5486",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/450",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3636",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5732",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/51263",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3255",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3151",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5245",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2559",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/87177",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3780",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/104803",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5731",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5359",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/25419",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5206",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5229711",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71273",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6256",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2578",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/85",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/888",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2349",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2148",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/477468",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2519",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5358",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/365716",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/667490",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4425",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3562",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4725",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2512",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5546",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3478",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60696",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/65027",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3108",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/77992",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/12555",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/42615",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2725",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2764",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/104865",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/197712",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/191",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/8612",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/125017",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/443871",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4724",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2666",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2487",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4510",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/77993",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3783",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5482",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/47641",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/68844",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3251",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4200",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4086",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3998",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3657",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3476",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5544",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/39507",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2145",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3784",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/27686",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/44564",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/453",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4723",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2762",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1134",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4004",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/853",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/11954225",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4475485",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/16362",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3475",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3916",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3658",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/32797",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1935",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3339",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/115237",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2554",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60147",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4679",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2806",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5503",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/657250",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/150610",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3386",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/119607",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3002190",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4834",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54547",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4865",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/34633",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5523",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2749",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60937",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2142",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5591",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60164",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3387",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/50294",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4991",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3821",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4201",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/39042",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2769",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2215",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2141",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/82146",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2609",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/8813",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/937",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4727",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/47319",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2891",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71387",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2629",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2140",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5379",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2803",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/41693",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/152945",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4812",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2182",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/27661",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/40976",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60787",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1978",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/176870",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6398525",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/581",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2216",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5566",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5039",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3639",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3826",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3382",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2802",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4138",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4675",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4889",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4158",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3278",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/681",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3040",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3825",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4900",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5203",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/16231",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60714",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/450096",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2801",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6058",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/71158",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2092",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3410",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4205",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4159",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5526",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3059",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4740",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2646",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60169",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/10100",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3637",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4856",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2800",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/39765",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/214",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/91270",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3384",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5525",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/39860",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2895",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/160051",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3042",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3385",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5593",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3823",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5412",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/41317",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/16850",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5282044",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3890",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4674",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/77999",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/315411",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/41781",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3937",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3279",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3365",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311297",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4993",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/143",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/9052",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3043",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4607",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6398970",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4870",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4440",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5665",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4946",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/750",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5645",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3075",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/20969",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2311",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2160",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5771",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/807",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/444033",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5076",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3340",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3954",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/444013",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4195",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4927",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4253",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2370",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3003",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5035",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2161",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5372",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5077",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4730",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3869",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4192",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2622",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5516",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3381",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5647",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/942",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54454",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2162",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4906",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3827",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5038",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5078",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60865",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4819",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/564",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3494",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4645",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5596",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/131536",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1971",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4509",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/123631",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/22507",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3730",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4170",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5071",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/57469",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3008",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2315",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4736",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5070",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3759",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1972",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4908",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3406",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4894",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4873",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4171",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311048",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2099",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5396",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5052",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4737",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4463",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4046",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3883",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/62867",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3007",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5376",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3405",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3958",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4909",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4893",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/213039",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2244",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/772",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4920",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4609",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5408",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5073",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2913",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4183806",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60860",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4101",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3291",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5311027",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3404",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6436173",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4043",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3957",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2283",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/36339",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/27400",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2187",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/124087",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4064",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3403",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5394",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3009",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4100",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3292",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4891",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5281007",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2284",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3956",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4259",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4044",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/232",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5352",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/31378",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5362070",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3734",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4107",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3117",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60612",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2118",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/216239",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3449",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2265",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3640",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/57537",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/163742",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3156",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/7187",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4174",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2708",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5466",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5267",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3085017",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/222786",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60613",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2786",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/119182",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2443",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/9034",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2266",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3000502",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3157",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1125",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3348",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4062",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4630253",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3715",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3736",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/170361",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2726",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5726",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5746",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2267",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4595",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2789",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5391",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2405",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3158",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4691",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3737",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4739",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2727",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/51634",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/54808",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/40159",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4449",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4060",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4594",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4173",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/52421",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2583",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4506",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3000",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60753",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/42113",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2983",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3686",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3325",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2375",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3559",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5300",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3345",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4603",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2269",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5184",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/6476",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3152",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/119",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3779",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4623",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4178",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60754",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/187",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3739",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4943",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3685",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3324",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/2585",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5775",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3950",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1071",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3911",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3750",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3086258",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4601",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/60953",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/62959",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4485",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4196",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3154",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4599",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/47320",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3661",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3114",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/1690",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/5487",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4419",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3687",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/4197",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/216326",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/3342",
"http://wifo5-04.informatik.uni-mannheim.de/sider/resource/drugs/32170"];
var ws;
var text = "";
function rework(line) {
line = line.replace(" >", "\"@en");
line = line.replace(/ /g, "");
line = line.replace("label> <", "label> \"");
line = line.replace("drugName> <", "drugName> \"");
line = line.replace("siderDrugId> <", "siderDrugId> \"");
line = line.replace("stitchId> <", "stitchId> \"");
line = line.replace("<sider:drugs>", "<http://wifo5-04.informatik.uni-mannheim.de/sider/resource/sider/drugs>");
return line;
}
function loadTriples(i) {
var uri = urls[i];
var counter = 0;
try {
while (true) {
if (ws.document.body.children[0].innerHTML == "Service Temporarily Unavailable") {
//Server blockiert Anfrage
setTimeout(function() { loadTriples(i) }, 15000);
break;
} else {
//Seite ordentlich geladen
var predicate1 = ws.document.getElementsByClassName("odd")[counter].children[0].children[0].title;
var object1 = ws.document.getElementsByClassName("odd")[counter].children[1].children[0].innerHTML.replace("\n", "");
if (object1 == "<") {
object1 = ws.document.getElementsByClassName("odd")[counter].children[1].children[1].href;
}
var line = "<" + uri + "> <" + predicate1 + "> <" + object1 + "> .\n";
line = rework(line);
text += line;
var predicate2 = ws.document.getElementsByClassName("even")[counter].children[0].children[0].title;
var object2 = ws.document.getElementsByClassName("even")[counter].children[1].children[0].innerHTML.replace("\n", "");
if (object2 == "<") {
object2 = ws.document.getElementsByClassName("even")[counter].children[1].children[1].href;
}
line = "<" + uri + "> <" + predicate2 + "> <" + object2 + "> .\n";
line = rework(line);
text += line;
counter += 1;
}
}
}catch (err) {
//console.log(err)
}
//console.log(text);
}
function load(i) {
console.log(urls[i]);
ws = window.open(urls[i]);
setTimeout(function() {loadTriples(i) }, 5000);
}
function f(iter) {
if (iter > 0) {
ws.close();
}
if (iter < 924) {
load(iter);
setTimeout(function() { f(iter + 1) }, 10000);