-
Notifications
You must be signed in to change notification settings - Fork 1
/
LODCloud_SPARQL_Endpoints.ttl
2636 lines (2363 loc) · 131 KB
/
LODCloud_SPARQL_Endpoints.ttl
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
@prefix schema: <http://schema.org/> .
@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix oplattrib: <http://www.openlinksw.com/schemas/reification#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix : <#> .
@prefix source: <http://www.openlinksw.com/data/turtle/oplweb/LODCloud_SPARQL_Endpoints.ttl> .
@prefix sourceDAV: <http://www.openlinksw.com/DAV/data/turtle/oplweb/LODCloud_SPARQL_Endpoints.ttl> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
sourceDAV:
a schema:CreativeWork ;
schema:name "LOD Cloud Knowledge Graph SPARQL Query Services Description"^^xsd:string ;
dcterms:format "text/turtle" ;
schema:dateCreated "2019-12-19T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2019-12-19T13:00:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:publisher <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
owl:sameAs source: .
source: a schema:CreativeWork ;
schema:name "LOD Cloud SPARQL Query Services Description"^^xsd:string ;
schema:comment """RDF-Turtle document that describes a collection of SPARQL Service Endpoints associated with the LOD Cloud Knowledge Graph"""@en ;
schema:dateCreated "2019-12-19T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2019-12-19T13:00:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
schema:about <http://data.openlinksw.com/oplweb/sparql-endpoint0#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint1#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint2#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint3#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint4#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint5#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint6#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint7#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint8#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint9#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint10#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint11#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint12#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint13#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint14#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint15#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint16#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint17#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint18#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint19#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint20#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint21#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint22#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint23#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint24#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint25#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint26#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint27#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint28#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint29#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint30#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint31#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint32#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint33#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint34#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint35#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint36#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint37#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint38#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint39#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint40#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint41#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint42#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint43#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint44#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint45#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint46#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint47#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint48#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint49#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint50#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint51#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint52#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint53#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint54#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint55#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint56#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint57#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint58#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint59#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint60#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint61#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint62#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint63#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint64#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint65#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint66#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint67#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint68#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint69#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint70#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint71#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint72#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint73#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint74#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint75#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint76#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint77#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint78#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint79#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint80#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint81#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint82#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint83#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint84#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint85#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint86#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint87#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint88#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint89#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint90#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint91#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint92#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint93#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint94#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint95#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint96#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint97#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint98#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint99#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint100#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint101#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint102#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint103#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint104#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint105#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint106#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint107#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint108#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint109#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint110#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint111#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint112#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint113#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint114#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint115#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint116#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint117#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint118#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint119#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint120#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint121#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint122#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint123#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint124#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint125#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint126#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint127#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint128#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint129#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint130#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint131#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint132#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint133#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint134#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint135#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint136#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint137#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint138#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint139#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint140#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint141#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint142#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint143#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint144#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint145#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint146#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint147#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint148#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint149#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint150#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint151#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint152#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint153#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint154#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint155#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint156#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint157#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint158#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint159#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint160#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint161#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint162#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint163#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint164#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint165#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint166#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint167#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint168#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint169#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint170#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint171#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint172#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint173#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint174#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint175#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint176#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint177#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint178#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint179#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint180#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint181#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint182#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint183#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint184#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint185#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint186#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint187#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint188#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint189#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint190#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint191#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint192#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint193#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint194#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint195#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint196#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint197#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint198#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint199#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint200#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint201#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint202#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint203#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint204#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint205#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint206#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint207#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint208#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint209#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint210#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint211#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint212#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint213#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint214#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint215#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint216#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint217#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint218#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint219#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint220#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint221#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint222#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint223#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint224#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint225#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint226#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint227#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint228#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint229#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint230#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint231#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint232#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint233#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint234#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint235#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint236#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint237#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint238#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint239#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint240#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint241#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint242#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint243#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint244#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint245#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint246#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint247#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint248#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint249#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint250#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint251#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint252#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint253#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint254#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint255#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint256#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint257#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint258#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint259#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint260#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint261#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint262#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint263#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint264#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint265#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint266#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint267#this> ,
<http://data.openlinksw.com/oplweb/sparql-endpoint268#this> .
<http://data.openlinksw.com/oplweb/sparql-endpoint0#this> a sd:Service ;
sd:endpoint "http://acm.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://acm.rkbexplorer.com//#webid> ;
owl:sameAs <http://acm.rkbexplorer.com/sparql/#this> ;
schema:url <http://acm.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint1#this> sd:endpoint "http://aemet.linkeddata.es/sparql/" ;
a sd:Service ;
schema:publisher <http://aemet.linkeddata.es//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://aemet.linkeddata.es/sparql/#this> ;
schema:url <http://aemet.linkeddata.es/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint2#this> a sd:Service ;
sd:endpoint "http://affymetrix.bio2rdf.org/sparql/" ;
schema:publisher <http://affymetrix.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://affymetrix.bio2rdf.org/sparql/#this> ;
schema:url <http://affymetrix.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint3#this> a sd:Service ;
sd:endpoint "http://agrovoc.uniroma2.it:3030/agrovoc/sparql" ;
rdfs:label "AGROVOC" ;
void:triples "no response 2019-12-19"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "AGROVOC" ;
schema:publisher <http://agrovoc.uniroma2.it:3030/agrovoc/#webid> ;
owl:sameAs <http://agrovoc.uniroma2.it:3030/agrovoc/sparql#this> ;
schema:url <http://agrovoc.uniroma2.it:3030/agrovoc/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint4#this> a sd:Service ;
sd:endpoint "http://apps.morelab.deusto.es/labman/sparql/" ;
schema:publisher <http://apps.morelab.deusto.es/labman//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://apps.morelab.deusto.es/labman/sparql/#this> ;
schema:url <http://apps.morelab.deusto.es/labman/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint5#this> a sd:Service ;
sd:endpoint "http://ariadne-registry.dcu.gr:8890/sparql" ;
rdfs:label "ARIADANE" ;
void:triples "2210644"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "ARIADANE" ;
schema:publisher <http://ariadne-registry.dcu.gr:8890/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://ariadne-registry.dcu.gr:8890/sparql#this> ;
schema:url <http://ariadne-registry.dcu.gr:8890/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint6#this> sd:endpoint "http://babelnet.org/sparql/" ;
a sd:Service ;
rdfs:label "BabelNet" ;
void:triples "1947548744"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "BabelNet" ;
schema:publisher <http://babelnet.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://babelnet.org/sparql/#this> ;
schema:url <http://babelnet.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint7#this> a sd:Service ;
sd:endpoint "http://bio2rdf.org/sparql" ;
rdfs:label "Bio2RDF" ;
void:triples "1377023536"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Bio2RDF" ;
schema:publisher <http://bio2rdf.org/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://bio2rdf.org/sparql#this> ;
schema:url <http://bio2rdf.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint8#this> sd:endpoint "http://biolit.rkbexplorer.com/sparql/" ;
a sd:Service ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://biolit.rkbexplorer.com//#webid> ;
owl:sameAs <http://biolit.rkbexplorer.com/sparql/#this> ;
schema:url <http://biolit.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint9#this> a sd:Service ;
sd:endpoint "http://biomodels.bio2rdf.org/sparql/" ;
rdfs:label "Bio2RDF Biomodels" ;
void:triples "1377023536"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Bio2RDF Biomodels" ;
schema:publisher <http://biomodels.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://biomodels.bio2rdf.org/sparql/#this> ;
schema:url <http://biomodels.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint10#this> a sd:Service ;
sd:endpoint "http://bioportal.bio2rdf.org/sparql/" ;
rdfs:label "Bio2Portal" ;
void:triples "1377023536"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Bio2Portal" ;
schema:publisher <http://bioportal.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://bioportal.bio2rdf.org/sparql/#this> ;
schema:url <http://bioportal.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint11#this> sd:endpoint "http://biordf.net/sparql/" ;
a sd:Service ;
schema:publisher <http://biordf.net//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://biordf.net/sparql/#this> ;
schema:url <http://biordf.net/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint12#this> a sd:Service ;
sd:endpoint "http://biosoda.expasy.org:8080/rdf4j-server/repositories/bgeelight" ;
rdfs:label "Bgee Lite" ;
void:triples "refuses to count"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Bgee Lite" ;
schema:publisher <http://biosoda.expasy.org:8080/rdf4j-server/repositories/bgeelight#webid> ;
owl:sameAs <http://biosoda.expasy.org:8080/rdf4j-server/repositories/bgeelight#this> ;
schema:url <http://biosoda.expasy.org:8080/rdf4j-server/repositories/bgeelight> .
<http://data.openlinksw.com/oplweb/sparql-endpoint13#this> a sd:Service ;
sd:endpoint "http://bmrbpub.protein.osaka-u.ac.jp/search/rdf" ;
rdfs:label "PDBj-BMRB" ;
void:triples "6365423287"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "PDBj-BMRB" ;
schema:publisher <http://bmrbpub.protein.osaka-u.ac.jp/search/rdf#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://bmrbpub.protein.osaka-u.ac.jp/search/rdf#this> ;
schema:url <http://bmrbpub.protein.osaka-u.ac.jp/search/rdf> .
<http://data.openlinksw.com/oplweb/sparql-endpoint14#this> a sd:Service ;
sd:endpoint "http://bnb.data.bl.uk/sparql/" ;
rdfs:label "British National Bibliography" ;
schema:name "British National Bibliography" ;
schema:publisher <http://bnb.data.bl.uk//#webid> ;
owl:sameAs <http://bnb.data.bl.uk/sparql/#this> ;
schema:url <http://bnb.data.bl.uk/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint15#this> a sd:Service ;
sd:endpoint "http://budapest.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://budapest.rkbexplorer.com//#webid> ;
owl:sameAs <http://budapest.rkbexplorer.com/sparql/#this> ;
schema:url <http://budapest.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint16#this> a sd:Service ;
sd:endpoint "http://caligraph.org/sparql" ;
rdfs:label "CaLiGraph " ;
schema:name "CaLiGraph " ;
schema:publisher <http://caligraph.org/#this> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://caligraph.org/sparql#this> ;
schema:url <http://caligraph.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint17#this> a sd:Service ;
sd:endpoint "http://canlink.library.ualberta.ca/sparql" ;
rdfs:label "Canadian Linked Thesis" ;
schema:name "Canadian Linked Thesis" ;
schema:publisher <http://canlink.library.ualberta.ca/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://canlink.library.ualberta.ca/sparql#this> ;
schema:url <http://canlink.library.ualberta.ca/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint18#this> sd:endpoint "http://citeseer.rkbexplorer.com/sparql/" ;
a sd:Service ;
rdfs:label "CiteSeer" ;
void:triples "8146852"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "CiteSeer" ;
schema:publisher <http://citeseer.rkbexplorer.com//#webid> ;
owl:sameAs <http://citeseer.rkbexplorer.com/sparql/#this> ;
schema:url <http://citeseer.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint19#this> a sd:Service ;
sd:endpoint "http://citeseer.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://citeseer.rkbexplorer.com//#webid> ;
owl:sameAs <http://citeseer.rkbexplorer.com/sparql/#this> ;
schema:url <http://citeseer.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint20#this> a sd:Service ;
sd:endpoint "http://colil.dbcls.jp/sparql" ;
rdfs:label "Colil" ;
void:triples "2795848463"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Colil" ;
schema:publisher <http://colil.dbcls.jp/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://colil.dbcls.jp/sparql#this> ;
schema:url <http://colil.dbcls.jp/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint21#this> sd:endpoint "http://collection.britishart.yale.edu/sparql/" ;
a sd:Service ;
rdfs:label "Yale Center of British Art" ;
schema:name "Yale Center of British Art" ;
schema:publisher <http://collection.britishart.yale.edu//#webid> ;
owl:sameAs <http://collection.britishart.yale.edu/sparql/#this> ;
schema:url <http://collection.britishart.yale.edu/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint22#this> a sd:Service ;
sd:endpoint "http://cordis.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://cordis.rkbexplorer.com//#webid> ;
owl:sameAs <http://cordis.rkbexplorer.com/sparql/#this> ;
schema:url <http://cordis.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint23#this> a sd:Service ;
sd:endpoint "http://courseware.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://courseware.rkbexplorer.com//#webid> ;
owl:sameAs <http://courseware.rkbexplorer.com/sparql/#this> ;
schema:url <http://courseware.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint24#this> a sd:Service ;
sd:endpoint "http://crime.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://crime.rkbexplorer.com//#webid> ;
owl:sameAs <http://crime.rkbexplorer.com/sparql/#this> ;
schema:url <http://crime.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint25#this> a sd:Service ;
sd:endpoint "http://crm.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://crm.rkbexplorer.com//#webid> ;
owl:sameAs <http://crm.rkbexplorer.com/sparql/#this> ;
schema:url <http://crm.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint26#this> a sd:Service ;
sd:endpoint "http://crtm.linkeddata.es/sparql/" ;
schema:publisher <http://crtm.linkeddata.es//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://crtm.linkeddata.es/sparql/#this> ;
schema:url <http://crtm.linkeddata.es/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint27#this> a sd:Service ;
sd:endpoint "http://ctd.bio2rdf.org/sparql/" ;
schema:publisher <http://ctd.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://ctd.bio2rdf.org/sparql/#this> ;
schema:url <http://ctd.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint28#this> a sd:Service ;
sd:endpoint "http://cultura.linkeddata.es/sparql/" ;
schema:publisher <http://cultura.linkeddata.es//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://cultura.linkeddata.es/sparql/#this> ;
schema:url <http://cultura.linkeddata.es/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint29#this> a sd:Service ;
sd:endpoint "http://curriculum.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://curriculum.rkbexplorer.com//#webid> ;
owl:sameAs <http://curriculum.rkbexplorer.com/sparql/#this> ;
schema:url <http://curriculum.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint30#this> a sd:Service ;
sd:endpoint "http://darmstadt.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://darmstadt.rkbexplorer.com//#webid> ;
owl:sameAs <http://darmstadt.rkbexplorer.com/sparql/#this> ;
schema:url <http://darmstadt.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint31#this> a sd:Service ;
sd:endpoint "http://data.aalto.fi/sparql/" ;
rdfs:label "Opening Aalto University Content for Applications" ;
schema:name "Opening Aalto University Content for Applications" ;
schema:publisher <http://data.aalto.fi//#webid> ;
owl:sameAs <http://data.aalto.fi/sparql/#this> ;
schema:url <http://data.aalto.fi/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint32#this> a sd:Service ;
sd:endpoint "http://data.allie.dbcls.jp/sparql" ;
rdfs:label "Allie" ;
void:triples "197763840"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Allie" ;
schema:publisher <http://data.allie.dbcls.jp/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.allie.dbcls.jp/sparql#this> ;
schema:url <http://data.allie.dbcls.jp/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint33#this> sd:endpoint "http://data.allie.dbcls.jp/sparql/" ;
a sd:Service ;
rdfs:label "Allie" ;
schema:name "Allie" ;
schema:publisher <http://data.allie.dbcls.jp//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.allie.dbcls.jp/sparql/#this> ;
schema:url <http://data.allie.dbcls.jp/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint34#this> a sd:Service ;
sd:endpoint "http://data.americanartcollaborative.org/sparql" ;
rdfs:label "American Art Collaborative" ;
schema:name "American Art Collaborative" ;
schema:publisher <http://data.americanartcollaborative.org/#webid> ;
owl:sameAs <http://data.americanartcollaborative.org/sparql#this> ;
schema:url <http://data.americanartcollaborative.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint35#this> a sd:Service ;
sd:endpoint "http://data.archiveshub.ac.uk/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://data.archiveshub.ac.uk//#webid> ;
owl:sameAs <http://data.archiveshub.ac.uk/sparql/#this> ;
schema:url <http://data.archiveshub.ac.uk/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint36#this> a sd:Service ;
sd:endpoint "http://data.bibliotheken.nl/sparql" ;
rdfs:label "Royal Library of The Netherlands" ;
void:triples "161540462"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Royal Library of The Netherlands" ;
schema:publisher <http://data.bibliotheken.nl/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.bibliotheken.nl/sparql#this> ;
schema:url <http://data.bibliotheken.nl/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint37#this> a sd:Service ;
sd:endpoint "http://data.cnr.it/sparql-proxy/" ;
schema:publisher <http://data.cnr.it/-proxy/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.cnr.it/sparql-proxy/#this> ;
schema:url <http://data.cnr.it/sparql-proxy/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint38#this> a sd:Service ;
sd:endpoint "http://data.doremus.org/sparql" ;
rdfs:label "Doremus" ;
void:triples "91088390"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Doremus" ;
schema:publisher <http://data.doremus.org/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.doremus.org/sparql#this> ;
schema:url <http://data.doremus.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint39#this> a sd:Service ;
sd:endpoint "http://data.legilux.public.lu/sparql" ;
rdfs:label "Legislation in Luxembourg" ;
void:triples "7285871"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Legislation in Luxembourg" ;
schema:publisher <http://data.legilux.public.lu/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.legilux.public.lu/sparql#this> ;
schema:url <http://data.legilux.public.lu/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint40#this> a sd:Service ;
sd:endpoint "http://data.logainm.ie/sparql/" ;
schema:publisher <http://data.logainm.ie//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.logainm.ie/sparql/#this> ;
schema:url <http://data.logainm.ie/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint41#this> a sd:Service ;
sd:endpoint "http://data.organic-edunet.eu/sparql" ;
rdfs:label "Organic.Edunet" ;
void:triples "no response 2019-12-19"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Organic.Edunet" ;
schema:publisher <http://data.organic-edunet.eu/#webid> ;
owl:sameAs <http://data.organic-edunet.eu/sparql#this> ;
schema:url <http://data.organic-edunet.eu/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint42#this> a sd:Service ;
sd:endpoint "http://data.ox.ac.uk/sparql/" ;
schema:publisher <http://data.ox.ac.uk//#webid> ;
owl:sameAs <http://data.ox.ac.uk/sparql/#this> ;
schema:url <http://data.ox.ac.uk/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint43#this> a sd:Service ;
sd:endpoint "http://data.persee.fr/explorer/sparql-endpoint/" ;
rdfs:label "Data Persee" ;
void:triples "42406274"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Data Persee" ;
schema:publisher <http://data.persee.fr/explorer/-endpoint/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.persee.fr/explorer/sparql-endpoint/#this> ;
schema:url <http://data.persee.fr/explorer/sparql-endpoint/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint44#this> a sd:Service ;
sd:endpoint "http://data.plan4all.eu/sparql" ;
rdfs:label "Plan4All" ;
void:triples "333321917"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Plan4All" ;
schema:publisher <http://data.plan4all.eu/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://data.plan4all.eu/sparql#this> ;
schema:url <http://data.plan4all.eu/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint45#this> a sd:Service ;
sd:endpoint "http://dati.beniculturali.it/sparql" ;
rdfs:label "ArCo Italian Cultural Heritage Knowledge Graph" ;
void:triples "215270533"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "ArCo Italian Cultural Heritage Knowledge Graph" ;
schema:publisher <http://dati.beniculturali.it/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dati.beniculturali.it/sparql#this> ;
schema:url <http://dati.beniculturali.it/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint46#this> a sd:Service ;
sd:endpoint "http://dati.camera.it/sparql" ;
rdfs:label "Italian Parliament" ;
void:triples "239259287"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Italian Parliament" ;
schema:publisher <http://dati.camera.it/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dati.camera.it/sparql#this> ;
schema:url <http://dati.camera.it/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint47#this> a sd:Service ;
sd:endpoint "http://dati.senato.it/sparql" ;
rdfs:label "Senate of The Republic of Italy" ;
void:triples "54020364"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Senate of The Republic of Italy" ;
schema:publisher <http://dati.senato.it/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dati.senato.it/sparql#this> ;
schema:url <http://dati.senato.it/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint48#this> a sd:Service ;
sd:endpoint "http://datos.bcn.cl/sparql" ;
rdfs:label "Library of Congress Chile" ;
void:triples "12087086"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Library of Congress Chile" ;
schema:publisher <http://datos.bcn.cl/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://datos.bcn.cl/sparql#this> ;
schema:url <http://datos.bcn.cl/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint49#this> a sd:Service ;
sd:endpoint "http://datos.bne.es/sparql/" ;
rdfs:label "Datos" ;
void:triples "289777525"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Datos" ;
schema:publisher <http://datos.bne.es//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://datos.bne.es/sparql/#this> ;
schema:url <http://datos.bne.es/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint50#this> a sd:Service ;
sd:endpoint "http://dbkwik.webdatacommons.org/sparql" ;
rdfs:label "Web Data Commons - DBkWik" ;
void:triples "126923393"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "Web Data Commons - DBkWik" ;
schema:publisher <http://dbkwik.webdatacommons.org/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dbkwik.webdatacommons.org/sparql#this> ;
schema:url <http://dbkwik.webdatacommons.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint51#this> a sd:Service ;
sd:endpoint "http://dblp.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dblp.rkbexplorer.com//#webid> ;
owl:sameAs <http://dblp.rkbexplorer.com/sparql/#this> ;
schema:url <http://dblp.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint52#this> a sd:Service ;
sd:endpoint "http://dbpedia-live.openlinksw.com/sparql" ;
rdfs:label "OpenLink DBpedia Live " ;
void:triples "590596030"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "OpenLink DBpedia Live " ;
schema:publisher <http://www.openlinksw.com/#this> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dbpedia-live.openlinksw.com/sparql#this> ;
schema:url <http://dbpedia-live.openlinksw.com/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint53#this> a sd:Service ;
sd:endpoint "http://dbpedia.org/sparql" ;
rdfs:label "DBpedia Association" ;
void:triples "1625383616"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "DBpedia Association" ;
schema:publisher <http://dbpedia.org/resource/DBpedia> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dbpedia.org/sparql#this> ;
schema:url <http://dbpedia.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint54#this> a sd:Service ;
sd:endpoint "http://dbsnp.bio2rdf.org/sparql/" ;
schema:publisher <http://dbsnp.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://dbsnp.bio2rdf.org/sparql/#this> ;
schema:url <http://dbsnp.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint55#this> a sd:Service ;
sd:endpoint "http://dbtune.org/bbc/peel/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dbtune.org/bbc/peel//#webid> ;
owl:sameAs <http://dbtune.org/bbc/peel/sparql/#this> ;
schema:url <http://dbtune.org/bbc/peel/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint56#this> a sd:Service ;
sd:endpoint "http://dbtune.org/classical/sparql/" ;
rdfs:label "DBTune Classic" ;
schema:name "DBTune Classic" ;
schema:publisher <http://dbtune.org/classical//#webid> ;
owl:sameAs <http://dbtune.org/classical/sparql/#this> ;
schema:url <http://dbtune.org/classical/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint57#this> a sd:Service ;
sd:endpoint "http://dbtune.org/jamendo/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dbtune.org/jamendo//#webid> ;
owl:sameAs <http://dbtune.org/jamendo/sparql/#this> ;
schema:url <http://dbtune.org/jamendo/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint58#this> a sd:Service ;
sd:endpoint "http://dbtune.org/magnatune/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dbtune.org/magnatune//#webid> ;
owl:sameAs <http://dbtune.org/magnatune/sparql/#this> ;
schema:url <http://dbtune.org/magnatune/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint59#this> schema:url <http://dbtune.org/musicbrainz/sparql/> ;
a sd:Service ;
sd:endpoint "http://dbtune.org/musicbrainz/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dbtune.org/musicbrainz//#webid> ;
owl:sameAs <http://dbtune.org/musicbrainz/sparql/#this> .
<http://data.openlinksw.com/oplweb/sparql-endpoint60#this> a sd:Service ;
sd:endpoint "http://dbtune.org/myspace/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dbtune.org/myspace//#webid> ;
owl:sameAs <http://dbtune.org/myspace/sparql/#this> ;
schema:url <http://dbtune.org/myspace/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint61#this> sd:endpoint "http://de.dbpedia.org/sparql" ;
a sd:Service ;
rdfs:label "German DBpedia Edition " ;
schema:name "German DBpedia Edition " ;
schema:publisher <http://de.dbpedia.org/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://de.dbpedia.org/sparql#this> ;
schema:url <http://de.dbpedia.org/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint62#this> a sd:Service ;
sd:endpoint "http://deepblue.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://deepblue.rkbexplorer.com//#webid> ;
owl:sameAs <http://deepblue.rkbexplorer.com/sparql/#this> ;
schema:url <http://deepblue.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint63#this> a sd:Service ;
sd:endpoint "http://demo.openlinksw.com/sparql" ;
rdfs:label "Open Demo Server" ;
schema:name "Open Demo Server" ;
schema:publisher <http://demo.openlinksw.com/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://demo.openlinksw.com/sparql#this> ;
schema:url <http://demo.openlinksw.com/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint64#this> a sd:Service ;
sd:endpoint "http://deploy.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://deploy.rkbexplorer.com//#webid> ;
owl:sameAs <http://deploy.rkbexplorer.com/sparql/#this> ;
schema:url <http://deploy.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint65#this> a sd:Service ;
sd:endpoint "http://digital-agenda-data.eu/sparql" ;
rdfs:label "EU Digital Agenda" ;
void:triples "9286192"^^<http://www.w3.org/2001/XMLSchema#int> ;
schema:name "EU Digital Agenda" ;
schema:publisher <http://digital-agenda-data.eu/#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://digital-agenda-data.eu/sparql#this> ;
schema:url <http://digital-agenda-data.eu/sparql> .
<http://data.openlinksw.com/oplweb/sparql-endpoint66#this> a sd:Service ;
sd:endpoint "http://digitaleconomy.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://digitaleconomy.rkbexplorer.com//#webid> ;
owl:sameAs <http://digitaleconomy.rkbexplorer.com/sparql/#this> ;
schema:url <http://digitaleconomy.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint67#this> a sd:Service ;
sd:endpoint "http://dotac.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://dotac.rkbexplorer.com//#webid> ;
owl:sameAs <http://dotac.rkbexplorer.com/sparql/#this> ;
schema:url <http://dotac.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint68#this> a sd:Service ;
sd:endpoint "http://drugbank.bio2rdf.org/sparql/" ;
schema:publisher <http://drugbank.bio2rdf.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://drugbank.bio2rdf.org/sparql/#this> ;
schema:url <http://drugbank.bio2rdf.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint69#this> a sd:Service ;
sd:endpoint "http://edan.si.edu/saam/sparql " ;
rdfs:label "Smithsonian Museum" ;
schema:name "Smithsonian Museum" ;
schema:publisher <http://data.openlinksw.com/oplweb/http%3A%2F%2Fedan.si.edu%2Fsaam%2F+%23webid> ;
owl:sameAs <http://data.openlinksw.com/oplweb/http%3A%2F%2Fedan.si.edu%2Fsaam%2Fsparql+%23this> ;
schema:url <http://data.openlinksw.com/oplweb/http%3A%2F%2Fedan.si.edu%2Fsaam%2Fsparql+> .
<http://data.openlinksw.com/oplweb/sparql-endpoint70#this> a sd:Service ;
sd:endpoint "http://el.dbpedia.org/sparql/" ;
schema:publisher <http://el.dbpedia.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://el.dbpedia.org/sparql/#this> ;
schema:url <http://el.dbpedia.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint71#this> a sd:Service ;
sd:endpoint "http://environment.data.gov.uk/sparql/bwq/query/" ;
rdfs:label "Defra Data Services" ;
schema:name "Defra Data Services" ;
schema:publisher <http://environment.data.gov.uk//bwq/query/#webid> ;
owl:sameAs <http://environment.data.gov.uk/sparql/bwq/query/#this> ;
schema:url <http://environment.data.gov.uk/sparql/bwq/query/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint72#this> a sd:Service ;
sd:endpoint "http://eprints.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://eprints.rkbexplorer.com//#webid> ;
owl:sameAs <http://eprints.rkbexplorer.com/sparql/#this> ;
schema:url <http://eprints.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint73#this> a sd:Service ;
sd:endpoint "http://epsrc.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://epsrc.rkbexplorer.com//#webid> ;
owl:sameAs <http://epsrc.rkbexplorer.com/sparql/#this> ;
schema:url <http://epsrc.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint74#this> a sd:Service ;
sd:endpoint "http://era.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://era.rkbexplorer.com//#webid> ;
owl:sameAs <http://era.rkbexplorer.com/sparql/#this> ;
schema:url <http://era.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint75#this> a sd:Service ;
sd:endpoint "http://es.dbpedia.org/sparql/" ;
schema:publisher <http://es.dbpedia.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://es.dbpedia.org/sparql/#this> ;
schema:url <http://es.dbpedia.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint76#this> a sd:Service ;
sd:endpoint "http://eu.dbpedia.org/sparql/" ;
schema:publisher <http://eu.dbpedia.org//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://eu.dbpedia.org/sparql/#this> ;
schema:url <http://eu.dbpedia.org/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint77#this> a sd:Service ;
sd:endpoint "http://eurecom.rkbexplorer.com/sparql/" ;
rdfs:label "DBTune" ;
schema:name "DBTune" ;
schema:publisher <http://eurecom.rkbexplorer.com//#webid> ;
owl:sameAs <http://eurecom.rkbexplorer.com/sparql/#this> ;
schema:url <http://eurecom.rkbexplorer.com/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint78#this> a sd:Service ;
sd:endpoint "http://eventmedia.eurecom.fr/sparql/" ;
schema:publisher <http://eventmedia.eurecom.fr//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://eventmedia.eurecom.fr/sparql/#this> ;
schema:url <http://eventmedia.eurecom.fr/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint79#this> a sd:Service ;
sd:endpoint "http://extbi.lab.aau.dk/sparql/" ;
schema:publisher <http://extbi.lab.aau.dk//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://extbi.lab.aau.dk/sparql/#this> ;
schema:url <http://extbi.lab.aau.dk/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint80#this> a sd:Service ;
sd:endpoint "http://factforge.net/sparql/" ;
rdfs:label "FactForge)" ;
schema:name "FactForge)" ;
schema:publisher <http://factforge.net//#webid> ;
owl:sameAs <http://factforge.net/sparql/#this> ;
schema:url <http://factforge.net/sparql/> .
<http://data.openlinksw.com/oplweb/sparql-endpoint81#this> a sd:Service ;
sd:endpoint "http://foodpedia.tk/sparql/" ;
rdfs:label "Foodpedia" ;
schema:name "Foodpedia" ;
schema:publisher <http://foodpedia.tk//#webid> ;
prov:component <http://data.openlinksw.com/oplweb/product/Virtuoso#this> ;
owl:sameAs <http://foodpedia.tk/sparql/#this> ;
schema:url <http://foodpedia.tk/sparql/> .