forked from alangrafu/lodspeakr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
namespaces.php
664 lines (663 loc) · 41.5 KB
/
namespaces.php
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
<?
$conf["ns"]["yago"] = "http://dbpedia.org/class/yago/";
$conf["ns"]["rdf"] = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
$conf["ns"]["dbp"] = "http://dbpedia.org/property/";
$conf["ns"]["foaf"] = "http://xmlns.com/foaf/0.1/";
$conf["ns"]["owl"] = "http://www.w3.org/2002/07/owl#";
$conf["ns"]["dc"] = "http://purl.org/dc/elements/1.1/";
$conf["ns"]["dbo"] = "http://dbpedia.org/ontology/";
$conf["ns"]["rdfs"] = "http://www.w3.org/2000/01/rdf-schema#";
$conf["ns"]["sc"] = "http://umbel.org/umbel/sc/";
$conf["ns"]["rss"] = "http://purl.org/rss/1.0/";
$conf["ns"]["fb"] = "http://rdf.freebase.com/ns/";
$conf["ns"]["geonames"] = "http://www.geonames.org/ontology#";
$conf["ns"]["skos"] = "http://www.w3.org/2004/02/skos/core#";
$conf["ns"]["cyc"] = "http://sw.opencyc.org/concept/";
$conf["ns"]["geo"] = "http://www.w3.org/2003/01/geo/wgs84_pos#";
$conf["ns"]["sioc"] = "http://rdfs.org/sioc/ns#";
$conf["ns"]["akt"] = "http://www.aktors.org/ontology/portal#";
$conf["ns"]["admin"] = "http://webns.net/mvcb/";
$conf["ns"]["dbpedia"] = "http://dbpedia.org/resource/";
$conf["ns"]["gr"] = "http://purl.org/goodrelations/v1#";
$conf["ns"]["swrc"] = "http://swrc.ontoware.org/ontology#";
$conf["ns"]["xsd"] = "http://www.w3.org/2001/XMLSchema#";
$conf["ns"]["xhtml"] = "http://www.w3.org/1999/xhtml/vocab#";
$conf["ns"]["dbpprop"] = "http://dbpedia.org/property/";
$conf["ns"]["dc11"] = "http://purl.org/dc/elements/1.1/";
$conf["ns"]["doap"] = "http://usefulinc.com/ns/doap#";
$conf["ns"]["vcard"] = "http://www.w3.org/2006/vcard/ns#";
$conf["ns"]["content"] = "http://purl.org/rss/1.0/modules/content/";
$conf["ns"]["bill"] = "http://www.rdfabout.com/rdf/schema/usbill/";
$conf["ns"]["mo"] = "http://purl.org/ontology/mo/";
$conf["ns"]["dcterms"] = "http://purl.org/dc/terms/";
$conf["ns"]["wot"] = "http://xmlns.com/wot/0.1/";
$conf["ns"]["wn20schema"] = "http://www.w3.org/2006/03/wn/wn20/schema/";
$conf["ns"]["dct"] = "http://purl.org/dc/terms/";
$conf["ns"]["d2rq"] = "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#";
$conf["ns"]["gen"] = "http://www.w3.org/2006/gen/ont#";
$conf["ns"]["nie"] = "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#";
$conf["ns"]["test2"] = "http://this.invalid/test2#";
$conf["ns"]["void"] = "http://rdfs.org/ns/void#";
$conf["ns"]["org"] = "http://www.w3.org/ns/org#";
$conf["ns"]["movie"] = "http://data.linkedmdb.org/resource/movie/";
$conf["ns"]["ex"] = "http://example.com/";
$conf["ns"]["rel"] = "http://purl.org/vocab/relationship/";
$conf["ns"]["bio"] = "http://purl.org/vocab/bio/0.1/";
$conf["ns"]["http"] = "http://www.w3.org/2006/http#";
$conf["ns"]["nfo"] = "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#";
$conf["ns"]["dcmit"] = "http://purl.org/dc/dcmitype/";
$conf["ns"]["ac"] = "http://umbel.org/umbel/ac/";
$conf["ns"]["reco"] = "http://purl.org/reco#";
$conf["ns"]["cc"] = "http://creativecommons.org/ns#";
$conf["ns"]["xfn"] = "http://vocab.sindice.com/xfn#";
$conf["ns"]["earl"] = "http://www.w3.org/ns/earl#";
$conf["ns"]["og"] = "http://opengraphprotocol.org/schema/";
$conf["ns"]["ical"] = "http://www.w3.org/2002/12/cal/ical#";
$conf["ns"]["air"] = "http://dig.csail.mit.edu/TAMI/2007/amord/air#";
$conf["ns"]["rev"] = "http://purl.org/stuff/rev#";
$conf["ns"]["media"] = "http://purl.org/media#";
$conf["ns"]["cv"] = "http://rdfs.org/resume-rdf/";
$conf["ns"]["tag"] = "http://www.holygoat.co.uk/owl/redwood/0.1/tags/";
$conf["ns"]["swc"] = "http://data.semanticweb.org/ns/swc/ontology#";
$conf["ns"]["dcq"] = "http://purl.org/dc/terms/";
$conf["ns"]["xf"] = "http://www.w3.org/2002/xforms/";
$conf["ns"]["bibo"] = "http://purl.org/ontology/bibo/";
$conf["ns"]["cfp"] = "http://sw.deri.org/2005/08/conf/cfp.owl#";
$conf["ns"]["sism"] = "http://purl.oclc.org/NET/sism/0.1/";
$conf["ns"]["vann"] = "http://purl.org/vocab/vann/";
$conf["ns"]["botany"] = "http://purl.org/NET/biol/botany#";
$conf["ns"]["days"] = "http://ontologi.es/days#";
$conf["ns"]["owlim"] = "http://www.ontotext.com/trree/owlim#";
$conf["ns"]["factbook"] = "http://www4.wiwiss.fu-berlin.de/factbook/ns#";
$conf["ns"]["osag"] = "http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf#";
$conf["ns"]["fn"] = "http://www.w3.org/2005/xpath-functions#";
$conf["ns"]["cld"] = "http://purl.org/cld/terms/";
$conf["ns"]["afn"] = "http://jena.hpl.hp.com/ARQ/function#";
$conf["ns"]["musim"] = "http://purl.org/ontology/similarity/";
$conf["ns"]["dir"] = "http://schemas.talis.com/2005/dir/schema#";
$conf["ns"]["akts"] = "http://www.aktors.org/ontology/support#";
$conf["ns"]["book"] = "http://purl.org/NET/book/vocab#";
$conf["ns"]["po"] = "http://purl.org/ontology/po/";
$conf["ns"]["aiiso"] = "http://purl.org/vocab/aiiso/schema#";
$conf["ns"]["mu"] = "http://www.kanzaki.com/ns/music#";
$conf["ns"]["dbr"] = "http://dbpedia.org/resource/";
$conf["ns"]["sd"] = "http://www.w3.org/ns/sparql-service-description#";
$conf["ns"]["biblio"] = "http://purl.org/net/biblio#";
$conf["ns"]["cs"] = "http://purl.org/vocab/changeset/schema#";
$conf["ns"]["ad"] = "http://schemas.talis.com/2005/address/schema#";
$conf["ns"]["uniprot"] = "http://purl.uniprot.org/core/";
$conf["ns"]["event"] = "http://purl.org/NET/c4dm/event.owl#";
$conf["ns"]["dv"] = "http://rdf.data-vocabulary.org/#";
$conf["ns"]["cal"] = "http://www.w3.org/2002/12/cal/ical#";
$conf["ns"]["xs"] = "http://www.w3.org/2001/XMLSchema#";
$conf["ns"]["dcn"] = "http://www.w3.org/2007/uwa/context/deliverycontext.owl#";
$conf["ns"]["log"] = "http://www.w3.org/2000/10/swap/log#";
$conf["ns"]["memo"] = "http://ontologies.smile.deri.ie/2009/02/27/memo#";
$conf["ns"]["rdfg"] = "http://www.w3.org/2004/03/trix/rdfg-1/";
$conf["ns"]["xhv"] = "http://www.w3.org/1999/xhtml/vocab#";
$conf["ns"]["af"] = "http://purl.org/ontology/af/";
$conf["ns"]["co"] = "http://purl.org/ontology/co/core#";
$conf["ns"]["giving"] = "http://ontologi.es/giving#";
$conf["ns"]["ome"] = "http://purl.org/ontomedia/core/expression#";
$conf["ns"]["rif"] = "http://www.w3.org/2007/rif#";
$conf["ns"]["lomvoc"] = "http://ltsc.ieee.org/rdf/lomv1p0/vocabulary#";
$conf["ns"]["ok"] = "http://okkam.org/terms#";
$conf["ns"]["qb"] = "http://purl.org/linked-data/cube#";
$conf["ns"]["sioct"] = "http://rdfs.org/sioc/types#";
$conf["ns"]["ctag"] = "http://commontag.org/ns#";
$conf["ns"]["swande"] = "http://purl.org/swan/1.2/discourse-elements/";
$conf["ns"]["swanq"] = "http://purl.org/swan/1.2/qualifiers/";
$conf["ns"]["math"] = "http://www.w3.org/2000/10/swap/math#";
$conf["ns"]["cmp"] = "http://www.ontologydesignpatterns.org/cp/owl/componency.owl#";
$conf["ns"]["ir"] = "http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#";
$conf["ns"]["daia"] = "http://purl.org/ontology/daia/";
$conf["ns"]["jdbc"] = "http://d2rq.org/terms/jdbc/";
$conf["ns"]["drugbank"] = "http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/";
$conf["ns"]["myspace"] = "http://purl.org/ontology/myspace#";
$conf["ns"]["sr"] = "http://www.openrdf.org/config/repository/sail#";
$conf["ns"]["tzont"] = "http://www.w3.org/2006/timezone#";
$conf["ns"]["daml"] = "http://www.daml.org/2001/03/daml+oil#";
$conf["ns"]["wo"] = "http://purl.org/ontology/wo/";
$conf["ns"]["politico"] = "http://www.rdfabout.com/rdf/schema/politico/";
$conf["ns"]["pmlj"] = "http://inference-web.org/2.0/pml-justification.owl#";
$conf["ns"]["usgov"] = "http://www.rdfabout.com/rdf/schema/usgovt/";
$conf["ns"]["taxo"] = "http://purl.org/rss/1.0/modules/taxonomy/";
$conf["ns"]["lfm"] = "http://purl.org/ontology/last-fm/";
$conf["ns"]["frbr"] = "http://purl.org/vocab/frbr/core#";
$conf["ns"]["vote"] = "http://www.rdfabout.com/rdf/schema/vote/";
$conf["ns"]["doac"] = "http://ramonantonio.net/doac/0.1/#";
$conf["ns"]["wn"] = "http://xmlns.com/wordnet/1.6/";
$conf["ns"]["prv"] = "http://purl.org/net/provenance/ns#";
$conf["ns"]["con"] = "http://www.w3.org/2000/10/swap/pim/contact#";
$conf["ns"]["affy"] = "http://www.affymetrix.com/community/publications/affymetrix/tmsplice#";
$conf["ns"]["scot"] = "http://scot-project.org/scot/ns#";
$conf["ns"]["irrl"] = "http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl#";
$conf["ns"]["nco"] = "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#";
$conf["ns"]["scovo"] = "http://purl.org/NET/scovo#";
$conf["ns"]["omt"] = "http://purl.org/ontomedia/ext/common/trait#";
$conf["ns"]["lgd"] = "http://linkedgeodata.org/ontology/";
$conf["ns"]["wordmap"] = "http://purl.org/net/ns/wordmap#";
$conf["ns"]["spin"] = "http://spinrdf.org/spin#";
$conf["ns"]["swrl"] = "http://www.w3.org/2003/11/swrl#";
$conf["ns"]["lastfm"] = "http://purl.org/ontology/last-fm/";
$conf["ns"]["lx"] = "http://purl.org/NET/lx#";
$conf["ns"]["rep"] = "http://www.openrdf.org/config/repository#";
$conf["ns"]["ore"] = "http://www.openarchives.org/ore/terms/";
$conf["ns"]["ecs"] = "http://rdf.ecs.soton.ac.uk/ontology/ecs#";
$conf["ns"]["spc"] = "http://purl.org/ontomedia/core/space#";
$conf["ns"]["swrlb"] = "http://www.w3.org/2003/11/swrlb#";
$conf["ns"]["lang"] = "http://ontologi.es/lang/core#";
$conf["ns"]["nao"] = "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#";
$conf["ns"]["lode"] = "http://linkedevents.org/ontology/";
$conf["ns"]["ne"] = "http://umbel.org/umbel/ne/";
$conf["ns"]["unit"] = "http://qudt.org/vocab/unit#";
$conf["ns"]["user"] = "http://schemas.talis.com/2005/user/schema#";
$conf["ns"]["omb"] = "http://purl.org/ontomedia/ext/common/being#";
$conf["ns"]["fec"] = "http://www.rdfabout.com/rdf/schema/usfec/";
$conf["ns"]["ti"] = "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#";
$conf["ns"]["coref"] = "http://www.rkbexplorer.com/ontologies/coref#";
$conf["ns"]["eztag"] = "http://ontologies.ezweb.morfeo-project.org/eztag/ns#";
$conf["ns"]["zoology"] = "http://purl.org/NET/biol/zoology#";
$conf["ns"]["os"] = "http://www.w3.org/2000/10/swap/os#";
$conf["ns"]["atomix"] = "http://buzzword.org.uk/rdf/atomix#";
$conf["ns"]["doc"] = "http://www.w3.org/2000/10/swap/pim/doc#";
$conf["ns"]["dctype"] = "http://purl.org/dc/dcmitype/";
$conf["ns"]["myspo"] = "http://purl.org/ontology/myspace#";
$conf["ns"]["es"] = "http://eulersharp.sourceforge.net/2003/03swap/log-rules#";
$conf["ns"]["java"] = "http://www.w3.org/2007/uwa/context/java.owl#";
$conf["ns"]["hard"] = "http://www.w3.org/2007/uwa/context/hardware.owl#";
$conf["ns"]["ov"] = "http://open.vocab.org/terms/";
$conf["ns"]["sede"] = "http://eventography.org/sede/0.1/";
$conf["ns"]["tmo"] = "http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#";
$conf["ns"]["nrl"] = "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#";
$conf["ns"]["wdrs"] = "http://www.w3.org/2007/05/powder-s#";
$conf["ns"]["ibis"] = "http://purl.org/ibis#";
$conf["ns"]["vs"] = "http://www.w3.org/2003/06/sw-vocab-status/ns#";
$conf["ns"]["money"] = "http://purl.org/net/rdf-money/";
$conf["ns"]["wdr"] = "http://www.w3.org/2007/05/powder#";
$conf["ns"]["imm"] = "http://schemas.microsoft.com/imm/";
$conf["ns"]["code"] = "http://telegraphis.net/ontology/measurement/code#";
$conf["ns"]["dcam"] = "http://purl.org/dc/dcam/";
$conf["ns"]["acc"] = "http://purl.org/NET/acc#";
$conf["ns"]["rsa"] = "http://www.w3.org/ns/auth/rsa#";
$conf["ns"]["kwijibo"] = "http://kwijibo.talis.com/";
$conf["ns"]["abc"] = "http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#";
$conf["ns"]["xhe"] = "http://buzzword.org.uk/rdf/xhtml-elements#";
$conf["ns"]["ncal"] = "http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#";
$conf["ns"]["meta"] = "http://www.openrdf.org/rdf/2009/metadata#";
$conf["ns"]["wnschema"] = "http://www.cogsci.princeton.edu/~wn/schema/";
$conf["ns"]["h5"] = "http://buzzword.org.uk/rdf/h5#";
$conf["ns"]["tdb"] = "http://jena.hpl.hp.com/2008/tdb#";
$conf["ns"]["video"] = "http://purl.org/media/video#";
$conf["ns"]["sail"] = "http://www.openrdf.org/config/sail#";
$conf["ns"]["phss"] = "http://ns.poundhill.com/phss/1.0/";
$conf["ns"]["omp"] = "http://purl.org/ontomedia/ext/common/profession#";
$conf["ns"]["acl"] = "http://www.w3.org/ns/auth/acl#";
$conf["ns"]["iswc"] = "http://annotation.semanticweb.org/2004/iswc#";
$conf["ns"]["chord"] = "http://purl.org/ontology/chord/";
$conf["ns"]["mit"] = "http://purl.org/ontology/mo/mit#";
$conf["ns"]["sit"] = "http://www.ontologydesignpatterns.org/cp/owl/situation.owl#";
$conf["ns"]["oauth"] = "http://demiblog.org/vocab/oauth#";
$conf["ns"]["space"] = "http://purl.org/net/schemas/space/";
$conf["ns"]["ptr"] = "http://www.w3.org/2009/pointers#";
$conf["ns"]["osoc"] = "http://web-semantics.org/ns/opensocial#";
$conf["ns"]["irw"] = "http://www.ontologydesignpatterns.org/ont/web/irw.owl#";
$conf["ns"]["rei"] = "http://www.w3.org/2004/06/rei#";
$conf["ns"]["sv"] = "http://schemas.talis.com/2005/service/schema#";
$conf["ns"]["umbel"] = "http://umbel.org/umbel#";
$conf["ns"]["lingvoj"] = "http://www.lingvoj.org/ontology#";
$conf["ns"]["resex"] = "http://resex.rkbexplorer.com/ontologies/resex#";
$conf["ns"]["powder"] = "http://www.w3.org/2007/05/powder#";
$conf["ns"]["ya"] = "http://blogs.yandex.ru/schema/foaf/";
$conf["ns"]["omc"] = "http://purl.org/ontomedia/ext/common/bestiary#";
$conf["ns"]["p3p"] = "http://www.w3.org/2002/01/p3prdfv1#";
$conf["ns"]["custom"] = "http://www.openrdf.org/config/sail/custom#";
$conf["ns"]["xen"] = "http://buzzword.org.uk/rdf/xen#";
$conf["ns"]["tl"] = "http://purl.org/NET/c4dm/timeline.owl#";
$conf["ns"]["airport"] = "http://www.daml.org/2001/10/html/airport-ont#";
$conf["ns"]["protege"] = "http://protege.stanford.edu/system#";
$conf["ns"]["acm"] = "http://www.rkbexplorer.com/ontologies/acm#";
$conf["ns"]["swh"] = "http://plugin.org.uk/swh-plugins/";
$conf["ns"]["lom"] = "http://ltsc.ieee.org/rdf/lomv1p0/lom#";
$conf["ns"]["link"] = "http://www.w3.org/2006/link#";
$conf["ns"]["prj"] = "http://purl.org/stuff/project/";
$conf["ns"]["frbre"] = "http://purl.org/vocab/frbr/extended#";
$conf["ns"]["sdl"] = "http://purl.org/vocab/riro/sdl#";
$conf["ns"]["hlisting"] = "http://sindice.com/hlisting/0.1/";
$conf["ns"]["nmo"] = "http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#";
$conf["ns"]["wv"] = "http://vocab.org/waiver/terms/";
$conf["ns"]["spl"] = "http://spinrdf.org/spl#";
$conf["ns"]["sp"] = "http://spinrdf.org/sp#";
$conf["ns"]["common"] = "http://www.w3.org/2007/uwa/context/common.owl#";
$conf["ns"]["cert"] = "http://www.w3.org/ns/auth/cert#";
$conf["ns"]["resist"] = "http://www.rkbexplorer.com/ontologies/resist#";
$conf["ns"]["swp"] = "http://www.w3.org/2004/03/trix/swp-2/";
$conf["ns"]["lt"] = "http://diplomski.nelakolundzija.org/LTontology.rdf#";
$conf["ns"]["net"] = "http://www.w3.org/2007/uwa/context/network.owl#";
$conf["ns"]["dailymed"] = "http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/";
$conf["ns"]["fresnel"] = "http://www.w3.org/2004/09/fresnel#";
$conf["ns"]["fed"] = "http://www.openrdf.org/config/sail/federation#";
$conf["ns"]["ire"] = "http://www.ontologydesignpatterns.org/cpont/ire.owl#";
$conf["ns"]["product"] = "http://purl.org/commerce/product#";
$conf["ns"]["nexif"] = "http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#";
$conf["ns"]["test"] = "http://test2.example.com/";
$conf["ns"]["omm"] = "http://purl.org/ontomedia/core/media#";
$conf["ns"]["tags"] = "http://www.holygoat.co.uk/owl/redwood/0.1/tags/";
$conf["ns"]["biol"] = "http://purl.org/NET/biol/ns#";
$conf["ns"]["bio2rdf"] = "http://bio2rdf.org/";
$conf["ns"]["ddc"] = "http://purl.org/NET/decimalised#";
$conf["ns"]["sider"] = "http://www4.wiwiss.fu-berlin.de/sider/resource/sider/";
$conf["ns"]["trackback"] = "http://madskills.com/public/xml/rss/module/trackback/";
$conf["ns"]["skosxl"] = "http://www.w3.org/2008/05/skos-xl#";
$conf["ns"]["smiley"] = "http://www.smileyontology.com/ns#";
$conf["ns"]["gold"] = "http://purl.org/linguistics/gold/";
$conf["ns"]["gpt"] = "http://purl.org/vocab/riro/gpt#";
$conf["ns"]["atom"] = "http://www.w3.org/2005/Atom/";
$conf["ns"]["soft"] = "http://www.w3.org/2007/uwa/context/software.owl#";
$conf["ns"]["sesame"] = "http://www.openrdf.org/schema/sesame#";
$conf["ns"]["swandr"] = "http://purl.org/swan/1.2/discourse-relationships/";
$conf["ns"]["web"] = "http://www.w3.org/2007/uwa/context/web.owl#";
$conf["ns"]["swanqs"] = "http://purl.org/swan/1.2/qualifiers/";
$conf["ns"]["pimo"] = "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#";
$conf["ns"]["push"] = "http://www.w3.org/2007/uwa/context/push.owl#";
$conf["ns"]["wgs84"] = "http://www.w3.org/2003/01/geo/wgs84_pos#";
$conf["ns"]["loc"] = "http://www.w3.org/2007/uwa/context/location.owl#";
$conf["ns"]["like"] = "http://ontologi.es/like#";
$conf["ns"]["states"] = "http://www.w3.org/2005/07/aaa#";
$conf["ns"]["time"] = "http://www.w3.org/2006/time#";
$conf["ns"]["bibtex"] = "http://purl.oclc.org/NET/nknouf/ns/bibtex#";
$conf["ns"]["qdoslf"] = "http://foaf.qdos.com/lastfm/schema/";
$conf["ns"]["sim"] = "http://purl.org/ontology/similarity/";
$conf["ns"]["moat"] = "http://moat-project.org/ns#";
$conf["ns"]["dcmitype"] = "http://purl.org/dc/dcmitype/";
$conf["ns"]["music"] = "http://musicontology.com/";
$conf["ns"]["bsbm"] = "http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/";
$conf["ns"]["wairole"] = "http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#";
$conf["ns"]["audio"] = "http://purl.org/media/audio#";
$conf["ns"]["sm"] = "http://topbraid.org/sparqlmotion#";
$conf["ns"]["puc"] = "http://purl.org/NET/puc#";
$conf["ns"]["am"] = "http://vocab.deri.ie/am#";
$conf["ns"]["lotico"] = "http://www.lotico.com/resource/";
$conf["ns"]["pmt"] = "http://tipsy.googlecode.com/svn/trunk/vocab/pmt#";
$conf["ns"]["pmlr"] = "http://inference-web.org/2.0/pml-relation.owl#";
$conf["ns"]["crypto"] = "http://www.w3.org/2000/10/swap/crypto#";
$conf["ns"]["doclist"] = "http://www.junkwork.net/xml/DocumentList#";
$conf["ns"]["ddl"] = "http://purl.org/vocab/riro/ddl#";
$conf["ns"]["dady"] = "http://purl.org/NET/dady#";
$conf["ns"]["list"] = "http://www.w3.org/2000/10/swap/list#";
$conf["ns"]["courseware"] = "http://courseware.rkbexplorer.com/ontologies/courseware#";
$conf["ns"]["wisski"] = "http://wiss-ki.eu/";
$conf["ns"]["sl"] = "http://www.semanlink.net/2001/00/semanlink-schema#";
$conf["ns"]["xl"] = "http://langegger.at/xlwrap/vocab#";
$conf["ns"]["uri"] = "http://purl.org/NET/uri#";
$conf["ns"]["pr"] = "http://ontologi.es/profiling#";
$conf["ns"]["obj"] = "http://www.openrdf.org/rdf/2009/object#";
$conf["ns"]["dummy"] = "http://hello.com/";
$conf["ns"]["conserv"] = "http://conserv.deri.ie/ontology#";
$conf["ns"]["formats"] = "http://www.w3.org/ns/formats/";
$conf["ns"]["climb"] = "http://climb.dataincubator.org/vocabs/climb/";
$conf["ns"]["sml"] = "http://topbraid.org/sparqlmotionlib#";
$conf["ns"]["grddl"] = "http://www.w3.org/2003/g/data-view#";
$conf["ns"]["swanpav"] = "http://purl.org/swan/1.2/pav/";
$conf["ns"]["smf"] = "http://topbraid.org/sparqlmotionfunctions#";
$conf["ns"]["pmlp"] = "http://inference-web.org/2.0/pml-provenance.owl#";
$conf["ns"]["ping"] = "http://purl.org/net/pingback/";
$conf["ns"]["lifecycle"] = "http://purl.org/vocab/lifecycle/schema#";
$conf["ns"]["scv"] = "http://purl.org/NET/scovo#";
$conf["ns"]["gob"] = "http://purl.org/ontology/last-fm/";
$conf["ns"]["opm"] = "http://openprovenance.org/ontology#";
$conf["ns"]["cycann"] = "http://sw.cyc.com/CycAnnotations_v1#";
$conf["ns"]["lfn"] = "http://www.dotnetrdf.org/leviathan#";
$conf["ns"]["urn"] = "http://fliqz.com/";
$conf["ns"]["contact"] = "http://www.w3.org/2000/10/swap/pim/contact#";
$conf["ns"]["osgb"] = "http://data.ordnancesurvey.co.uk/id/";
$conf["ns"]["label"] = "http://purl.org/net/vocab/2004/03/label#";
$conf["ns"]["dcat"] = "http://www.w3.org/ns/dcat#";
$conf["ns"]["mysql"] = "http://web-semantics.org/ns/mysql/";
$conf["ns"]["c4n"] = "http://vocab.deri.ie/c4n#";
$conf["ns"]["dcterm"] = "http://purl.org/dc/terms/";
$conf["ns"]["rdfa"] = "http://www.w3.org/ns/rdfa#";
$conf["ns"]["evset"] = "http://dsnotify.org/vocab/eventset/0.1/";
$conf["ns"]["play"] = "http://uriplay.org/spec/ontology/#";
$conf["ns"]["xesam"] = "http://freedesktop.org/standards/xesam/1.0/core#";
$conf["ns"]["resource"] = "http://purl.org/vocab/resourcelist/schema#";
$conf["ns"]["so"] = "http://purl.org/ontology/symbolic-music/";
$conf["ns"]["plink"] = "http://buzzword.org.uk/rdf/personal-link-types#";
$conf["ns"]["ldap"] = "http://purl.org/net/ldap/";
$conf["ns"]["psych"] = "http://purl.org/vocab/psychometric-profile/";
$conf["ns"]["exif"] = "http://www.w3.org/2003/12/exif/ns#";
$conf["ns"]["profiling"] = "http://ontologi.es/profiling#";
$conf["ns"]["string"] = "http://www.w3.org/2000/10/swap/string#";
$conf["ns"]["commerce"] = "http://purl.org/commerce#";
$conf["ns"]["sysont"] = "http://ns.ontowiki.net/SysOnt/";
$conf["ns"]["opensearch"] = "http://a9.com/-/spec/opensearch/1.1/";
$conf["ns"]["swanag"] = "http://purl.org/swan/1.2/agents/";
$conf["ns"]["nid3"] = "http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#";
$conf["ns"]["swanci"] = "http://purl.org/swan/1.2/citations/";
$conf["ns"]["swanco"] = "http://purl.org/swan/1.2/swan-commons/";
$conf["ns"]["mf"] = "http://poshrdf.org/ns/mf#";
$conf["ns"]["xforms"] = "http://www.w3.org/2002/xforms/";
$conf["ns"]["okkam"] = "http://models.okkam.org/ENS-core-vocabulary#";
$conf["ns"]["tripfs"] = "http://purl.org/tripfs/2010/02#";
$conf["ns"]["cnt"] = "http://www.w3.org/2008/content#";
$conf["ns"]["rec"] = "http://purl.org/ontology/rec/core#";
$conf["ns"]["swivt"] = "http://semantic-mediawiki.org/swivt/1.0#";
$conf["ns"]["imreg"] = "http://www.w3.org/2004/02/image-regions#";
$conf["ns"]["xhtmlvocab"] = "http://www.w3.org/1999/xhtml/vocab/";
$conf["ns"]["meetup"] = "http://www.lotico.com/meetup/";
$conf["ns"]["ttl"] = "http://www.w3.org/2008/turtle#";
$conf["ns"]["opo"] = "http://online-presence.net/opo/ns#";
$conf["ns"]["timeline"] = "http://purl.org/NET/c4dm/timeline.owl#";
$conf["ns"]["dbpediaowl"] = "http://dbpedia.org/ontology/";
$conf["ns"]["rooms"] = "http://vocab.deri.ie/rooms#";
$conf["ns"]["oat"] = "http://openlinksw.com/schemas/oat/";
$conf["ns"]["dbpp"] = "http://dbpedia.org/property/";
$conf["ns"]["geographis"] = "http://telegraphis.net/ontology/geography/geography#";
$conf["ns"]["bib"] = "http://zeitkunst.org/bibtex/0.1/bibtex.owl#";
$conf["ns"]["coin"] = "http://purl.org/court/def/2009/coin#";
$conf["ns"]["wgs"] = "http://www.w3.org/2003/01/geo/wgs84_pos#";
$conf["ns"]["status"] = "http://ontologi.es/status#";
$conf["ns"]["oc"] = "http://opencoinage.org/rdf/";
$conf["ns"]["wgspos"] = "http://www.w3.org/2003/01/geo/wgs84_pos#";
$conf["ns"]["ref"] = "http://purl.org/vocab/relationship/";
$conf["ns"]["pmlt"] = "http://inference-web.org/2.0/pml-trust.owl#";
$conf["ns"]["ezcontext"] = "http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#";
$conf["ns"]["swid"] = "http://semanticweb.org/id/";
$conf["ns"]["sparql"] = "http://www.openrdf.org/config/repository/sparql#";
$conf["ns"]["txn"] = "http://lod.taxonconcept.org/ontology/txn.owl#";
$conf["ns"]["oo"] = "http://purl.org/openorg/";
$conf["ns"]["ct"] = "http://data.linkedct.org/resource/linkedct/";
$conf["ns"]["wlp"] = "http://weblab-project.org/core/model/property/processing/";
$conf["ns"]["ufmedia"] = "http://purl.org/microformat/hmedia/";
$conf["ns"]["prot"] = "http://www.proteinontology.info/po.owl#";
$conf["ns"]["evopat"] = "http://ns.aksw.org/Evolution/";
$conf["ns"]["meteo"] = "http://purl.org/ns/meteo#";
$conf["ns"]["awol"] = "http://bblfish.net/work/atom-owl/2006-06-06/#";
$conf["ns"]["sioca"] = "http://rdfs.org/sioc/actions#";
$conf["ns"]["aifb"] = "http://www.aifb.kit.edu/id/";
$conf["ns"]["pdo"] = "http://ontologies.smile.deri.ie/pdo#";
$conf["ns"]["tarot"] = "http://data.totl.net/tarot/card/";
$conf["ns"]["pto"] = "http://www.productontology.org/id/";
$conf["ns"]["whois"] = "http://www.kanzaki.com/ns/whois#";
$conf["ns"]["rulz"] = "http://purl.org/NET/rulz#";
$conf["ns"]["anca"] = "http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#";
$conf["ns"]["sawsdl"] = "http://www.w3.org/ns/sawsdl#";
$conf["ns"]["ist"] = "http://purl.org/ontology/is/types/";
$conf["ns"]["xbrli"] = "http://www.xbrl.org/2003/instance#";
$conf["ns"]["dnr"] = "http://www.dotnetrdf.org/configuration#";
$conf["ns"]["sdmx"] = "http://purl.org/linked-data/sdmx#";
$conf["ns"]["copyright"] = "http://rhizomik.net/ontologies/2008/05/copyrightonto.owl#";
$conf["ns"]["isi"] = "http://purl.org/ontology/is/inst/";
$conf["ns"]["remus"] = "http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl#";
$conf["ns"]["opus"] = "http://lsdis.cs.uga.edu/projects/semdis/opus#";
$conf["ns"]["yoda"] = "http://purl.org/NET/yoda#";
$conf["ns"]["isq"] = "http://purl.org/ontology/is/quality/";
$conf["ns"]["ean"] = "http://openean.kaufkauf.net/id/";
$conf["ns"]["dayta"] = "http://dayta.me/resource#";
$conf["ns"]["game"] = "http://data.totl.net/game/";
$conf["ns"]["loticoowl"] = "http://www.lotico.com/ontology/";
$conf["ns"]["act"] = "http://www.w3.org/2007/rif-builtin-action#";
$conf["ns"]["derecho"] = "http://purl.org/derecho#";
$conf["ns"]["lark1"] = "http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#";
$conf["ns"]["compass"] = "http://purl.org/net/compass#";
$conf["ns"]["cos"] = "http://www.inria.fr/acacia/corese#";
$conf["ns"]["olo"] = "http://purl.org/ontology/olo/core#";
$conf["ns"]["posh"] = "http://poshrdf.org/ns/posh/";
$conf["ns"]["is"] = "http://purl.org/ontology/is/core#";
$conf["ns"]["opmv"] = "http://purl.org/net/opmv/ns#";
$conf["ns"]["geoes"] = "http://geo.linkeddata.es/page/ontology/";
$conf["ns"]["nt"] = "http://ns.inria.fr/nicetag/2010/09/09/voc#";
$conf["ns"]["gv"] = "http://rdf.data-vocabulary.org/#";
$conf["ns"]["conv"] = "http://purl.org/twc/vocab/conversion/";
$conf["ns"]["geospecies"] = "http://rdf.geospecies.org/ont/geospecies#";
$conf["ns"]["cco"] = "http://purl.org/ontology/cco/core#";
$conf["ns"]["hcterms"] = "http://purl.org/uF/hCard/terms/";
$conf["ns"]["eu"] = "http://eulersharp.sourceforge.net/2003/03swap/log-rules#";
$conf["ns"]["gridworks"] = "http://purl.org/net/opmv/types/gridworks#";
$conf["ns"]["tio"] = "http://purl.org/tio/ns#";
$conf["ns"]["search"] = "http://sindice.com/vocab/search#";
$conf["ns"]["freebase"] = "http://rdf.freebase.com/ns/";
$conf["ns"]["lib"] = "http://schemas.talis.com/2005/library/schema#";
$conf["ns"]["dgfoaf"] = "http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#";
$conf["ns"]["ao"] = "http://purl.org/ontology/ao/core#";
$conf["ns"]["r2r"] = "http://www4.wiwiss.fu-berlin.de/bizer/r2r/";
$conf["ns"]["tripfs2"] = "http://purl.org/tripfs/2010/06#";
$conf["ns"]["cito"] = "http://purl.org/net/cito/";
$conf["ns"]["dblp"] = "http://www4.wiwiss.fu-berlin.de/dblp/terms.rdf#";
$conf["ns"]["protons"] = "http://proton.semanticweb.org/2005/04/protons#";
$conf["ns"]["session"] = "http://redfoot.net/2005/session#";
$conf["ns"]["nsa"] = "http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#";
$conf["ns"]["ma"] = "http://www.w3.org/ns/ma-ont#";
$conf["ns"]["postcode"] = "http://data.ordnancesurvey.co.uk/id/postcodeunit/";
$conf["ns"]["httph"] = "http://www.w3.org/2007/ont/httph#";
$conf["ns"]["toby"] = "http://tobyinkster.co.uk/#";
$conf["ns"]["pbo"] = "http://purl.org/ontology/pbo/core#";
$conf["ns"]["spacerel"] = "http://data.ordnancesurvey.co.uk/ontology/spatialrelations/";
$conf["ns"]["w3p"] = "http://prov4j.org/w3p/";
$conf["ns"]["rail"] = "http://ontologi.es/rail/vocab#";
$conf["ns"]["lp"] = "http://launchpad.net/rdf/launchpad#";
$conf["ns"]["com"] = "http://purl.org/commerce#";
$conf["ns"]["sindice"] = "http://vocab.sindice.net/";
$conf["ns"]["countries"] = "http://eulersharp.sourceforge.net/2003/03swap/countries#";
$conf["ns"]["xfnv"] = "http://vocab.sindice.com/xfn#";
$conf["ns"]["enc"] = "http://www.w3.org/2001/04/xmlenc#";
$conf["ns"]["geodata"] = "http://sws.geonames.org/";
$conf["ns"]["events"] = "http://eulersharp.sourceforge.net/2003/03swap/event#";
$conf["ns"]["dul"] = "http://www.loa-cnr.it/ontologies/DUL.owl#";
$conf["ns"]["rr"] = "http://www.w3.org/ns/r2rml#";
$conf["ns"]["xtypes"] = "http://purl.org/xtypes/";
$conf["ns"]["units"] = "http://eulersharp.sourceforge.net/2003/03swap/unitsExtension#";
$conf["ns"]["crm"] = "http://purl.org/NET/cidoc-crm/core#";
$conf["ns"]["openlinks"] = "http://www.openlinksw.com/schemas/virtrdf#";
$conf["ns"]["esd"] = "http://def.esd.org.uk/";
$conf["ns"]["wordnet"] = "http://purl.org/vocabularies/princeton/wordnet/schema#";
$conf["ns"]["bookmark"] = "http://www.w3.org/2002/01/bookmark#";
$conf["ns"]["linkedct"] = "http://data.linkedct.org/resource/linkedct/";
$conf["ns"]["pgterms"] = "http://www.gutenberg.org/2009/pgterms/";
$conf["ns"]["odp"] = "http://ontologydesignpatterns.org/";
$conf["ns"]["lvont"] = "http://lexvo.org/ontology#";
$conf["ns"]["nocal"] = "http://vocab.deri.ie/nocal#";
$conf["ns"]["drug"] = "http://www.agfa.com/w3c/2009/drugTherapy#";
$conf["ns"]["humanbody"] = "http://eulersharp.sourceforge.net/2003/03swap/humanBody#";
$conf["ns"]["pobo"] = "http://purl.obolibrary.org/obo/";
$conf["ns"]["linkedmdb"] = "http://data.linkedmdb.org/sparql/";
$conf["ns"]["phil"] = "http://philosurfical.open.ac.uk/ontology/philosurfical.owl/";
$conf["ns"]["provenir"] = "http://knoesis.wright.edu/provenir/provenir.owl#";
$conf["ns"]["organiz"] = "http://eulersharp.sourceforge.net/2003/03swap/organization#";
$conf["ns"]["dbprop"] = "http://dbpedia.org/property/";
$conf["ns"]["webtlab"] = "http://webtlab.it.uc3m.es/";
$conf["ns"]["gn"] = "http://www.geonames.org/ontology#";
$conf["ns"]["xds"] = "http://www.w3.org/2001/XMLSchema#";
$conf["ns"]["organism"] = "http://eulersharp.sourceforge.net/2003/03swap/organism#";
$conf["ns"]["languages"] = "http://eulersharp.sourceforge.net/2003/03swap/languages#";
$conf["ns"]["elog"] = "http://eulersharp.sourceforge.net/2003/03swap/log-rules#";
$conf["ns"]["nndsr"] = "http://semanticdiet.com/schema/usda/nndsr/";
$conf["ns"]["opwn"] = "http://www.ontologyportal.org/WordNet.owl#";
$conf["ns"]["bioskos"] = "http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#";
$conf["ns"]["xro"] = "http://www.stalsoft.com/ontologies/xro/ns#";
$conf["ns"]["human"] = "http://eulersharp.sourceforge.net/2003/03swap/human#";
$conf["ns"]["malignneo"] = "http://www.agfa.com/w3c/2009/malignantNeoplasm#";
$conf["ns"]["agent"] = "http://eulersharp.sourceforge.net/2003/03swap/agent#";
$conf["ns"]["genab"] = "http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#";
$conf["ns"]["agents"] = "http://eulersharp.sourceforge.net/2003/03swap/agent#";
$conf["ns"]["muo"] = "http://purl.oclc.org/NET/muo/muo#";
$conf["ns"]["go"] = "http://www.geneontology.org/go#";
$conf["ns"]["lgdo"] = "http://linkedgeodata.org/ontology/";
$conf["ns"]["umbelrc"] = "http://umbel.org/umbel/rc/";
$conf["ns"]["c4o"] = "http://purl.org/spar/c4o/";
$conf["ns"]["prvr"] = "http://purl.org/ontology/prv/rules#";
$conf["ns"]["span"] = "http://www.ifomis.org/bfo/1.1/span#";
$conf["ns"]["ui"] = "http://www.w3.org/ns/ui#";
$conf["ns"]["core"] = "http://vivoweb.org/ontology/core#";
$conf["ns"]["oboro"] = "http://obofoundry.org/ro/ro.owl#";
$conf["ns"]["ps"] = "http://purl.org/payswarm#";
$conf["ns"]["edm"] = "http://www.europeana.eu/schemas/edm/";
$conf["ns"]["zbwext"] = "http://zbw.eu/namespaces/zbw-extensions/";
$conf["ns"]["wf"] = "http://www.w3.org/2005/01/wf/flow#";
$conf["ns"]["transmed"] = "http://www.w3.org/2001/sw/hcls/ns/transmed/";
$conf["ns"]["pc"] = "http://purl.org/opendata-cz/public-contracts#";
$conf["ns"]["pom"] = "http://maven.apache.org/POM/4.0.0#";
$conf["ns"]["sport"] = "http://www.bbc.co.uk/ontologies/sport/";
$conf["ns"]["conversion"] = "http://purl.org/twc/vocab/conversion/";
$conf["ns"]["uni"] = "http://purl.org/weso/uni/uni.html#";
$conf["ns"]["room"] = "http://vocab.deri.ie/rooms#";
$conf["ns"]["wai"] = "http://purl.org/wai#";
$conf["ns"]["wao"] = "http://webtlab.it.uc3m.es/2010/10/WebAppsOntology#";
$conf["ns"]["lod2"] = "http://lod2.eu/schema/";
$conf["ns"]["care"] = "http://eulersharp.sourceforge.net/2003/03swap/care#";
$conf["ns"]["gd"] = "http://rdf.data-vocabulary.org/#";
$conf["ns"]["cpm"] = "http://catalogus-professorum.org/cpm/";
$conf["ns"]["vso"] = "http://purl.org/vso/ns#";
$conf["ns"]["ass"] = "http://uptheasset.org/ontology#";
$conf["ns"]["req"] = "http://ns.softwiki.de/req/";
$conf["ns"]["xsl"] = "http://www.w3.org/1999/XSL/Transform#";
$conf["ns"]["hartigprov"] = "http://purl.org/net/provenance/ns#";
$conf["ns"]["sig"] = "http://purl.org/signature#";
$conf["ns"]["quak"] = "http://dev.w3.org/cvsweb/2000/quacken/vocab#";
$conf["ns"]["infection"] = "http://www.agfa.com/w3c/2009/infectiousDisorder#";
$conf["ns"]["quantities"] = "http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#";
$conf["ns"]["healthcare"] = "http://www.agfa.com/w3c/2009/healthCare#";
$conf["ns"]["hospital"] = "http://www.agfa.com/w3c/2009/hospital#";
$conf["ns"]["ccard"] = "http://purl.org/commerce/creditcard#";
$conf["ns"]["kb"] = "http://deductions.sf.net/ontology/knowledge_base.owl#";
$conf["ns"]["hemogram"] = "http://www.agfa.com/w3c/2009/hemogram#";
$conf["ns"]["clinproc"] = "http://www.agfa.com/w3c/2009/clinicalProcedure#";
$conf["ns"]["cube"] = "http://purl.org/linked-data/cube#";
$conf["ns"]["admingeo"] = "http://data.ordnancesurvey.co.uk/ontology/admingeo/";
$conf["ns"]["cordis"] = "http://www4.wiwiss.fu-berlin.de/cordis/resource/cordis/";
$conf["ns"]["voaf"] = "http://mondeca.com/foaf/voaf#";
$conf["ns"]["fab"] = "http://purl.org/fab/ns#";
$conf["ns"]["payment"] = "http://reference.data.gov.uk/def/payment#";
$conf["ns"]["agetec"] = "http://www.agetec.org/";
$conf["ns"]["eg"] = "http://eulergui.sourceforge.net/engine.owl#";
$conf["ns"]["disease"] = "http://www.agfa.com/w3c/2009/humanDisorder#";
$conf["ns"]["ccom"] = "http://purl.org/ontology/cco/mappings#";
$conf["ns"]["tei"] = "http://www.tei-c.org/ns/1.0/";
$conf["ns"]["sco"] = "http://purl.org/ontology/sco#";
$conf["ns"]["scowt"] = "http://purl.org/weso/ontologies/scowt#";
$conf["ns"]["rnews"] = "http://dec.iptc.org/rnews/0.1/";
$conf["ns"]["clineva"] = "http://www.agfa.com/w3c/2009/clinicalEvaluation#";
$conf["ns"]["arch"] = "http://purl.org/archival/vocab/arch#";
$conf["ns"]["environ"] = "http://eulersharp.sourceforge.net/2003/03swap/environment#";
$conf["ns"]["aneo"] = "http://akonadi-project.org/ontologies/aneo#";
$conf["ns"]["commons"] = "http://commons.psi.enakting.org/def/";
$conf["ns"]["eat"] = "http://www.awesomesauce.net/urmom/";
$conf["ns"]["hints2005"] = "http://purl.org/twc/cabig/model/HINTS2005-1.owl#";
$conf["ns"]["p20"] = "http://zbw.eu/beta/p20/vocab/";
$conf["ns"]["aair"] = "http://xmlns.notu.be/aair#";
$conf["ns"]["theatre"] = "http://purl.org/theatre#";
$conf["ns"]["prvtypes"] = "http://purl.org/net/provenance/types#";
$conf["ns"]["zem"] = "http://s.zemanta.com/ns#";
$conf["ns"]["dgtwc"] = "http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#";
$conf["ns"]["semtweet"] = "http://semantictweet.com/";
$conf["ns"]["obo"] = "http://purl.obolibrary.org/obo/";
$conf["ns"]["vsto"] = "http://escience.rpi.edu/ontology/vsto/2/0/vsto.owl#";
$conf["ns"]["pos"] = "http://www.w3.org/2003/01/geo/wgs84_pos#";
$conf["ns"]["ceo"] = "http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#";
$conf["ns"]["schema"] = "http://schema.org/";
$conf["ns"]["address"] = "http://schemas.talis.com/2005/address/schema#";
$conf["ns"]["uta"] = "http://uptheasset.org/ontology#";
$conf["ns"]["skip"] = "http://skipforward.net/skipforward/resource/";
$conf["ns"]["spatial"] = "http://geovocab.org/spatial#";
$conf["ns"]["out"] = "http://ontologies.hypios.com/out#";
$conf["ns"]["coeus"] = "http://bioinformatics.ua.pt/coeus/";
$conf["ns"]["soap"] = "http://www.w3.org/2003/05/soap-envelope/";
$conf["ns"]["ro"] = "http://purl.org/obo/owl/ro#";
$conf["ns"]["sio"] = "http://semanticscience.org/resource/";
$conf["ns"]["voag"] = "http://voag.linkedmodel.org/schema/voag#";
$conf["ns"]["gml"] = "http://www.opengis.net/gml/";
$conf["ns"]["govwild"] = "http://govwild.org/ontology/GWOntology.owl#";
$conf["ns"]["vaem"] = "http://www.linkedmodel.org/schema/vaem#";
$conf["ns"]["rdfdf"] = "http://www.openlinksw.com/virtrdf-data-formats#";
$conf["ns"]["rich"] = "http://rdf.data-vocabulary.org/";
$conf["ns"]["prism"] = "http://prismstandard.org/namespaces/1.2/basic/";
$conf["ns"]["vcard2006"] = "http://www.w3.org/2006/vcard/ns#";
$conf["ns"]["sioctypes"] = "http://rdfs.org/sioc/types#";
$conf["ns"]["httpvoc"] = "http://www.w3.org/2006/http#";
$conf["ns"]["ngeo"] = "http://geovocab.org/geometry#";
$conf["ns"]["skiresort"] = "http://www.openlinksw.com/ski_resorts/schema#";
$conf["ns"]["gelo"] = "http://krauthammerlab.med.yale.edu/ontologies/gelo#";
$conf["ns"]["oboso"] = "http://purl.org/obo/owl/SO#";
$conf["ns"]["eco"] = "http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#";
$conf["ns"]["cmo"] = "http://purl.org/twc/ontologies/cmo.owl#";
$conf["ns"]["oper"] = "http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#";
$conf["ns"]["campsite"] = "http://www.openlinksw.com/campsites/schema#";
$conf["ns"]["saxon"] = "http://saxon.sf.net/";
$conf["ns"]["rv"] = "http://wifo-ravensburg.de/semanticweb.rdf#";
$conf["ns"]["bcnnorms"] = "http://datos.bcn.cl/ontologies/bcn-norms#";
$conf["ns"]["olia"] = "http://purl.org/olia/olia.owl#";
$conf["ns"]["vivo"] = "http://vivoweb.org/ontology/core#";
$conf["ns"]["cpv"] = "http://purl.org/weso/cpv/";
$conf["ns"]["iao"] = "http://purl.obolibrary.org/obo/iao.owl#";
$conf["ns"]["telmap"] = "http://purl.org/telmap/";
$conf["ns"]["fingal"] = "http://vocab.deri.ie/fingal#";
$conf["ns"]["edam"] = "http://purl.bioontology.org/ontology/EDAM/";
$conf["ns"]["ann"] = "http://www.w3.org/2000/10/annotation-ns#";
$conf["ns"]["res"] = "http://www.w3.org/2005/sparql-results#";
$conf["ns"]["fct"] = "http://openlinksw.com/services/facets/1.0/";
$conf["ns"]["vitro"] = "http://vitro.mannlib.cornell.edu/ns/vitro/public#";
$conf["ns"]["owls"] = "http://www.daml.org/services/owl-s/1.2/Service.owl#";
$conf["ns"]["dtype"] = "http://www.linkedmodel.org/schema/dtype#";
$conf["ns"]["hcard"] = "http://purl.org/uF/hCard/terms/";
$conf["ns"]["mei"] = "http://www.music-encoding.org/ns/mei/";
$conf["ns"]["wm"] = "http://ns.inria.fr/webmarks#";
$conf["ns"]["shv"] = "http://ns.aksw.org/spatialHierarchy/";
$conf["ns"]["str"] = "http://nlp2rdf.lod2.eu/schema/string/";
$conf["ns"]["mte"] = "http://nl.ijs.si/ME/owl/";
$conf["ns"]["gc"] = "http://www.oegov.org/core/owl/gc#";
$conf["ns"]["nytimes"] = "http://data.nytimes.com/elements/";
$conf["ns"]["lgv"] = "http://linkedgeodata.org/ontology/";
$conf["ns"]["greg"] = "http://kasei.us/about/foaf.xrdf#";
$conf["ns"]["steel"] = "http://ontorule-project.eu/resources/steel-30#";
$conf["ns"]["atomowl"] = "http://bblfish.net/work/atom-owl/2006-06-06/#";
$conf["ns"]["iron"] = "http://purl.org/ontology/iron#";
$conf["ns"]["biocore"] = "http://bio2rdf.org/core:";
$conf["ns"]["lodac"] = "http://lod.ac/ns/lodac#";
$conf["ns"]["w3con"] = "http://www.w3.org/2000/10/swap/pim/contact#";
$conf["ns"]["rdo"] = "http://purl.org/rdo/ns#";
$conf["ns"]["overheid"] = "http://standaarden.overheid.nl/owms/";
$conf["ns"]["kw"] = "http://kwantu.net/kw/";
$conf["ns"]["xt"] = "http://purl.org/twc/vocab/cross-topix#";
$conf["ns"]["coo"] = "http://purl.org/coo/ns#";
$conf["ns"]["eui"] = "http://institutions.publicdata.eu/#";
$conf["ns"]["gesis"] = "http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#";
$conf["ns"]["eye"] = "http://jena.hpl.hp.com/Eyeball#";
$conf["ns"]["qudt"] = "http://qudt.org/1.1/schema/qudt#";
$conf["ns"]["ms"] = "http://purl.org/obo/owl/MS#";
$conf["ns"]["aapi"] = "http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#";
$conf["ns"]["dawgt"] = "http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#";
$conf["ns"]["tmpl"] = "http://purl.org/restdesc/http-template#";
$conf["ns"]["scsv"] = "http://purl.org/NET/schema-org-csv#";
$conf["ns"]["decl"] = "http://www.linkedmodel.org/1.0/schema/decl#";
$conf["ns"]["s3db"] = "http://www.s3db.org/core#";
$conf["ns"]["sso"] = "http://nlp2rdf.lod2.eu/schema/sso/";
$conf["ns"]["cvbase"] = "http://purl.org/captsolo/resume-rdf/0.2/base#";
$conf["ns"]["card"] = "http://www.ashutosh.com/test/";
$conf["ns"]["prissma"] = "http://ns.inria.fr/prissma/v1#";
$conf["ns"]["telix"] = "http://purl.org/telix#";
$conf["ns"]["mtecore"] = "http://purl.org/olia/mte/multext-east.owl#";
$conf["ns"]["aims"] = "http://aims.fao.org/aos/common/";
$conf["ns"]["re"] = "http://www.w3.org/2000/10/swap/reason#";
$conf["ns"]["diseasome"] = "http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/";
$conf["ns"]["artstor"] = "http://simile.mit.edu/2003/10/ontologies/artstor#";
$conf["ns"]["teach"] = "http://linkedscience.org/teach/ns#";
$conf["ns"]["ppo"] = "http://vocab.deri.ie/ppo#";
$conf["ns"]["rdb"] = "http://www.dbs.cs.uni-duesseldorf.de/RDF/relational#";
$conf["ns"]["owlse"] = "http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#";
$conf["ns"]["s4ac"] = "http://ns.inria.fr/s4ac/v1#";
$conf["ns"]["vcardx"] = "http://buzzword.org.uk/rdf/vcardx#";
$conf["ns"]["gazetteer"] = "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/";
$conf["ns"]["prog"] = "http://purl.org/prog/";
$conf["ns"]["biordf"] = "http://purl.org/net/biordfmicroarray/ns#";
$conf["ns"]["rpubl"] = "http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#";
$conf["ns"]["xch"] = "http://oanda2rdf.appspot.com/xch/";
$conf["ns"]["psh"] = "http://psh.techlib.cz/skos/";
$conf["ns"]["vdpp"] = "http://data.lirmm.fr/ontologies/vdpp#";
$conf["ns"]["ogp"] = "http://ogp.me/ns#";
$conf["ns"]["viskoo"] = "http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#";
$conf["ns"]["viskov"] = "http://trust.utep.edu/visko/ontology/visko-view-v3.owl#";
$conf["ns"]["rdfdata"] = "http://rdf.data-vocabulary.org/rdf.xml#";
$conf["ns"]["mygrid"] = "http://www.mygrid.org.uk/ontology#";
$conf["ns"]["visko"] = "http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#";
$conf["ns"]["geovocab"] = "http://geovocab.org/";
?>