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